2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2019-02-01 16:16:27 +01:00
|
|
|
import * as ms from 'ms';
|
2018-11-05 03:09:05 +01:00
|
|
|
import { length } from 'stringz';
|
2018-04-07 19:30:37 +02:00
|
|
|
import create from '../../../../services/note/create';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2019-04-24 01:11:19 +02:00
|
|
|
import { fetchMeta } from '../../../../misc/fetch-meta';
|
2019-02-22 03:46:58 +01:00
|
|
|
import { ApiError } from '../../error';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
|
|
|
import { User } from '../../../../models/entities/user';
|
2020-08-18 15:44:21 +02:00
|
|
|
import { Users, DriveFiles, Notes, Channels } from '../../../../models';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { DriveFile } from '../../../../models/entities/drive-file';
|
|
|
|
import { Note } from '../../../../models/entities/note';
|
2019-09-30 18:46:31 +02:00
|
|
|
import { DB_MAX_NOTE_TEXT_LENGTH } from '../../../../misc/hard-limits';
|
2020-05-26 07:33:55 +02:00
|
|
|
import { noteVisibilities } from '../../../../types';
|
2020-08-18 15:44:21 +02:00
|
|
|
import { Channel } from '../../../../models/entities/channel';
|
2018-11-05 03:09:05 +01:00
|
|
|
|
2019-10-25 17:16:47 +02:00
|
|
|
let maxNoteTextLength = 500;
|
2018-11-05 03:09:05 +01:00
|
|
|
|
|
|
|
setInterval(() => {
|
2018-11-05 23:14:43 +01:00
|
|
|
fetchMeta().then(m => {
|
|
|
|
maxNoteTextLength = m.maxNoteTextLength;
|
2018-11-05 03:09:05 +01:00
|
|
|
});
|
|
|
|
}, 3000);
|
2018-07-05 15:35:35 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2018-07-05 16:47:36 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '投稿します。'
|
2018-07-05 16:47:36 +02:00
|
|
|
},
|
2018-07-05 17:04:40 +02:00
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2020-02-15 13:33:32 +01:00
|
|
|
requireCredential: true as const,
|
2018-07-15 20:25:35 +02:00
|
|
|
|
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
2018-08-17 21:21:49 +02:00
|
|
|
max: 300
|
2018-07-15 20:25:35 +02:00
|
|
|
},
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'write:notes',
|
2018-07-15 20:25:35 +02:00
|
|
|
|
2018-07-05 15:35:35 +02:00
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
visibility: {
|
2020-05-26 07:33:55 +02:00
|
|
|
validator: $.optional.str.or(noteVisibilities as unknown as string[]),
|
2018-07-05 15:35:35 +02:00
|
|
|
default: 'public',
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '投稿の公開範囲'
|
2018-07-05 15:35:35 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-07-05 16:36:07 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
visibleUserIds: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.arr($.type(ID)).unique().min(0),
|
2018-07-05 15:35:35 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '(投稿の公開範囲が specified の場合)投稿を閲覧できるユーザー'
|
2018-07-05 15:35:35 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-07-05 16:36:07 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
text: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.nullable.str.pipe(text =>
|
2019-09-30 18:46:31 +02:00
|
|
|
text.trim() != ''
|
|
|
|
&& length(text.trim()) <= maxNoteTextLength
|
|
|
|
&& Array.from(text.trim()).length <= DB_MAX_NOTE_TEXT_LENGTH // DB limit
|
2018-11-05 03:09:05 +01:00
|
|
|
),
|
2018-11-01 19:32:24 +01:00
|
|
|
default: null as any,
|
2018-07-05 15:35:35 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '投稿内容'
|
2018-07-05 15:35:35 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-07-05 16:36:07 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
cw: {
|
2019-04-07 14:50:36 +02:00
|
|
|
validator: $.optional.nullable.str.pipe(Notes.validateCw),
|
2018-07-05 16:36:07 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'コンテンツの警告。このパラメータを指定すると設定したテキストで投稿のコンテンツを隠す事が出来ます。'
|
2018-07-05 16:36:07 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-07-05 16:36:07 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
viaMobile: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-07-05 16:36:07 +02:00
|
|
|
default: false,
|
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'モバイルデバイスからの投稿か否か。'
|
2018-07-05 16:36:07 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
|
|
|
|
2018-11-15 21:47:29 +01:00
|
|
|
localOnly: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-11-15 21:47:29 +01:00
|
|
|
default: false,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ローカルのみに投稿か否か。'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-12-22 19:25:33 +01:00
|
|
|
noExtractMentions: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-12-22 19:25:33 +01:00
|
|
|
default: false,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '本文からメンションを展開しないか否か。'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
noExtractHashtags: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-12-22 19:25:33 +01:00
|
|
|
default: false,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '本文からハッシュタグを展開しないか否か。'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
noExtractEmojis: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-12-22 19:25:33 +01:00
|
|
|
default: false,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '本文からカスタム絵文字を展開しないか否か。'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
fileIds: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.arr($.type(ID)).unique().range(1, 4),
|
2018-09-05 12:32:46 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '添付するファイル'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 12:32:46 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
mediaIds: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.arr($.type(ID)).unique().range(1, 4),
|
2019-02-24 20:18:09 +01:00
|
|
|
deprecated: true,
|
2018-07-05 16:36:07 +02:00
|
|
|
desc: {
|
2018-09-05 12:32:46 +02:00
|
|
|
'ja-JP': '添付するファイル (このパラメータは廃止予定です。代わりに fileIds を使ってください。)'
|
2018-07-05 16:36:07 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-07-05 16:36:07 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
replyId: {
|
2020-08-18 15:44:21 +02:00
|
|
|
validator: $.optional.nullable.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '返信対象'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
renoteId: {
|
2020-08-18 15:44:21 +02:00
|
|
|
validator: $.optional.nullable.type(ID),
|
2018-07-05 16:36:07 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'Renote対象'
|
2018-07-05 16:36:07 +02:00
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
|
|
|
|
2020-08-18 15:44:21 +02:00
|
|
|
channelId: {
|
|
|
|
validator: $.optional.nullable.type(ID),
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'チャンネル'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
poll: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.obj({
|
2018-11-01 19:32:24 +01:00
|
|
|
choices: $.arr($.str)
|
|
|
|
.unique()
|
|
|
|
.range(2, 10)
|
2019-03-06 14:55:47 +01:00
|
|
|
.each(c => c.length > 0 && c.length < 50),
|
|
|
|
multiple: $.optional.bool,
|
|
|
|
expiresAt: $.optional.nullable.num.int(),
|
|
|
|
expiredAfter: $.optional.nullable.num.int().min(1)
|
2019-02-13 08:33:07 +01:00
|
|
|
}).strict(),
|
2018-07-05 16:36:07 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': 'アンケート'
|
2018-07-05 19:58:29 +02:00
|
|
|
},
|
|
|
|
ref: 'poll'
|
2018-11-01 19:32:24 +01:00
|
|
|
}
|
2018-07-05 16:47:36 +02:00
|
|
|
},
|
2018-07-05 17:04:40 +02:00
|
|
|
|
2018-07-05 16:47:36 +02:00
|
|
|
res: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-24 01:45:27 +01:00
|
|
|
properties: {
|
2018-07-05 16:47:36 +02:00
|
|
|
createdNote: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
ref: 'Note',
|
2019-02-24 01:45:27 +01:00
|
|
|
description: '作成した投稿'
|
2018-07-05 16:47:36 +02:00
|
|
|
}
|
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchRenoteTarget: {
|
|
|
|
message: 'No such renote target.',
|
|
|
|
code: 'NO_SUCH_RENOTE_TARGET',
|
|
|
|
id: 'b5c90186-4ab0-49c8-9bba-a1f76c282ba4'
|
|
|
|
},
|
|
|
|
|
|
|
|
cannotReRenote: {
|
|
|
|
message: 'You can not Renote a pure Renote.',
|
|
|
|
code: 'CANNOT_RENOTE_TO_A_PURE_RENOTE',
|
|
|
|
id: 'fd4cc33e-2a37-48dd-99cc-9b806eb2031a'
|
|
|
|
},
|
|
|
|
|
|
|
|
noSuchReplyTarget: {
|
|
|
|
message: 'No such reply target.',
|
|
|
|
code: 'NO_SUCH_REPLY_TARGET',
|
|
|
|
id: '749ee0f6-d3da-459a-bf02-282e2da4292c'
|
|
|
|
},
|
|
|
|
|
|
|
|
cannotReplyToPureRenote: {
|
|
|
|
message: 'You can not reply to a pure Renote.',
|
|
|
|
code: 'CANNOT_REPLY_TO_A_PURE_RENOTE',
|
|
|
|
id: '3ac74a84-8fd5-4bb0-870f-01804f82ce15'
|
|
|
|
},
|
|
|
|
|
|
|
|
contentRequired: {
|
|
|
|
message: 'Content required. You need to set text, fileIds, renoteId or poll.',
|
|
|
|
code: 'CONTENT_REQUIRED',
|
|
|
|
id: '6f57e42b-c348-439b-bc45-993995cc515a'
|
|
|
|
},
|
2019-03-06 14:55:47 +01:00
|
|
|
|
|
|
|
cannotCreateAlreadyExpiredPoll: {
|
|
|
|
message: 'Poll is already expired.',
|
|
|
|
code: 'CANNOT_CREATE_ALREADY_EXPIRED_POLL',
|
|
|
|
id: '04da457d-b083-4055-9082-955525eda5a5'
|
2020-08-18 15:44:21 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
noSuchChannel: {
|
|
|
|
message: 'No such channel.',
|
|
|
|
code: 'NO_SUCH_CHANNEL',
|
|
|
|
id: 'b1653923-5453-4edc-b786-7c4f39bb0bbb'
|
|
|
|
},
|
2018-07-05 15:35:35 +02:00
|
|
|
}
|
|
|
|
};
|
2018-04-07 19:30:37 +02:00
|
|
|
|
2020-03-28 03:24:37 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
let visibleUsers: User[] = [];
|
2018-11-01 19:32:24 +01:00
|
|
|
if (ps.visibleUserIds) {
|
2019-04-12 18:43:22 +02:00
|
|
|
visibleUsers = (await Promise.all(ps.visibleUserIds.map(id => Users.findOne(id))))
|
|
|
|
.filter(x => x != null) as User[];
|
2018-04-28 21:30:51 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
let files: DriveFile[] = [];
|
2018-09-05 12:32:46 +02:00
|
|
|
const fileIds = ps.fileIds != null ? ps.fileIds : ps.mediaIds != null ? ps.mediaIds : null;
|
|
|
|
if (fileIds != null) {
|
2019-04-12 18:43:22 +02:00
|
|
|
files = (await Promise.all(fileIds.map(fileId =>
|
|
|
|
DriveFiles.findOne({
|
2019-04-07 14:50:36 +02:00
|
|
|
id: fileId,
|
|
|
|
userId: user.id
|
2019-04-12 18:43:22 +02:00
|
|
|
})
|
|
|
|
))).filter(file => file != null) as DriveFile[];
|
2018-04-07 19:30:37 +02:00
|
|
|
}
|
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
let renote: Note | undefined;
|
2018-11-01 19:32:24 +01:00
|
|
|
if (ps.renoteId != null) {
|
2018-04-07 19:30:37 +02:00
|
|
|
// Fetch renote to note
|
2019-04-07 14:50:36 +02:00
|
|
|
renote = await Notes.findOne(ps.renoteId);
|
2018-04-07 19:30:37 +02:00
|
|
|
|
|
|
|
if (renote == null) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.noSuchRenoteTarget);
|
2018-09-05 12:32:46 +02:00
|
|
|
} else if (renote.renoteId && !renote.text && !renote.fileIds) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.cannotReRenote);
|
2018-04-07 19:30:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
let reply: Note | undefined;
|
2018-11-01 19:32:24 +01:00
|
|
|
if (ps.replyId != null) {
|
2018-04-07 19:30:37 +02:00
|
|
|
// Fetch reply
|
2019-04-07 14:50:36 +02:00
|
|
|
reply = await Notes.findOne(ps.replyId);
|
2018-04-07 19:30:37 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (reply == null) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.noSuchReplyTarget);
|
2018-04-07 19:30:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 返信対象が引用でないRenoteだったらエラー
|
2018-09-05 12:32:46 +02:00
|
|
|
if (reply.renoteId && !reply.text && !reply.fileIds) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.cannotReplyToPureRenote);
|
2018-04-07 19:30:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-05 16:36:07 +02:00
|
|
|
if (ps.poll) {
|
2019-03-06 14:55:47 +01:00
|
|
|
if (typeof ps.poll.expiresAt === 'number') {
|
|
|
|
if (ps.poll.expiresAt < Date.now())
|
|
|
|
throw new ApiError(meta.errors.cannotCreateAlreadyExpiredPoll);
|
|
|
|
} else if (typeof ps.poll.expiredAfter === 'number') {
|
|
|
|
ps.poll.expiresAt = Date.now() + ps.poll.expiredAfter;
|
|
|
|
}
|
2018-04-07 19:30:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// テキストが無いかつ添付ファイルが無いかつRenoteも無いかつ投票も無かったらエラー
|
2018-11-21 21:06:51 +01:00
|
|
|
if (!(ps.text || files.length || renote || ps.poll)) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.contentRequired);
|
2018-04-07 19:30:37 +02:00
|
|
|
}
|
|
|
|
|
2020-08-18 15:44:21 +02:00
|
|
|
let channel: Channel | undefined;
|
|
|
|
if (ps.channelId != null) {
|
|
|
|
channel = await Channels.findOne(ps.channelId);
|
|
|
|
|
|
|
|
if (channel == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchChannel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
// 投稿を作成
|
2019-02-22 03:46:58 +01:00
|
|
|
const note = await create(user, {
|
2018-04-07 19:30:37 +02:00
|
|
|
createdAt: new Date(),
|
2018-09-05 12:32:46 +02:00
|
|
|
files: files,
|
2019-03-06 14:55:47 +01:00
|
|
|
poll: ps.poll ? {
|
|
|
|
choices: ps.poll.choices,
|
|
|
|
multiple: ps.poll.multiple || false,
|
|
|
|
expiresAt: ps.poll.expiresAt ? new Date(ps.poll.expiresAt) : null
|
2019-04-12 18:43:22 +02:00
|
|
|
} : undefined,
|
|
|
|
text: ps.text || undefined,
|
2018-04-07 19:30:37 +02:00
|
|
|
reply,
|
|
|
|
renote,
|
2018-07-05 16:36:07 +02:00
|
|
|
cw: ps.cw,
|
|
|
|
viaMobile: ps.viaMobile,
|
2018-11-15 21:47:29 +01:00
|
|
|
localOnly: ps.localOnly,
|
2018-07-05 16:36:07 +02:00
|
|
|
visibility: ps.visibility,
|
2018-04-28 21:30:51 +02:00
|
|
|
visibleUsers,
|
2020-08-18 15:44:21 +02:00
|
|
|
channel,
|
2019-04-12 18:43:22 +02:00
|
|
|
apMentions: ps.noExtractMentions ? [] : undefined,
|
|
|
|
apHashtags: ps.noExtractHashtags ? [] : undefined,
|
|
|
|
apEmojis: ps.noExtractEmojis ? [] : undefined,
|
2018-04-07 19:30:37 +02:00
|
|
|
});
|
2019-02-22 03:46:58 +01:00
|
|
|
|
|
|
|
return {
|
2019-04-07 14:50:36 +02:00
|
|
|
createdNote: await Notes.pack(note, user)
|
2019-02-22 03:46:58 +01:00
|
|
|
};
|
|
|
|
});
|