2018-01-27 17:18:19 -05:00
|
|
|
const log = require('./log');
|
|
|
|
const protected_session = require('./protected_session');
|
|
|
|
const notes = require('./notes');
|
2018-02-24 22:44:45 -05:00
|
|
|
const sql = require('./sql');
|
2018-02-26 20:47:34 -05:00
|
|
|
const utils = require('./utils');
|
2018-01-27 17:18:19 -05:00
|
|
|
const attributes = require('./attributes');
|
|
|
|
const date_notes = require('./date_notes');
|
2018-02-24 21:23:04 -05:00
|
|
|
const config = require('./config');
|
2018-01-29 23:17:44 -05:00
|
|
|
const Repository = require('./repository');
|
2018-02-26 20:47:34 -05:00
|
|
|
const axios = require('axios');
|
2018-01-27 17:18:19 -05:00
|
|
|
|
2018-03-04 10:32:53 -05:00
|
|
|
function ScriptContext(dataKey, note, allNotes) {
|
2018-02-24 21:23:04 -05:00
|
|
|
dataKey = protected_session.getDataKey(dataKey);
|
|
|
|
const repository = new Repository(dataKey);
|
|
|
|
|
2018-02-26 20:47:34 -05:00
|
|
|
this.axios = axios;
|
|
|
|
|
2018-03-04 10:32:53 -05:00
|
|
|
this.__startNote = note;
|
|
|
|
this.__notes = {};
|
|
|
|
|
|
|
|
if (allNotes) {
|
|
|
|
allNotes.forEach(note => this.__notes[note.noteId] = note);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.__modules = {};
|
|
|
|
|
2018-02-26 20:47:34 -05:00
|
|
|
this.utils = {
|
|
|
|
unescapeHtml: utils.unescapeHtml,
|
|
|
|
isoDateTimeStr: utils.dateStr
|
|
|
|
};
|
|
|
|
|
2018-02-24 21:23:04 -05:00
|
|
|
this.getInstanceName = () => config.General ? config.General.instanceName : null;
|
2018-01-27 17:18:19 -05:00
|
|
|
|
|
|
|
this.getNoteById = async function(noteId) {
|
2018-02-24 21:23:04 -05:00
|
|
|
return repository.getNote(noteId);
|
2018-01-27 17:18:19 -05:00
|
|
|
};
|
|
|
|
|
2018-01-28 12:08:57 -05:00
|
|
|
this.getNotesWithAttribute = async function (attrName, attrValue) {
|
2018-02-24 21:23:04 -05:00
|
|
|
return await attributes.getNotesWithAttribute(dataKey, attrName, attrValue);
|
2018-01-28 12:08:57 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
this.getNoteWithAttribute = async function (attrName, attrValue) {
|
2018-01-30 21:25:47 -05:00
|
|
|
const notes = await this.getNotesWithAttribute(attrName, attrValue);
|
2018-01-28 12:08:57 -05:00
|
|
|
|
|
|
|
return notes.length > 0 ? notes[0] : null;
|
2018-01-27 17:18:19 -05:00
|
|
|
};
|
|
|
|
|
2018-02-26 00:07:43 -05:00
|
|
|
this.createNote = async function(parentNoteId, title, content = "", extraOptions = {}) {
|
|
|
|
extraOptions.dataKey = dataKey;
|
2018-01-27 17:18:19 -05:00
|
|
|
|
2018-02-26 20:47:34 -05:00
|
|
|
return await notes.createNote(parentNoteId, title, content, extraOptions);
|
2018-01-27 17:18:19 -05:00
|
|
|
};
|
|
|
|
|
2018-02-13 22:46:45 -05:00
|
|
|
this.createAttribute = attributes.createAttribute;
|
|
|
|
|
2018-02-24 21:23:04 -05:00
|
|
|
this.updateEntity = repository.updateEntity;
|
2018-01-27 17:18:19 -05:00
|
|
|
|
2018-02-24 14:42:52 -05:00
|
|
|
this.log = message => log.info(`Script: ${message}`);
|
2018-01-27 17:18:19 -05:00
|
|
|
|
2018-02-24 14:42:52 -05:00
|
|
|
this.getRootCalendarNoteId = date_notes.getRootCalendarNoteId;
|
2018-01-27 17:18:19 -05:00
|
|
|
this.getDateNoteId = date_notes.getDateNoteId;
|
2018-02-24 22:44:45 -05:00
|
|
|
|
|
|
|
this.transaction = sql.doInTransaction;
|
2018-01-27 17:18:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = ScriptContext;
|