mirror of
https://github.com/zadam/trilium.git
synced 2024-11-17 13:14:44 +08:00
74 lines
No EOL
2.1 KiB
JavaScript
74 lines
No EOL
2.1 KiB
JavaScript
"use strict";
|
|
|
|
const imageService = require('../../services/image');
|
|
const utils = require('../../services/utils');
|
|
const dateNoteService = require('../../services/date_notes');
|
|
const sql = require('../../services/sql');
|
|
const noteService = require('../../services/notes');
|
|
const passwordEncryptionService = require('../../services/password_encryption');
|
|
const optionService = require('../../services/options');
|
|
const ApiToken = require('../../entities/api_token');
|
|
|
|
async function login(req) {
|
|
const username = req.body.username;
|
|
const password = req.body.password;
|
|
|
|
const isUsernameValid = username === await optionService.getOption('username');
|
|
const isPasswordValid = await passwordEncryptionService.verifyPassword(password);
|
|
|
|
if (!isUsernameValid || !isPasswordValid) {
|
|
return [401, "Incorrect username/password"];
|
|
}
|
|
|
|
const apiToken = await new ApiToken({
|
|
token: utils.randomSecureToken()
|
|
}).save();
|
|
|
|
return {
|
|
token: apiToken.token
|
|
};
|
|
}
|
|
|
|
async function uploadImage(req) {
|
|
const file = req.file;
|
|
|
|
if (!["image/png", "image/jpeg", "image/gif"].includes(file.mimetype)) {
|
|
return [400, "Unknown image type: " + file.mimetype];
|
|
}
|
|
|
|
const parentNote = await dateNoteService.getDateNote(req.headers['x-local-date']);
|
|
|
|
const {note} = await noteService.createNewNote(parentNote.noteId, {
|
|
title: "Sender image",
|
|
content: "",
|
|
target: 'into',
|
|
isProtected: false,
|
|
type: 'text',
|
|
mime: 'text/html'
|
|
});
|
|
|
|
const {url} = await imageService.saveImage(file, null, note.noteId);
|
|
|
|
const content = `<img src="${url}"/>`;
|
|
|
|
await sql.execute("UPDATE notes SET content = ? WHERE noteId = ?", [content, note.noteId]);
|
|
}
|
|
|
|
async function saveNote(req) {
|
|
const parentNote = await dateNoteService.getDateNote(req.headers['x-local-date']);
|
|
|
|
await noteService.createNewNote(parentNote.noteId, {
|
|
title: req.body.title,
|
|
content: req.body.content,
|
|
target: 'into',
|
|
isProtected: false,
|
|
type: 'text',
|
|
mime: 'text/html'
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
login,
|
|
uploadImage,
|
|
saveNote
|
|
}; |