1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/ReactNativeClient/lib/base-model.js

315 lines
7.8 KiB
JavaScript
Raw Normal View History

2017-06-24 20:06:28 +02:00
import { Log } from 'lib/log.js';
import { Database } from 'lib/database.js';
import { uuid } from 'lib/uuid.js';
import { time } from 'lib/time-utils.js';
2017-05-10 21:51:43 +02:00
2017-05-08 00:20:34 +02:00
class BaseModel {
2017-07-03 22:38:26 +02:00
static modelType() {
throw new Error('Must be overriden');
}
static tableName() {
throw new Error('Must be overriden');
}
2017-06-17 20:40:08 +02:00
static addModelMd(model) {
if (!model) return model;
if (Array.isArray(model)) {
let output = [];
for (let i = 0; i < model.length; i++) {
output.push(this.addModelMd(model[i]));
}
return output;
} else {
model = Object.assign({}, model);
2017-07-03 21:50:45 +02:00
model.type_ = this.modelType();
2017-06-17 20:40:08 +02:00
return model;
}
}
2017-06-25 12:41:03 +02:00
static logger() {
return this.db().logger();
}
2017-05-12 21:54:06 +02:00
static useUuid() {
return false;
}
2017-05-15 21:10:00 +02:00
static byId(items, id) {
for (let i = 0; i < items.length; i++) {
if (items[i].id == id) return items[i];
}
return null;
}
2017-05-19 21:32:49 +02:00
static hasField(name) {
let fields = this.fieldNames();
return fields.indexOf(name) >= 0;
}
static fieldNames(withPrefix = false) {
let output = this.db().tableFieldNames(this.tableName());
if (!withPrefix) return output;
let temp = [];
for (let i = 0; i < output.length; i++) {
temp.push(this.tableName() + '.' + output[i]);
}
return temp;
2017-05-18 21:58:01 +02:00
}
2017-06-15 20:18:48 +02:00
static fieldType(name) {
let fields = this.fields();
for (let i = 0; i < fields.length; i++) {
if (fields[i].name == name) return fields[i].type;
}
throw new Error('Unknown field: ' + name);
}
2017-05-20 00:16:50 +02:00
static fields() {
return this.db().tableFields(this.tableName());
}
static new() {
let fields = this.fields();
let output = {};
for (let i = 0; i < fields.length; i++) {
let f = fields[i];
output[f.name] = f.default;
}
return output;
}
2017-05-18 22:31:40 +02:00
static modOptions(options) {
if (!options) {
options = {};
} else {
options = Object.assign({}, options);
}
if (!('isNew' in options)) options.isNew = 'auto';
2017-06-18 01:49:52 +02:00
if (!('autoTimestamp' in options)) options.autoTimestamp = true;
2017-05-18 22:31:40 +02:00
return options;
}
2017-06-24 19:40:03 +02:00
static count() {
return this.db().selectOne('SELECT count(*) as total FROM `' + this.tableName() + '`').then((r) => {
return r ? r['total'] : 0;
});
}
2017-05-19 21:12:09 +02:00
static load(id) {
2017-06-11 23:11:14 +02:00
return this.loadByField('id', id);
}
static loadByPartialId(partialId) {
return this.modelSelectOne('SELECT * FROM `' + this.tableName() + '` WHERE `id` LIKE ?', [partialId + '%']);
}
2017-06-25 11:00:54 +02:00
static applySqlOptions(options, sql, params = null) {
if (!options) options = {};
if (options.orderBy) {
sql += ' ORDER BY ' + options.orderBy;
if (options.caseInsensitive === true) sql += ' COLLATE NOCASE';
if (options.orderByDir) sql += ' ' + options.orderByDir;
}
if (options.limit) sql += ' LIMIT ' + options.limit;
return { sql: sql, params: params };
}
2017-07-03 20:58:01 +02:00
static async all(options = null) {
2017-06-25 11:00:54 +02:00
let q = this.applySqlOptions(options, 'SELECT * FROM `' + this.tableName() + '`');
2017-06-25 17:17:40 +02:00
return this.modelSelectAll(q.sql);
2017-06-25 11:00:54 +02:00
}
2017-07-03 20:58:01 +02:00
static async search(options = null) {
if (!options) options = {};
if (!options.fields) options.fields = '*';
let conditions = options.conditions ? options.conditions.slice(0) : [];
let params = options.conditionsParams ? options.conditionsParams.slice(0) : [];
if (options.titlePattern) {
let pattern = options.titlePattern.replace(/\*/g, '%');
conditions.push('title LIKE ?');
params.push(pattern);
}
let sql = 'SELECT ' + this.db().escapeFields(options.fields) + ' FROM `' + this.tableName() + '`';
if (conditions.length) sql += ' WHERE ' + conditions.join(' AND ');
let query = this.applySqlOptions(options, sql, params);
return this.modelSelectAll(query.sql, query.params);
}
2017-06-17 20:12:09 +02:00
static modelSelectOne(sql, params = null) {
if (params === null) params = [];
2017-06-17 20:40:08 +02:00
return this.db().selectOne(sql, params).then((model) => {
2017-06-24 19:40:03 +02:00
return this.filter(this.addModelMd(model));
2017-06-17 20:40:08 +02:00
});
2017-06-17 20:12:09 +02:00
}
static modelSelectAll(sql, params = null) {
if (params === null) params = [];
2017-06-17 20:40:08 +02:00
return this.db().selectAll(sql, params).then((models) => {
2017-06-24 19:40:03 +02:00
return this.filterArray(this.addModelMd(models));
2017-06-17 20:40:08 +02:00
});
2017-06-17 20:12:09 +02:00
}
2017-06-25 13:39:42 +02:00
static loadByField(fieldName, fieldValue) {
2017-06-24 19:40:03 +02:00
return this.modelSelectOne('SELECT * FROM `' + this.tableName() + '` WHERE `' + fieldName + '` = ?', [fieldValue]);
2017-05-19 21:12:09 +02:00
}
2017-07-02 17:46:03 +02:00
static loadByTitle(fieldValue) {
return this.modelSelectOne('SELECT * FROM `' + this.tableName() + '` WHERE `title` = ?', [fieldValue]);
}
static diffObjects(oldModel, newModel) {
let output = {};
2017-06-21 00:16:41 +02:00
let type = null;
for (let n in newModel) {
2017-06-21 00:16:41 +02:00
if (n == 'type_') {
type = n;
continue;
}
if (!newModel.hasOwnProperty(n)) continue;
if (!(n in oldModel) || newModel[n] !== oldModel[n]) {
output[n] = newModel[n];
}
}
2017-06-21 00:16:41 +02:00
if (type !== null) output.type_ = type;
return output;
}
2017-06-18 01:49:52 +02:00
static saveQuery(o, options) {
2017-05-20 00:16:50 +02:00
let temp = {}
let fieldNames = this.fieldNames();
for (let i = 0; i < fieldNames.length; i++) {
let n = fieldNames[i];
if (n in o) temp[n] = o[n];
}
o = temp;
2017-06-18 01:49:52 +02:00
let query = {};
2017-06-25 01:19:11 +02:00
let modelId = o.id;
2017-05-12 21:54:06 +02:00
2017-06-18 01:49:52 +02:00
if (options.autoTimestamp && this.hasField('updated_time')) {
2017-06-19 00:06:10 +02:00
o.updated_time = time.unixMs();
2017-05-19 21:32:49 +02:00
}
2017-06-18 01:49:52 +02:00
if (options.isNew) {
2017-05-19 21:12:09 +02:00
if (this.useUuid() && !o.id) {
2017-06-25 01:19:11 +02:00
modelId = uuid.create();
o.id = modelId;
2017-05-18 21:58:01 +02:00
}
2017-05-19 21:32:49 +02:00
if (!o.created_time && this.hasField('created_time')) {
2017-06-19 00:06:10 +02:00
o.created_time = time.unixMs();
2017-05-19 21:32:49 +02:00
}
2017-05-12 21:54:06 +02:00
query = Database.insertQuery(this.tableName(), o);
2017-05-11 22:14:01 +02:00
} else {
2017-05-12 21:54:06 +02:00
let where = { id: o.id };
let temp = Object.assign({}, o);
delete temp.id;
query = Database.updateQuery(this.tableName(), temp, where);
2017-05-11 22:14:01 +02:00
}
2017-05-12 21:54:06 +02:00
2017-06-25 01:19:11 +02:00
query.id = modelId;
2017-07-16 18:06:05 +02:00
query.modObject = o;
2017-05-18 21:58:01 +02:00
return query;
}
2017-05-18 22:31:40 +02:00
static save(o, options = null) {
options = this.modOptions(options);
2017-06-29 22:52:52 +02:00
options.isNew = this.isNew(o, options);
2017-05-18 21:58:01 +02:00
2017-06-24 19:40:03 +02:00
o = this.filter(o);
2017-06-11 23:11:14 +02:00
let queries = [];
2017-06-18 01:49:52 +02:00
let saveQuery = this.saveQuery(o, options);
2017-06-25 01:19:11 +02:00
let modelId = saveQuery.id;
2017-05-18 21:58:01 +02:00
2017-06-11 23:11:14 +02:00
queries.push(saveQuery);
if (options.nextQueries && options.nextQueries.length) {
queries = queries.concat(options.nextQueries);
}
2017-06-11 23:11:14 +02:00
return this.db().transactionExecBatch(queries).then(() => {
2017-05-18 21:58:01 +02:00
o = Object.assign({}, o);
2017-06-25 01:19:11 +02:00
o.id = modelId;
2017-07-16 18:06:05 +02:00
if ('updated_time' in saveQuery.modObject) o.updated_time = saveQuery.modObject.updated_time;
if ('created_time' in saveQuery.modObject) o.created_time = saveQuery.modObject.created_time;
2017-06-17 20:40:08 +02:00
o = this.addModelMd(o);
2017-06-24 19:40:03 +02:00
return this.filter(o);
2017-05-21 21:55:01 +02:00
}).catch((error) => {
Log.error('Cannot save model', error);
2017-05-18 21:58:01 +02:00
});
2017-05-10 21:51:43 +02:00
}
2017-06-29 22:52:52 +02:00
static isNew(object, options) {
if (options && ('isNew' in options)) {
// options.isNew can be "auto" too
if (options.isNew === true) return true;
if (options.isNew === false) return false;
}
return !object.id;
}
2017-06-24 19:40:03 +02:00
static filterArray(models) {
let output = [];
for (let i = 0; i < models.length; i++) {
output.push(this.filter(models[i]));
}
return output;
}
static filter(model) {
2017-06-27 01:20:01 +02:00
if (!model) return model;
let output = Object.assign({}, model);
for (let n in output) {
if (!output.hasOwnProperty(n)) continue;
// The SQLite database doesn't have booleans so cast everything to int
if (output[n] === true) output[n] = 1;
if (output[n] === false) output[n] = 0;
}
return output;
2017-06-24 19:40:03 +02:00
}
2017-05-18 22:31:40 +02:00
static delete(id, options = null) {
options = this.modOptions(options);
2017-06-25 09:52:25 +02:00
if (!id) throw new Error('Cannot delete object without an ID');
2017-07-03 21:50:45 +02:00
return this.db().exec('DELETE FROM ' + this.tableName() + ' WHERE id = ?', [id]);
2017-05-16 22:25:19 +02:00
}
2017-07-11 20:17:23 +02:00
static batchDelete(ids, options = null) {
options = this.modOptions(options);
if (!ids.length) throw new Error('Cannot delete object without an ID');
return this.db().exec('DELETE FROM ' + this.tableName() + ' WHERE id IN ("' + ids.join('","') + '")');
}
2017-05-10 21:51:43 +02:00
static db() {
2017-05-20 00:16:50 +02:00
if (!this.db_) throw new Error('Accessing database before it has been initialised');
return this.db_;
2017-05-10 21:51:43 +02:00
}
2017-05-08 00:20:34 +02:00
}
2017-07-03 21:50:45 +02:00
BaseModel.TYPE_NOTE = 1;
BaseModel.TYPE_FOLDER = 2;
BaseModel.TYPE_SETTING = 3;
BaseModel.TYPE_RESOURCE = 4;
BaseModel.TYPE_TAG = 5;
2017-07-03 22:38:26 +02:00
BaseModel.TYPE_NOTE_TAG = 6;
2017-06-06 22:01:43 +02:00
BaseModel.db_ = null;
2017-06-11 23:11:14 +02:00
BaseModel.dispatch = function(o) {};
2017-06-06 22:01:43 +02:00
2017-05-08 00:20:34 +02:00
export { BaseModel };