2018-09-27 10:14:05 +02:00
|
|
|
const { ltrimSlashes } = require('lib/path-utils.js');
|
2019-06-22 13:31:04 +02:00
|
|
|
const { Database } = require('lib/database.js');
|
2018-09-27 10:14:05 +02:00
|
|
|
const Folder = require('lib/models/Folder');
|
|
|
|
const Note = require('lib/models/Note');
|
|
|
|
const Tag = require('lib/models/Tag');
|
2018-09-28 20:24:57 +02:00
|
|
|
const BaseItem = require('lib/models/BaseItem');
|
2019-07-30 09:35:42 +02:00
|
|
|
const Resource = require('lib/models/Resource');
|
2018-09-28 20:24:57 +02:00
|
|
|
const BaseModel = require('lib/BaseModel');
|
2018-09-27 10:14:05 +02:00
|
|
|
const Setting = require('lib/models/Setting');
|
2019-07-14 17:00:02 +02:00
|
|
|
const htmlUtils = require('lib/htmlUtils');
|
|
|
|
const markupLanguageUtils = require('lib/markupLanguageUtils');
|
2018-09-27 10:14:05 +02:00
|
|
|
const mimeUtils = require('lib/mime-utils.js').mime;
|
|
|
|
const { Logger } = require('lib/logger.js');
|
|
|
|
const md5 = require('md5');
|
|
|
|
const { shim } = require('lib/shim');
|
|
|
|
const HtmlToMd = require('lib/HtmlToMd');
|
2019-05-10 02:06:06 +02:00
|
|
|
const urlUtils = require('lib/urlUtils.js');
|
2019-07-16 22:47:44 +02:00
|
|
|
const ArrayUtils = require('lib/ArrayUtils.js');
|
2019-06-12 10:45:31 +02:00
|
|
|
const { netUtils } = require('lib/net-utils');
|
2018-09-27 10:14:05 +02:00
|
|
|
const { fileExtension, safeFileExtension, safeFilename, filename } = require('lib/path-utils');
|
2018-09-30 11:15:46 +02:00
|
|
|
const ApiResponse = require('lib/services/rest/ApiResponse');
|
2019-02-24 14:24:55 +02:00
|
|
|
const SearchEngineUtils = require('lib/services/SearchEngineUtils');
|
2019-04-20 20:29:23 +02:00
|
|
|
const { FoldersScreenUtils } = require('lib/folders-screen-utils.js');
|
2019-05-10 02:06:06 +02:00
|
|
|
const uri2path = require('file-uri-to-path');
|
2018-09-27 10:14:05 +02:00
|
|
|
|
|
|
|
class ApiError extends Error {
|
|
|
|
constructor(message, httpCode = 400) {
|
|
|
|
super(message);
|
|
|
|
this.httpCode_ = httpCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
get httpCode() {
|
|
|
|
return this.httpCode_;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-29 15:43:53 +02:00
|
|
|
class ErrorMethodNotAllowed extends ApiError {
|
|
|
|
constructor(message = 'Method Not Allowed') {
|
|
|
|
super(message, 405);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class ErrorNotFound extends ApiError {
|
|
|
|
constructor(message = 'Not Found') {
|
|
|
|
super(message, 404);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class ErrorForbidden extends ApiError {
|
|
|
|
constructor(message = 'Forbidden') {
|
|
|
|
super(message, 403);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class ErrorBadRequest extends ApiError {
|
|
|
|
constructor(message = 'Bad Request') {
|
|
|
|
super(message, 400);
|
|
|
|
}
|
|
|
|
}
|
2018-09-28 20:24:57 +02:00
|
|
|
|
2018-09-27 10:14:05 +02:00
|
|
|
class Api {
|
2018-09-27 20:35:10 +02:00
|
|
|
constructor(token = null) {
|
|
|
|
this.token_ = token;
|
2019-05-11 12:18:09 +02:00
|
|
|
this.knownNounces_ = {};
|
2018-09-27 10:14:05 +02:00
|
|
|
this.logger_ = new Logger();
|
|
|
|
}
|
|
|
|
|
2018-09-27 20:35:10 +02:00
|
|
|
get token() {
|
2018-09-28 20:24:57 +02:00
|
|
|
return typeof this.token_ === 'function' ? this.token_() : this.token_;
|
2018-09-27 20:35:10 +02:00
|
|
|
}
|
|
|
|
|
2018-09-28 20:24:57 +02:00
|
|
|
parsePath(path) {
|
2018-09-27 10:14:05 +02:00
|
|
|
path = ltrimSlashes(path);
|
2018-09-28 20:24:57 +02:00
|
|
|
if (!path) return { callName: '', params: [] };
|
2018-09-27 20:35:10 +02:00
|
|
|
|
|
|
|
const pathParts = path.split('/');
|
2019-07-29 15:43:53 +02:00
|
|
|
const callSuffix = pathParts.splice(0, 1)[0];
|
2018-09-28 20:24:57 +02:00
|
|
|
let callName = 'action_' + callSuffix;
|
|
|
|
return {
|
|
|
|
callName: callName,
|
|
|
|
params: pathParts,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
async route(method, path, query = null, body = null, files = null) {
|
|
|
|
if (!files) files = [];
|
2019-05-11 12:18:09 +02:00
|
|
|
if (!query) query = {};
|
2018-09-28 20:24:57 +02:00
|
|
|
|
|
|
|
const parsedPath = this.parsePath(path);
|
|
|
|
if (!parsedPath.callName) throw new ErrorNotFound(); // Nothing at the root yet
|
2019-05-11 12:18:09 +02:00
|
|
|
|
|
|
|
if (query && query.nounce) {
|
|
|
|
const requestMd5 = md5(JSON.stringify([method, path, body, query, files.length]));
|
|
|
|
if (this.knownNounces_[query.nounce] === requestMd5) {
|
|
|
|
throw new ErrorBadRequest('Duplicate Nounce');
|
|
|
|
}
|
|
|
|
this.knownNounces_[query.nounce] = requestMd5;
|
|
|
|
}
|
2019-07-29 15:43:53 +02:00
|
|
|
|
2018-09-28 20:24:57 +02:00
|
|
|
const request = {
|
|
|
|
method: method,
|
|
|
|
path: ltrimSlashes(path),
|
|
|
|
query: query ? query : {},
|
|
|
|
body: body,
|
|
|
|
bodyJson_: null,
|
|
|
|
bodyJson: function(disallowedProperties = null) {
|
|
|
|
if (!this.bodyJson_) this.bodyJson_ = JSON.parse(this.body);
|
|
|
|
|
|
|
|
if (disallowedProperties) {
|
|
|
|
const filteredBody = Object.assign({}, this.bodyJson_);
|
|
|
|
for (let i = 0; i < disallowedProperties.length; i++) {
|
|
|
|
const n = disallowedProperties[i];
|
|
|
|
delete filteredBody[n];
|
|
|
|
}
|
|
|
|
return filteredBody;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.bodyJson_;
|
|
|
|
},
|
|
|
|
files: files,
|
2019-07-29 15:43:53 +02:00
|
|
|
};
|
2018-09-28 20:24:57 +02:00
|
|
|
|
|
|
|
let id = null;
|
|
|
|
let link = null;
|
|
|
|
let params = parsedPath.params;
|
|
|
|
|
|
|
|
if (params.length >= 1) {
|
|
|
|
id = params[0];
|
|
|
|
params.splice(0, 1);
|
|
|
|
if (params.length >= 1) {
|
|
|
|
link = params[0];
|
|
|
|
params.splice(0, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
request.params = params;
|
2018-09-27 10:14:05 +02:00
|
|
|
|
2018-09-30 11:15:46 +02:00
|
|
|
if (!this[parsedPath.callName]) throw new ErrorNotFound();
|
|
|
|
|
2018-09-27 10:14:05 +02:00
|
|
|
try {
|
2019-02-07 00:36:39 +02:00
|
|
|
return await this[parsedPath.callName](request, id, link);
|
2018-09-27 10:14:05 +02:00
|
|
|
} catch (error) {
|
|
|
|
if (!error.httpCode) error.httpCode = 500;
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setLogger(l) {
|
|
|
|
this.logger_ = l;
|
|
|
|
}
|
|
|
|
|
|
|
|
logger() {
|
|
|
|
return this.logger_;
|
|
|
|
}
|
|
|
|
|
2019-02-07 00:36:39 +02:00
|
|
|
readonlyProperties(requestMethod) {
|
|
|
|
const output = ['created_time', 'updated_time', 'encryption_blob_encrypted', 'encryption_applied', 'encryption_cipher_text'];
|
|
|
|
if (requestMethod !== 'POST') output.splice(0, 0, 'id');
|
|
|
|
return output;
|
2018-09-28 20:24:57 +02:00
|
|
|
}
|
|
|
|
|
2018-09-27 10:14:05 +02:00
|
|
|
fields_(request, defaultFields) {
|
|
|
|
const query = request.query;
|
|
|
|
if (!query || !query.fields) return defaultFields;
|
2019-07-29 15:43:53 +02:00
|
|
|
const fields = query.fields
|
|
|
|
.split(',')
|
|
|
|
.map(f => f.trim())
|
|
|
|
.filter(f => !!f);
|
2018-09-27 10:14:05 +02:00
|
|
|
return fields.length ? fields : defaultFields;
|
|
|
|
}
|
|
|
|
|
2018-09-27 20:35:10 +02:00
|
|
|
checkToken_(request) {
|
2018-09-28 20:24:57 +02:00
|
|
|
// For now, whitelist some calls to allow the web clipper to work
|
|
|
|
// without an extra auth step
|
2019-07-29 15:43:53 +02:00
|
|
|
const whiteList = [['GET', 'ping'], ['GET', 'tags'], ['GET', 'folders'], ['POST', 'notes']];
|
2018-09-28 20:24:57 +02:00
|
|
|
|
|
|
|
for (let i = 0; i < whiteList.length; i++) {
|
|
|
|
if (whiteList[i][0] === request.method && whiteList[i][1] === request.path) return;
|
|
|
|
}
|
|
|
|
|
2018-09-27 20:35:10 +02:00
|
|
|
if (!this.token) return;
|
|
|
|
if (!request.query || !request.query.token) throw new ErrorForbidden('Missing "token" parameter');
|
|
|
|
if (request.query.token !== this.token) throw new ErrorForbidden('Invalid "token" parameter');
|
|
|
|
}
|
|
|
|
|
2018-09-28 20:24:57 +02:00
|
|
|
async defaultAction_(modelType, request, id = null, link = null) {
|
|
|
|
this.checkToken_(request);
|
|
|
|
|
|
|
|
if (link) throw new ErrorNotFound(); // Default action doesn't support links at all for now
|
|
|
|
|
|
|
|
const ModelClass = BaseItem.getClassByItemType(modelType);
|
|
|
|
|
|
|
|
const getOneModel = async () => {
|
|
|
|
const model = await ModelClass.load(id);
|
2019-07-29 15:43:53 +02:00
|
|
|
if (!model) throw new ErrorNotFound();
|
2018-09-28 20:24:57 +02:00
|
|
|
return model;
|
2019-07-29 15:43:53 +02:00
|
|
|
};
|
2018-09-28 20:24:57 +02:00
|
|
|
|
2018-09-27 10:14:05 +02:00
|
|
|
if (request.method === 'GET') {
|
2018-09-28 20:24:57 +02:00
|
|
|
if (id) {
|
|
|
|
return getOneModel();
|
|
|
|
} else {
|
|
|
|
const options = {};
|
|
|
|
const fields = this.fields_(request, []);
|
|
|
|
if (fields.length) options.fields = fields;
|
|
|
|
return await ModelClass.all(options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request.method === 'PUT' && id) {
|
|
|
|
const model = await getOneModel();
|
2019-02-07 00:36:39 +02:00
|
|
|
let newModel = Object.assign({}, model, request.bodyJson(this.readonlyProperties('PUT')));
|
2018-09-28 20:24:57 +02:00
|
|
|
newModel = await ModelClass.save(newModel, { userSideValidation: true });
|
|
|
|
return newModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request.method === 'DELETE' && id) {
|
|
|
|
const model = await getOneModel();
|
|
|
|
await ModelClass.delete(model.id);
|
|
|
|
return;
|
2018-09-27 10:14:05 +02:00
|
|
|
}
|
2018-09-28 20:24:57 +02:00
|
|
|
|
|
|
|
if (request.method === 'POST') {
|
2019-02-07 00:36:39 +02:00
|
|
|
const props = this.readonlyProperties('POST');
|
|
|
|
const idIdx = props.indexOf('id');
|
|
|
|
if (idIdx >= 0) props.splice(idIdx, 1);
|
|
|
|
const model = request.bodyJson(props);
|
|
|
|
const result = await ModelClass.save(model, this.defaultSaveOptions_(model, 'POST'));
|
2018-09-28 20:24:57 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-09-27 20:35:10 +02:00
|
|
|
throw new ErrorMethodNotAllowed();
|
2018-09-27 10:14:05 +02:00
|
|
|
}
|
|
|
|
|
2018-09-28 20:24:57 +02:00
|
|
|
async action_ping(request, id = null, link = null) {
|
2018-09-27 10:14:05 +02:00
|
|
|
if (request.method === 'GET') {
|
2018-09-28 20:24:57 +02:00
|
|
|
return 'JoplinClipperServer';
|
2018-09-27 10:14:05 +02:00
|
|
|
}
|
|
|
|
|
2018-09-27 20:35:10 +02:00
|
|
|
throw new ErrorMethodNotAllowed();
|
2018-09-27 10:14:05 +02:00
|
|
|
}
|
|
|
|
|
2019-02-24 14:24:55 +02:00
|
|
|
async action_search(request) {
|
2019-02-24 14:37:37 +02:00
|
|
|
this.checkToken_(request);
|
|
|
|
|
2019-02-24 14:24:55 +02:00
|
|
|
if (request.method !== 'GET') throw new ErrorMethodNotAllowed();
|
|
|
|
|
|
|
|
const query = request.query.query;
|
|
|
|
if (!query) throw new ErrorBadRequest('Missing "query" parameter');
|
|
|
|
|
|
|
|
return await SearchEngineUtils.notesForQuery(query, this.notePreviewsOptions_(request));
|
|
|
|
}
|
|
|
|
|
2018-09-28 20:24:57 +02:00
|
|
|
async action_folders(request, id = null, link = null) {
|
|
|
|
if (request.method === 'GET' && !id) {
|
2019-04-20 20:29:23 +02:00
|
|
|
const folders = await FoldersScreenUtils.allForDisplay({ fields: this.fields_(request, ['id', 'parent_id', 'title']) });
|
|
|
|
const output = await Folder.allAsTree(folders);
|
|
|
|
return output;
|
2018-09-27 10:14:05 +02:00
|
|
|
}
|
|
|
|
|
2018-09-29 13:54:44 +02:00
|
|
|
if (request.method === 'GET' && id) {
|
|
|
|
if (link && link === 'notes') {
|
|
|
|
const options = this.notePreviewsOptions_(request);
|
|
|
|
return Note.previews(id, options);
|
|
|
|
} else if (link) {
|
|
|
|
throw new ErrorNotFound();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-28 20:24:57 +02:00
|
|
|
return this.defaultAction_(BaseModel.TYPE_FOLDER, request, id, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
async action_tags(request, id = null, link = null) {
|
|
|
|
if (link === 'notes') {
|
|
|
|
const tag = await Tag.load(id);
|
|
|
|
if (!tag) throw new ErrorNotFound();
|
|
|
|
|
|
|
|
if (request.method === 'POST') {
|
|
|
|
const note = request.bodyJson();
|
|
|
|
if (!note || !note.id) throw new ErrorBadRequest('Missing note ID');
|
|
|
|
return await Tag.addNote(tag.id, note.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request.method === 'DELETE') {
|
|
|
|
const noteId = request.params.length ? request.params[0] : null;
|
|
|
|
if (!noteId) throw new ErrorBadRequest('Missing note ID');
|
|
|
|
await Tag.removeNote(tag.id, noteId);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request.method === 'GET') {
|
2018-09-29 13:54:44 +02:00
|
|
|
// Ideally we should get all this in one SQL query but for now that will do
|
|
|
|
const noteIds = await Tag.noteIds(tag.id);
|
|
|
|
const output = [];
|
|
|
|
for (let i = 0; i < noteIds.length; i++) {
|
|
|
|
const n = await Note.preview(noteIds[i], this.notePreviewsOptions_(request));
|
|
|
|
if (!n) continue;
|
|
|
|
output.push(n);
|
|
|
|
}
|
|
|
|
return output;
|
2018-09-28 20:24:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.defaultAction_(BaseModel.TYPE_TAG, request, id, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
async action_master_keys(request, id = null, link = null) {
|
|
|
|
return this.defaultAction_(BaseModel.TYPE_MASTER_KEY, request, id, link);
|
2018-09-27 10:14:05 +02:00
|
|
|
}
|
|
|
|
|
2018-09-28 20:24:57 +02:00
|
|
|
async action_resources(request, id = null, link = null) {
|
|
|
|
// fieldName: "data"
|
|
|
|
// headers: Object
|
|
|
|
// originalFilename: "test.jpg"
|
|
|
|
// path: "C:\Users\Laurent\AppData\Local\Temp\BW77wkpP23iIGUstd0kDuXXC.jpg"
|
|
|
|
// size: 164394
|
|
|
|
|
2018-09-30 11:15:46 +02:00
|
|
|
if (request.method === 'GET') {
|
2018-10-04 09:17:53 +02:00
|
|
|
if (link === 'file') {
|
|
|
|
const resource = await Resource.load(id);
|
|
|
|
if (!resource) throw new ErrorNotFound();
|
|
|
|
|
|
|
|
const filePath = Resource.fullPath(resource);
|
|
|
|
const buffer = await shim.fsDriver().readFile(filePath, 'Buffer');
|
2019-07-29 15:43:53 +02:00
|
|
|
|
2018-10-04 09:17:53 +02:00
|
|
|
const response = new ApiResponse();
|
|
|
|
response.type = 'attachment';
|
|
|
|
response.body = buffer;
|
|
|
|
response.contentType = resource.mime;
|
|
|
|
response.attachmentFilename = Resource.friendlyFilename(resource);
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (link) throw new ErrorNotFound();
|
2018-09-30 11:15:46 +02:00
|
|
|
}
|
|
|
|
|
2018-09-28 20:24:57 +02:00
|
|
|
if (request.method === 'POST') {
|
|
|
|
if (!request.files.length) throw new ErrorBadRequest('Resource cannot be created without a file');
|
|
|
|
const filePath = request.files[0].path;
|
2019-02-07 00:36:39 +02:00
|
|
|
const defaultProps = request.bodyJson(this.readonlyProperties('POST'));
|
|
|
|
return shim.createResourceFromPath(filePath, defaultProps);
|
2018-09-28 20:24:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return this.defaultAction_(BaseModel.TYPE_RESOURCE, request, id, link);
|
|
|
|
}
|
|
|
|
|
2018-09-29 13:54:44 +02:00
|
|
|
notePreviewsOptions_(request) {
|
|
|
|
const fields = this.fields_(request, []); // previews() already returns default fields
|
|
|
|
const options = {};
|
|
|
|
if (fields.length) options.fields = fields;
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
2019-02-07 00:36:39 +02:00
|
|
|
defaultSaveOptions_(model, requestMethod) {
|
|
|
|
const options = { userSideValidation: true };
|
|
|
|
if (requestMethod === 'POST' && model.id) options.isNew = true;
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
2018-09-28 20:24:57 +02:00
|
|
|
async action_notes(request, id = null, link = null) {
|
2018-09-29 13:54:44 +02:00
|
|
|
this.checkToken_(request);
|
2019-07-29 15:43:53 +02:00
|
|
|
|
2018-09-27 20:35:10 +02:00
|
|
|
if (request.method === 'GET') {
|
2018-09-29 13:54:44 +02:00
|
|
|
if (link && link === 'tags') {
|
|
|
|
return Tag.tagsByNoteId(id);
|
|
|
|
} else if (link) {
|
|
|
|
throw new ErrorNotFound();
|
|
|
|
}
|
2018-09-27 20:35:10 +02:00
|
|
|
|
2018-09-29 13:54:44 +02:00
|
|
|
const options = this.notePreviewsOptions_(request);
|
|
|
|
if (id) {
|
|
|
|
return await Note.preview(id, options);
|
2018-09-27 20:35:10 +02:00
|
|
|
} else {
|
2018-09-29 13:54:44 +02:00
|
|
|
return await Note.previews(null, options);
|
2018-09-27 20:35:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-27 10:14:05 +02:00
|
|
|
if (request.method === 'POST') {
|
|
|
|
const requestId = Date.now();
|
|
|
|
const requestNote = JSON.parse(request.body);
|
2019-01-20 17:26:43 +02:00
|
|
|
|
2019-05-10 02:06:06 +02:00
|
|
|
const allowFileProtocolImages = urlUtils.urlProtocol(requestNote.base_url).toLowerCase() === 'file:';
|
|
|
|
|
2019-01-20 17:26:43 +02:00
|
|
|
const imageSizes = requestNote.image_sizes ? requestNote.image_sizes : {};
|
|
|
|
|
2019-06-13 01:26:09 +02:00
|
|
|
let note = await this.requestNoteToNote_(requestNote);
|
2018-09-27 10:14:05 +02:00
|
|
|
|
2019-07-16 22:47:44 +02:00
|
|
|
const imageUrls = ArrayUtils.unique(markupLanguageUtils.extractImageUrls(note.markup_language, note.body));
|
2018-09-27 10:14:05 +02:00
|
|
|
|
|
|
|
this.logger().info('Request (' + requestId + '): Downloading images: ' + imageUrls.length);
|
|
|
|
|
2019-05-10 02:06:06 +02:00
|
|
|
let result = await this.downloadImages_(imageUrls, allowFileProtocolImages);
|
2018-09-27 10:14:05 +02:00
|
|
|
|
|
|
|
this.logger().info('Request (' + requestId + '): Creating resources from paths: ' + Object.getOwnPropertyNames(result).length);
|
|
|
|
|
|
|
|
result = await this.createResourcesFromPaths_(result);
|
|
|
|
await this.removeTempFiles_(result);
|
2019-07-14 17:00:02 +02:00
|
|
|
note.body = this.replaceImageUrlsByResources_(note.markup_language, note.body, result, imageSizes);
|
2018-09-27 10:14:05 +02:00
|
|
|
|
|
|
|
this.logger().info('Request (' + requestId + '): Saving note...');
|
|
|
|
|
2019-02-07 00:36:39 +02:00
|
|
|
const saveOptions = this.defaultSaveOptions_(note, 'POST');
|
2019-06-22 13:31:04 +02:00
|
|
|
saveOptions.autoTimestamp = false; // No auto-timestamp because user may have provided them
|
|
|
|
const timestamp = Date.now();
|
|
|
|
note.updated_time = timestamp;
|
|
|
|
note.created_time = timestamp;
|
|
|
|
|
2018-11-08 03:14:13 +02:00
|
|
|
note = await Note.save(note, saveOptions);
|
2018-09-27 10:14:05 +02:00
|
|
|
|
|
|
|
if (requestNote.tags) {
|
|
|
|
const tagTitles = requestNote.tags.split(',');
|
|
|
|
await Tag.setNoteTagsByTitles(note.id, tagTitles);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (requestNote.image_data_url) {
|
|
|
|
note = await this.attachImageFromDataUrl_(note, requestNote.image_data_url, requestNote.crop_rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.logger().info('Request (' + requestId + '): Created note ' + note.id);
|
2018-09-27 21:38:16 +02:00
|
|
|
|
2018-09-27 10:14:05 +02:00
|
|
|
return note;
|
|
|
|
}
|
|
|
|
|
2018-09-28 20:24:57 +02:00
|
|
|
return this.defaultAction_(BaseModel.TYPE_NOTE, request, id, link);
|
2018-09-27 10:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ========================================================================================================================
|
|
|
|
// UTILIY FUNCTIONS
|
|
|
|
// ========================================================================================================================
|
|
|
|
|
|
|
|
htmlToMdParser() {
|
|
|
|
if (this.htmlToMdParser_) return this.htmlToMdParser_;
|
|
|
|
this.htmlToMdParser_ = new HtmlToMd();
|
|
|
|
return this.htmlToMdParser_;
|
|
|
|
}
|
|
|
|
|
2019-06-13 01:26:09 +02:00
|
|
|
async requestNoteToNote_(requestNote) {
|
2018-09-27 10:14:05 +02:00
|
|
|
const output = {
|
|
|
|
title: requestNote.title ? requestNote.title : '',
|
|
|
|
body: requestNote.body ? requestNote.body : '',
|
|
|
|
};
|
|
|
|
|
2018-11-08 03:14:13 +02:00
|
|
|
if (requestNote.id) output.id = requestNote.id;
|
|
|
|
|
2019-07-15 01:44:45 +02:00
|
|
|
const baseUrl = requestNote.base_url ? requestNote.base_url : '';
|
|
|
|
|
2018-09-27 10:14:05 +02:00
|
|
|
if (requestNote.body_html) {
|
2019-07-14 17:00:02 +02:00
|
|
|
if (requestNote.convert_to === 'html') {
|
|
|
|
const style = await this.buildNoteStyleSheet_(requestNote.stylesheets);
|
2019-07-15 02:17:17 +02:00
|
|
|
const minify = require('html-minifier').minify;
|
|
|
|
|
2019-07-17 23:48:13 +02:00
|
|
|
const minifyOptions = {
|
2019-07-14 17:00:02 +02:00
|
|
|
// Remove all spaces and, especially, newlines from tag attributes, as that would
|
|
|
|
// break the rendering.
|
|
|
|
customAttrCollapse: /.*/,
|
|
|
|
// Need to remove all whitespaces because whitespace at a beginning of a line
|
|
|
|
// means a code block in Markdown.
|
|
|
|
collapseWhitespace: true,
|
2019-07-15 02:17:17 +02:00
|
|
|
minifyCSS: true,
|
2019-07-17 23:48:13 +02:00
|
|
|
maxLineLength: 300,
|
|
|
|
};
|
|
|
|
|
|
|
|
const uglifycss = require('uglifycss');
|
|
|
|
const styleString = uglifycss.processString(style.join('\n'), {
|
|
|
|
// Need to set a max length because Ace Editor takes forever
|
|
|
|
// to display notes with long lines.
|
|
|
|
maxLineLen: 200,
|
2019-07-14 17:00:02 +02:00
|
|
|
});
|
2019-07-17 23:48:13 +02:00
|
|
|
|
|
|
|
const styleTag = style.length ? '<style>' + styleString + '</style>' + '\n' : '';
|
|
|
|
output.body = styleTag + minify(requestNote.body_html, minifyOptions);
|
2019-07-15 01:44:45 +02:00
|
|
|
output.body = htmlUtils.prependBaseUrl(output.body, baseUrl);
|
2019-07-14 17:00:02 +02:00
|
|
|
output.markup_language = Note.MARKUP_LANGUAGE_HTML;
|
2019-07-29 15:43:53 +02:00
|
|
|
} else {
|
|
|
|
// Convert to Markdown
|
2019-07-14 17:00:02 +02:00
|
|
|
// Parsing will not work if the HTML is not wrapped in a top level tag, which is not guaranteed
|
|
|
|
// when getting the content from elsewhere. So here wrap it - it won't change anything to the final
|
|
|
|
// rendering but it makes sure everything will be parsed.
|
|
|
|
output.body = await this.htmlToMdParser().parse('<div>' + requestNote.body_html + '</div>', {
|
2019-07-15 01:44:45 +02:00
|
|
|
baseUrl: baseUrl,
|
2019-07-14 17:00:02 +02:00
|
|
|
anchorNames: requestNote.anchor_names ? requestNote.anchor_names : [],
|
|
|
|
});
|
|
|
|
output.markup_language = Note.MARKUP_LANGUAGE_MARKDOWN;
|
|
|
|
}
|
2018-09-27 10:14:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (requestNote.parent_id) {
|
|
|
|
output.parent_id = requestNote.parent_id;
|
|
|
|
} else {
|
|
|
|
const folder = await Folder.defaultFolder();
|
|
|
|
if (!folder) throw new Error('Cannot find folder for note');
|
|
|
|
output.parent_id = folder.id;
|
|
|
|
}
|
|
|
|
|
2019-06-22 13:31:04 +02:00
|
|
|
if ('source_url' in requestNote) output.source_url = requestNote.source_url;
|
|
|
|
if ('author' in requestNote) output.author = requestNote.author;
|
|
|
|
if ('user_updated_time' in requestNote) output.user_updated_time = Database.formatValue(Database.TYPE_INT, requestNote.user_updated_time);
|
|
|
|
if ('user_created_time' in requestNote) output.user_created_time = Database.formatValue(Database.TYPE_INT, requestNote.user_created_time);
|
2019-06-28 14:46:55 +02:00
|
|
|
if ('is_todo' in requestNote) output.is_todo = Database.formatValue(Database.TYPE_INT, requestNote.is_todo);
|
2019-07-21 01:31:29 +02:00
|
|
|
if ('markup_language' in requestNote) output.markup_language = Database.formatValue(Database.TYPE_INT, requestNote.markup_language);
|
|
|
|
|
|
|
|
if (!output.markup_language) output.markup_language = Note.MARKUP_LANGUAGE_MARKDOWN;
|
2018-09-27 10:14:05 +02:00
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note must have been saved first
|
|
|
|
async attachImageFromDataUrl_(note, imageDataUrl, cropRect) {
|
|
|
|
const tempDir = Setting.value('tempDir');
|
|
|
|
const mime = mimeUtils.fromDataUrl(imageDataUrl);
|
|
|
|
let ext = mimeUtils.toFileExtension(mime) || '';
|
|
|
|
if (ext) ext = '.' + ext;
|
|
|
|
const tempFilePath = tempDir + '/' + md5(Math.random() + '_' + Date.now()) + ext;
|
|
|
|
const imageConvOptions = {};
|
|
|
|
if (cropRect) imageConvOptions.cropRect = cropRect;
|
|
|
|
await shim.imageFromDataUrl(imageDataUrl, tempFilePath, imageConvOptions);
|
|
|
|
return await shim.attachFileToNote(note, tempFilePath);
|
|
|
|
}
|
|
|
|
|
2019-06-12 10:45:31 +02:00
|
|
|
async tryToGuessImageExtFromMimeType_(response, imagePath) {
|
|
|
|
const mimeType = netUtils.mimeTypeFromHeaders(response.headers);
|
|
|
|
if (!mimeType) return imagePath;
|
|
|
|
|
|
|
|
const newExt = mimeUtils.toFileExtension(mimeType);
|
|
|
|
if (!newExt) return imagePath;
|
|
|
|
|
|
|
|
const newImagePath = imagePath + '.' + newExt;
|
|
|
|
await shim.fsDriver().move(imagePath, newImagePath);
|
|
|
|
return newImagePath;
|
|
|
|
}
|
|
|
|
|
2019-07-14 17:00:02 +02:00
|
|
|
async buildNoteStyleSheet_(stylesheets) {
|
|
|
|
if (!stylesheets) return [];
|
|
|
|
|
|
|
|
const output = [];
|
|
|
|
|
|
|
|
for (const stylesheet of stylesheets) {
|
|
|
|
if (stylesheet.type === 'text') {
|
|
|
|
output.push(stylesheet.value);
|
|
|
|
} else if (stylesheet.type === 'url') {
|
|
|
|
try {
|
|
|
|
const tempPath = Setting.value('tempDir') + '/' + md5(Math.random() + '_' + Date.now()) + '.css';
|
|
|
|
await shim.fetchBlob(stylesheet.value, { path: tempPath, maxRetry: 1 });
|
|
|
|
const text = await shim.fsDriver().readFile(tempPath);
|
|
|
|
output.push(text);
|
|
|
|
await shim.fsDriver().remove(tempPath);
|
|
|
|
} catch (error) {
|
|
|
|
this.logger().warn('Cannot download stylesheet at ' + stylesheet.value, error);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw new Error('Invalid stylesheet type: ' + stylesheet.type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2019-05-10 02:06:06 +02:00
|
|
|
async downloadImage_(url, allowFileProtocolImages) {
|
2018-09-27 10:14:05 +02:00
|
|
|
const tempDir = Setting.value('tempDir');
|
|
|
|
|
|
|
|
const isDataUrl = url && url.toLowerCase().indexOf('data:') === 0;
|
|
|
|
|
|
|
|
const name = isDataUrl ? md5(Math.random() + '_' + Date.now()) : filename(url);
|
|
|
|
let fileExt = isDataUrl ? mimeUtils.toFileExtension(mimeUtils.fromDataUrl(url)) : safeFileExtension(fileExtension(url).toLowerCase());
|
2019-06-12 10:45:31 +02:00
|
|
|
if (!mimeUtils.fromFileExtension(fileExt)) fileExt = ''; // If the file extension is unknown - clear it.
|
2018-09-27 10:14:05 +02:00
|
|
|
if (fileExt) fileExt = '.' + fileExt;
|
|
|
|
let imagePath = tempDir + '/' + safeFilename(name) + fileExt;
|
2019-07-29 15:43:53 +02:00
|
|
|
if (await shim.fsDriver().exists(imagePath)) imagePath = tempDir + '/' + safeFilename(name) + '_' + md5(Math.random() + '_' + Date.now()).substr(0, 10) + fileExt;
|
2018-09-27 10:14:05 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
if (isDataUrl) {
|
|
|
|
await shim.imageFromDataUrl(url, imagePath);
|
2019-05-10 02:06:06 +02:00
|
|
|
} else if (urlUtils.urlProtocol(url).toLowerCase() === 'file:') {
|
|
|
|
// Can't think of any reason to disallow this at this point
|
|
|
|
// if (!allowFileProtocolImages) throw new Error('For security reasons, this URL with file:// protocol cannot be downloaded');
|
|
|
|
const localPath = uri2path(url);
|
|
|
|
await shim.fsDriver().copy(localPath, imagePath);
|
2018-09-27 10:14:05 +02:00
|
|
|
} else {
|
2019-06-12 10:45:31 +02:00
|
|
|
const response = await shim.fetchBlob(url, { path: imagePath, maxRetry: 1 });
|
|
|
|
|
|
|
|
// If we could not find the file extension from the URL, try to get it
|
|
|
|
// now based on the Content-Type header.
|
2019-06-24 01:00:11 +02:00
|
|
|
if (!fileExt) imagePath = await this.tryToGuessImageExtFromMimeType_(response, imagePath);
|
2018-09-27 10:14:05 +02:00
|
|
|
}
|
|
|
|
return imagePath;
|
|
|
|
} catch (error) {
|
|
|
|
this.logger().warn('Cannot download image at ' + url, error);
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-10 02:06:06 +02:00
|
|
|
async downloadImages_(urls, allowFileProtocolImages) {
|
2019-07-29 15:43:53 +02:00
|
|
|
const PromisePool = require('es6-promise-pool');
|
2018-09-27 10:14:05 +02:00
|
|
|
|
|
|
|
const output = {};
|
|
|
|
|
2019-07-30 09:35:42 +02:00
|
|
|
const downloadOne = async url => {
|
|
|
|
const imagePath = await this.downloadImage_(url, allowFileProtocolImages);
|
|
|
|
if (imagePath) output[url] = { path: imagePath, originalUrl: url };
|
2019-07-29 15:43:53 +02:00
|
|
|
};
|
2018-09-27 10:14:05 +02:00
|
|
|
|
2019-07-16 23:58:44 +02:00
|
|
|
let urlIndex = 0;
|
|
|
|
const promiseProducer = () => {
|
|
|
|
if (urlIndex >= urls.length) return null;
|
|
|
|
|
|
|
|
const url = urls[urlIndex++];
|
|
|
|
return downloadOne(url);
|
2019-07-29 15:43:53 +02:00
|
|
|
};
|
2019-07-16 23:58:44 +02:00
|
|
|
|
2019-07-16 23:23:04 +02:00
|
|
|
const concurrency = 10;
|
2019-07-29 15:43:53 +02:00
|
|
|
const pool = new PromisePool(promiseProducer, concurrency);
|
|
|
|
await pool.start();
|
2018-09-27 10:14:05 +02:00
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
async createResourcesFromPaths_(urls) {
|
|
|
|
for (let url in urls) {
|
|
|
|
if (!urls.hasOwnProperty(url)) continue;
|
|
|
|
const urlInfo = urls[url];
|
|
|
|
try {
|
|
|
|
const resource = await shim.createResourceFromPath(urlInfo.path);
|
|
|
|
urlInfo.resource = resource;
|
|
|
|
} catch (error) {
|
|
|
|
this.logger().warn('Cannot create resource for ' + url, error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return urls;
|
|
|
|
}
|
|
|
|
|
|
|
|
async removeTempFiles_(urls) {
|
|
|
|
for (let url in urls) {
|
|
|
|
if (!urls.hasOwnProperty(url)) continue;
|
|
|
|
const urlInfo = urls[url];
|
|
|
|
try {
|
|
|
|
await shim.fsDriver().remove(urlInfo.path);
|
|
|
|
} catch (error) {
|
|
|
|
this.logger().warn('Cannot remove ' + urlInfo.path, error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-14 17:00:02 +02:00
|
|
|
replaceImageUrlsByResources_(markupLanguage, md, urls, imageSizes) {
|
2019-07-16 22:47:44 +02:00
|
|
|
const imageSizesIndexes = {};
|
|
|
|
|
2019-07-14 17:00:02 +02:00
|
|
|
if (markupLanguage === Note.MARKUP_LANGUAGE_HTML) {
|
|
|
|
return htmlUtils.replaceImageUrls(md, imageUrl => {
|
|
|
|
const urlInfo = urls[imageUrl];
|
|
|
|
if (!urlInfo || !urlInfo.resource) return imageUrl;
|
|
|
|
return Resource.internalUrl(urlInfo.resource);
|
2019-07-29 15:43:53 +02:00
|
|
|
});
|
|
|
|
} else {
|
2019-07-30 09:35:42 +02:00
|
|
|
// eslint-disable-next-line no-useless-escape
|
|
|
|
return md.replace(/(!\[.*?\]\()([^\s\)]+)(.*?\))/g, (match, before, imageUrl, after) => {
|
2019-07-14 17:00:02 +02:00
|
|
|
const urlInfo = urls[imageUrl];
|
|
|
|
if (!urlInfo || !urlInfo.resource) return before + imageUrl + after;
|
2019-07-16 22:47:44 +02:00
|
|
|
if (!(urlInfo.originalUrl in imageSizesIndexes)) imageSizesIndexes[urlInfo.originalUrl] = 0;
|
2019-09-07 11:47:31 +02:00
|
|
|
|
2019-07-14 17:00:02 +02:00
|
|
|
const resourceUrl = Resource.internalUrl(urlInfo.resource);
|
2019-09-07 11:47:31 +02:00
|
|
|
const imageSizesCollection = imageSizes[urlInfo.originalUrl];
|
|
|
|
|
|
|
|
if (!imageSizesCollection) {
|
|
|
|
// In some cases, we won't find the image size information for that particular URL. Normally
|
2019-09-07 12:18:07 +02:00
|
|
|
// it will only happen when using the "Clip simplified page" feature, which can modify the
|
2019-09-07 11:47:31 +02:00
|
|
|
// image URLs (for example it will select a smaller size resolution). In that case, it's
|
|
|
|
// fine to return the image as-is because it has already good dimensions.
|
|
|
|
return before + resourceUrl + after;
|
|
|
|
}
|
2019-07-14 17:00:02 +02:00
|
|
|
|
2019-09-07 11:47:31 +02:00
|
|
|
const imageSize = imageSizesCollection[imageSizesIndexes[urlInfo.originalUrl]];
|
|
|
|
imageSizesIndexes[urlInfo.originalUrl]++;
|
2019-09-07 12:18:07 +02:00
|
|
|
|
2019-07-14 17:00:02 +02:00
|
|
|
if (imageSize && (imageSize.naturalWidth !== imageSize.width || imageSize.naturalHeight !== imageSize.height)) {
|
|
|
|
return '<img width="' + imageSize.width + '" height="' + imageSize.height + '" src="' + resourceUrl + '"/>';
|
|
|
|
} else {
|
|
|
|
return before + resourceUrl + after;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-09-27 10:14:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-28 14:46:55 +02:00
|
|
|
module.exports = Api;
|