2019-01-19 20:07:12 +02:00
|
|
|
import * as mongo from 'mongodb';
|
2019-02-22 04:46:58 +02:00
|
|
|
import Note from '../../../models/note';
|
|
|
|
import User, { isRemoteUser, isLocalUser } from '../../../models/user';
|
|
|
|
import { IdentifiableError } from '../../../misc/identifiable-error';
|
2019-01-19 20:07:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get valied note for API processing
|
|
|
|
*/
|
|
|
|
export async function getValiedNote(noteId: mongo.ObjectID) {
|
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: noteId,
|
|
|
|
deletedAt: { $exists: false }
|
|
|
|
});
|
|
|
|
|
|
|
|
if (note === null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new IdentifiableError('9725d0ce-ba28-4dde-95a7-2cbb2c15de24', 'No such note.');
|
2019-01-19 20:07:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return note;
|
|
|
|
}
|
2019-01-26 10:53:35 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get user for API processing
|
|
|
|
*/
|
|
|
|
export async function getUser(userId: mongo.ObjectID) {
|
|
|
|
const user = await User.findOne({
|
|
|
|
_id: userId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new IdentifiableError('15348ddd-432d-49c2-8a5a-8069753becff', 'No such user.');
|
2019-01-26 10:53:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get remote user for API processing
|
|
|
|
*/
|
|
|
|
export async function getRemoteUser(userId: mongo.ObjectID) {
|
|
|
|
const user = await getUser(userId);
|
|
|
|
|
|
|
|
if (!isRemoteUser(user)) {
|
|
|
|
throw 'user is not a remote user';
|
|
|
|
}
|
|
|
|
|
|
|
|
return user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get local user for API processing
|
|
|
|
*/
|
|
|
|
export async function getLocalUser(userId: mongo.ObjectID) {
|
|
|
|
const user = await getUser(userId);
|
|
|
|
|
|
|
|
if (!isLocalUser(user)) {
|
|
|
|
throw 'user is not a local user';
|
|
|
|
}
|
|
|
|
|
|
|
|
return user;
|
|
|
|
}
|