trilium/src/routes/api/sender.js

76 lines
2.2 KiB
JavaScript
Raw Normal View History

2018-02-11 13:18:59 +08:00
"use strict";
const imageService = require('../../services/image');
2018-02-11 13:18:59 +08:00
const utils = require('../../services/utils');
const dateNoteService = require('../../services/date_notes');
2018-02-11 13:18:59 +08:00
const sql = require('../../services/sql');
const noteService = require('../../services/notes');
const passwordEncryptionService = require('../../services/password_encryption');
const optionService = require('../../services/options');
2018-04-02 05:38:24 +08:00
const ApiToken = require('../../entities/api_token');
2018-02-11 13:18:59 +08:00
async function login(req) {
2018-02-11 13:18:59 +08:00
const username = req.body.username;
const password = req.body.password;
const isUsernameValid = username === await optionService.getOption('username');
const isPasswordValid = await passwordEncryptionService.verifyPassword(password);
2018-02-11 13:18:59 +08:00
if (!isUsernameValid || !isPasswordValid) {
return [401, "Incorrect username/password"];
2018-02-11 13:18:59 +08:00
}
2018-04-03 10:53:01 +08:00
const apiToken = await new ApiToken({
token: utils.randomSecureToken()
}).save();
2018-02-11 13:18:59 +08:00
return {
2018-04-02 05:38:24 +08:00
token: apiToken.token
};
2018-02-11 13:18:59 +08:00
}
async function uploadImage(req) {
2018-02-11 13:18:59 +08:00
const file = req.file;
if (!["image/png", "image/jpeg", "image/gif"].includes(file.mimetype)) {
return [400, "Unknown image type: " + file.mimetype];
2018-02-11 13:18:59 +08:00
}
const parentNoteId = await dateNoteService.getDateNoteId(req.headers['x-local-date']);
2018-02-11 13:18:59 +08:00
const {note} = await noteService.createNewNote(parentNoteId, {
2018-02-11 13:18:59 +08:00
title: "Sender image",
content: "",
target: 'into',
isProtected: false,
type: 'text',
mime: 'text/html'
});
2018-02-11 13:18:59 +08:00
const {fileName, imageId} = await imageService.saveImage(file, null, note.noteId);
2018-02-11 13:18:59 +08:00
const url = `/api/images/${imageId}/${fileName}`;
const content = `<img src="${url}"/>`;
2018-04-01 23:42:12 +08:00
await sql.execute("UPDATE notes SET content = ? WHERE noteId = ?", [content, note.noteId]);
}
2018-02-11 13:18:59 +08:00
async function saveNote(req) {
const parentNoteId = await dateNoteService.getDateNoteId(req.headers['x-local-date']);
2018-02-11 23:54:56 +08:00
await noteService.createNewNote(parentNoteId, {
2018-02-11 23:54:56 +08:00
title: req.body.title,
content: req.body.content,
target: 'into',
isProtected: false,
type: 'text',
mime: 'text/html'
});
}
2018-02-11 23:54:56 +08:00
module.exports = {
login,
uploadImage,
saveNote
};