Sharkey/src/server/api/endpoints/notes/create.ts

218 lines
5 KiB
TypeScript
Raw Normal View History

2018-07-07 13:19:00 +03:00
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
2018-07-15 21:25:35 +03:00
const ms = require('ms');
2018-04-07 20:30:37 +03:00
import Note, { INote, isValidText, isValidCw, pack } from '../../../../models/note';
2018-06-18 03:54:53 +03:00
import User, { ILocalUser, IUser } from '../../../../models/user';
2018-07-05 17:36:07 +03:00
import DriveFile, { IDriveFile } from '../../../../models/drive-file';
2018-04-07 20:30:37 +03:00
import create from '../../../../services/note/create';
import { IApp } from '../../../../models/app';
2018-07-05 16:35:35 +03:00
import getParams from '../../get-params';
export const meta = {
2018-10-21 23:16:27 +03:00
stability: 'stable',
2018-07-05 17:47:36 +03:00
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '投稿します。'
2018-07-05 17:47:36 +03:00
},
2018-07-05 18:04:40 +03:00
2018-07-15 21:25:35 +03:00
requireCredential: true,
limit: {
duration: ms('1hour'),
2018-08-17 22:21:49 +03:00
max: 300
2018-07-15 21:25:35 +03:00
},
kind: 'note-write',
2018-07-05 16:35:35 +03:00
params: {
2018-07-05 17:36:07 +03:00
visibility: $.str.optional.or(['public', 'home', 'followers', 'specified', 'private']).note({
2018-07-05 16:35:35 +03:00
default: 'public',
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '投稿の公開範囲'
2018-07-05 16:35:35 +03:00
}
2018-07-05 17:36:07 +03:00
}),
visibleUserIds: $.arr($.type(ID)).optional.unique().min(1).note({
2018-07-05 16:35:35 +03:00
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '(投稿の公開範囲が specified の場合)投稿を閲覧できるユーザー'
2018-07-05 16:35:35 +03:00
}
2018-07-05 17:36:07 +03:00
}),
text: $.str.optional.nullable.pipe(isValidText).note({
2018-07-05 16:35:35 +03:00
default: null,
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '投稿内容'
2018-07-05 16:35:35 +03:00
}
2018-07-05 17:36:07 +03:00
}),
cw: $.str.optional.nullable.pipe(isValidCw).note({
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'コンテンツの警告。このパラメータを指定すると設定したテキストで投稿のコンテンツを隠す事が出来ます。'
2018-07-05 17:36:07 +03:00
}
}),
viaMobile: $.bool.optional.note({
default: false,
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'モバイルデバイスからの投稿か否か。'
2018-07-05 17:36:07 +03:00
}
}),
geo: $.obj({
coordinates: $.arr().length(2)
.item(0, $.num.range(-180, 180))
.item(1, $.num.range(-90, 90)),
altitude: $.num.nullable,
accuracy: $.num.nullable,
altitudeAccuracy: $.num.nullable,
heading: $.num.nullable.range(0, 360),
speed: $.num.nullable
}).optional.nullable.strict().note({
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '位置情報'
2018-07-05 20:58:29 +03:00
},
ref: 'geo'
2018-07-05 17:36:07 +03:00
}),
2018-09-05 13:32:46 +03:00
fileIds: $.arr($.type(ID)).optional.unique().range(1, 4).note({
desc: {
'ja-JP': '添付するファイル'
}
}),
2018-07-05 17:36:07 +03:00
mediaIds: $.arr($.type(ID)).optional.unique().range(1, 4).note({
desc: {
2018-09-05 13:32:46 +03:00
'ja-JP': '添付するファイル (このパラメータは廃止予定です。代わりに fileIds を使ってください。)'
2018-07-05 17:36:07 +03:00
}
}),
renoteId: $.type(ID).optional.note({
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'Renote対象'
2018-07-05 17:36:07 +03:00
}
}),
poll: $.obj({
choices: $.arr($.str)
.unique()
.range(2, 10)
.each(c => c.length > 0 && c.length < 50)
}).optional.strict().note({
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'アンケート'
2018-07-05 20:58:29 +03:00
},
ref: 'poll'
2018-07-05 17:36:07 +03:00
})
2018-07-05 17:47:36 +03:00
},
2018-07-05 18:04:40 +03:00
2018-07-05 17:47:36 +03:00
res: {
2018-07-05 18:04:40 +03:00
type: 'object',
2018-07-07 07:34:42 +03:00
props: {
2018-07-05 17:47:36 +03:00
createdNote: {
type: 'entity(Note)',
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '作成した投稿'
2018-07-05 17:47:36 +03:00
}
}
}
2018-07-05 16:35:35 +03:00
}
};
2018-04-07 20:30:37 +03:00
/**
* Create a note
*/
2018-07-05 20:58:29 +03:00
export default (params: any, user: ILocalUser, app: IApp) => new Promise(async (res, rej) => {
2018-07-05 16:35:35 +03:00
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
2018-04-28 22:30:51 +03:00
2018-06-18 03:54:53 +03:00
let visibleUsers: IUser[] = [];
2018-07-05 16:35:35 +03:00
if (ps.visibleUserIds !== undefined) {
visibleUsers = await Promise.all(ps.visibleUserIds.map(id => User.findOne({
2018-04-28 22:30:51 +03:00
_id: id
})));
}
2018-07-05 17:36:07 +03:00
let files: IDriveFile[] = [];
2018-09-05 13:32:46 +03:00
const fileIds = ps.fileIds != null ? ps.fileIds : ps.mediaIds != null ? ps.mediaIds : null;
if (fileIds != null) {
2018-09-09 19:51:46 +03:00
files = await Promise.all(fileIds.map(fileId => {
return DriveFile.findOne({
2018-09-05 13:32:46 +03:00
_id: fileId,
2018-04-07 20:30:37 +03:00
'metadata.userId': user._id
});
2018-09-09 19:51:46 +03:00
}));
2018-04-07 20:30:37 +03:00
2018-09-09 19:51:46 +03:00
files = files.filter(file => file != null);
2018-04-07 20:30:37 +03:00
}
let renote: INote = null;
2018-07-05 17:36:07 +03:00
if (ps.renoteId !== undefined) {
2018-04-07 20:30:37 +03:00
// Fetch renote to note
renote = await Note.findOne({
2018-07-05 17:36:07 +03:00
_id: ps.renoteId
2018-04-07 20:30:37 +03:00
});
if (renote == null) {
return rej('renoteee is not found');
2018-09-05 13:32:46 +03:00
} else if (renote.renoteId && !renote.text && !renote.fileIds) {
2018-04-07 20:30:37 +03:00
return rej('cannot renote to renote');
}
}
// Get 'replyId' parameter
2018-07-05 17:36:07 +03:00
const [replyId, replyIdErr] = $.type(ID).optional.get(params.replyId);
2018-04-07 20:30:37 +03:00
if (replyIdErr) return rej('invalid replyId');
let reply: INote = null;
if (replyId !== undefined) {
// Fetch reply
reply = await Note.findOne({
_id: replyId
});
if (reply === null) {
return rej('in reply to note is not found');
}
// 返信対象が引用でないRenoteだったらエラー
2018-09-05 13:32:46 +03:00
if (reply.renoteId && !reply.text && !reply.fileIds) {
2018-04-07 20:30:37 +03:00
return rej('cannot reply to renote');
}
}
2018-07-05 17:36:07 +03:00
if (ps.poll) {
(ps.poll as any).choices = (ps.poll as any).choices.map((choice: string, i: number) => ({
2018-04-07 20:30:37 +03:00
id: i, // IDを付与
text: choice.trim(),
votes: 0
}));
}
// テキストが無いかつ添付ファイルが無いかつRenoteも無いかつ投票も無かったらエラー
2018-07-05 17:36:07 +03:00
if ((ps.text === undefined || ps.text === null) && files === null && renote === null && ps.poll === undefined) {
2018-09-05 13:32:46 +03:00
return rej('text, fileIds, renoteId or poll is required');
2018-04-07 20:30:37 +03:00
}
// 投稿を作成
const note = await create(user, {
createdAt: new Date(),
2018-09-05 13:32:46 +03:00
files: files,
2018-07-05 17:36:07 +03:00
poll: ps.poll,
text: ps.text,
2018-04-07 20:30:37 +03:00
reply,
renote,
2018-07-05 17:36:07 +03:00
cw: ps.cw,
2018-04-22 11:04:52 +03:00
app,
2018-07-05 17:36:07 +03:00
viaMobile: ps.viaMobile,
visibility: ps.visibility,
2018-04-28 22:30:51 +03:00
visibleUsers,
2018-07-05 17:36:07 +03:00
geo: ps.geo
2018-04-07 20:30:37 +03:00
});
const noteObj = await pack(note, user);
// Reponse
res({
createdNote: noteObj
});
});