2018-08-03 04:48:21 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const repository = require('./repository');
|
2018-08-03 17:11:57 +08:00
|
|
|
const sql = require('./sql');
|
|
|
|
const utils = require('./utils');
|
2018-08-03 04:48:21 +08:00
|
|
|
const Attribute = require('../entities/attribute');
|
|
|
|
|
|
|
|
const BUILTIN_ATTRIBUTES = [
|
2018-08-03 17:11:57 +08:00
|
|
|
// label names
|
|
|
|
{ type: 'label', name: 'disableVersioning' },
|
|
|
|
{ type: 'label', name: 'calendarRoot' },
|
|
|
|
{ type: 'label', name: 'archived' },
|
|
|
|
{ type: 'label', name: 'excludeFromExport' },
|
|
|
|
{ type: 'label', name: 'run' },
|
|
|
|
{ type: 'label', name: 'manualTransactionHandling' },
|
|
|
|
{ type: 'label', name: 'disableInclusion' },
|
|
|
|
{ type: 'label', name: 'appCss' },
|
|
|
|
{ type: 'label', name: 'hideChildrenOverview' },
|
|
|
|
|
|
|
|
// relation names
|
|
|
|
{ type: 'relation', name: 'runOnNoteView' },
|
2018-08-16 04:06:49 +08:00
|
|
|
{ type: 'relation', name: 'runOnNoteCreation' },
|
2018-08-10 20:31:57 +08:00
|
|
|
{ type: 'relation', name: 'runOnNoteTitleChange' },
|
2018-08-16 04:06:49 +08:00
|
|
|
{ type: 'relation', name: 'runOnNoteChange' },
|
|
|
|
{ type: 'relation', name: 'runOnChildNoteCreation' },
|
|
|
|
{ type: 'relation', name: 'runOnAttributeCreation' },
|
2018-08-13 23:05:16 +08:00
|
|
|
{ type: 'relation', name: 'runOnAttributeChange' },
|
2018-08-21 18:52:11 +08:00
|
|
|
{ type: 'relation', name: 'template' }
|
2018-08-03 04:48:21 +08:00
|
|
|
];
|
|
|
|
|
2018-08-07 18:48:11 +08:00
|
|
|
async function getNotesWithLabel(name, value) {
|
2018-08-23 16:10:04 +08:00
|
|
|
let valueCondition = "";
|
|
|
|
let params = [name];
|
2018-08-03 04:48:21 +08:00
|
|
|
|
|
|
|
if (value !== undefined) {
|
2018-08-23 16:10:04 +08:00
|
|
|
valueCondition = " AND attributes.value = ?";
|
|
|
|
params.push(value);
|
2018-08-03 04:48:21 +08:00
|
|
|
}
|
|
|
|
|
2018-08-23 16:10:04 +08:00
|
|
|
return await repository.getEntities(`SELECT notes.* FROM notes JOIN attributes USING(noteId)
|
|
|
|
WHERE notes.isDeleted = 0 AND attributes.isDeleted = 0 AND attributes.name = ? ${valueCondition} ORDER BY position`, params);
|
2018-08-03 04:48:21 +08:00
|
|
|
}
|
|
|
|
|
2018-08-07 18:48:11 +08:00
|
|
|
async function getNoteWithLabel(name, value) {
|
|
|
|
const notes = await getNotesWithLabel(name, value);
|
2018-08-03 04:48:21 +08:00
|
|
|
|
|
|
|
return notes.length > 0 ? notes[0] : null;
|
|
|
|
}
|
|
|
|
|
2018-08-07 19:33:10 +08:00
|
|
|
async function createLabel(noteId, name, value = "") {
|
|
|
|
return await createAttribute({
|
2018-08-03 04:48:21 +08:00
|
|
|
noteId: noteId,
|
2018-08-07 19:33:10 +08:00
|
|
|
type: 'label',
|
2018-08-03 04:48:21 +08:00
|
|
|
name: name,
|
|
|
|
value: value
|
2018-08-07 19:33:10 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function createAttribute(attribute) {
|
|
|
|
return await new Attribute(attribute).save();
|
2018-08-03 04:48:21 +08:00
|
|
|
}
|
|
|
|
|
2018-08-03 17:11:57 +08:00
|
|
|
async function getAttributeNames(type, nameLike) {
|
2018-08-16 04:06:49 +08:00
|
|
|
nameLike = nameLike.toLowerCase();
|
2018-08-16 00:22:02 +08:00
|
|
|
|
2018-08-16 04:06:49 +08:00
|
|
|
const names = await sql.getColumn(
|
|
|
|
`SELECT DISTINCT name
|
2018-08-16 00:22:02 +08:00
|
|
|
FROM attributes
|
|
|
|
WHERE isDeleted = 0
|
|
|
|
AND type = ?
|
|
|
|
AND name LIKE '%${utils.sanitizeSql(nameLike)}%'`, [type]);
|
2018-08-16 04:06:49 +08:00
|
|
|
|
|
|
|
for (const attr of BUILTIN_ATTRIBUTES) {
|
|
|
|
if (attr.type === type && attr.name.toLowerCase().includes(nameLike) && !names.includes(attr.name)) {
|
|
|
|
names.push(attr.name);
|
|
|
|
}
|
2018-08-03 17:11:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
names.sort();
|
|
|
|
|
|
|
|
return names;
|
|
|
|
}
|
|
|
|
|
2018-08-03 04:48:21 +08:00
|
|
|
module.exports = {
|
2018-08-07 18:48:11 +08:00
|
|
|
getNotesWithLabel,
|
|
|
|
getNoteWithLabel,
|
2018-08-07 19:33:10 +08:00
|
|
|
createLabel,
|
2018-08-03 04:48:21 +08:00
|
|
|
createAttribute,
|
2018-08-03 17:11:57 +08:00
|
|
|
getAttributeNames,
|
2018-08-03 04:48:21 +08:00
|
|
|
BUILTIN_ATTRIBUTES
|
|
|
|
};
|