mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 15:13:08 +02:00
7199e6f4e0
* Update reaction.vue * fix bug * wip * wip * wjio * wip * Revert "wip" This reverts commit e427f2160adf4e8a4147006e25a89854edab0033. * wip * wip * wip * Update init.ts * Update drive-window.vue * wip * wip * Use PascalCase for components * Use PascalCase for components * update dep * wip * wip * wip * Update init.ts * wip * Update paging.ts * Update test.vue * watch deep * wip * lint * wip * wip * wip * wip * wiop * wip * Update webpack.config.ts * alllow null poll * wip * wip * wip * wiop * UI redesign & refactor (#6714) * wip * wip * wip * wip * wip * Update drive.vue * Update word-mute.vue * wip * wip * wip * clean up * wip * Update default.vue * wip * Update notes.vue * Update mfm.ts * Update index.home.vue * Update post-form.vue * Update post-form-attaches.vue * wip * Update post-form.vue * Update sidebar.vue * wip * wip * Update index.vue * wip * Update default.vue * Update index.vue * Update index.vue * wip * Update post-form-attaches.vue * Update note.vue * wip * clean up * Update notes.vue * wip * wip * Update ja-JP.yml * wip * wip * Update index.vue * wip * wip * wip * wip * wip * wip * wip * wip * Update default.vue * wip * Update _dark.json5 * wip * wip * wip * clean up * wip * wip * Update index.vue * Update test.vue * wip * wip * fix * wip * wip * wip * wip * clena yop * wip * wip * Update store.ts * Update messaging-room.vue * Update default.widgets.vue * fix * wip * wip * Update modal.vue * wip * Update os.ts * Update os.ts * Update deck.vue * Update init.ts * wip * Update ja-JP.yml * v-sizeは単にwindowのresizeを監視するだけで良いかもしれない * Update modal.vue * wip * Update tooltip.ts * wip * wip * wip * wip * wip * Update image-viewer.vue * wip * wip * Update style.scss * Update style.scss * Update visitor.vue * wip * Update init.ts * Update init.ts * wip * wip * Update visitor.vue * Update visitor.vue * Update visitor.vue * Update visitor.vue * wip * wip * Update modal.vue * Update header.vue * Update menu.vue * Update about.vue * Update about-misskey.vue * wip * wip * Update visitor.vue * Update tooltip.ts * wip * Update drive.vue * wip * Update style.scss * Update header.vue * wip * wip * Update users.user.vue * Update announcements.vue * wip * wip * wip * Update emojis.vue * wip * Update emojis.vue * Update style.scss * Update users.vue * wip * Update style.scss * wip * Update welcome.entrance.vue * Update radio.vue * Update size.ts * Update emoji-edit-dialog.vue * wip * Update emojis.vue * wip * Update emojis.vue * Update emojis.vue * Update emojis.vue * wip * wip * wip * wip * Update file-dialog.vue * wip * wip * Update token-generate-window.vue * Update notification-setting-window.vue * wip * wip * Update _error_.vue * Update ja-JP.yml * wip * wip * Update store.ts * Update emojis.vue * Update emojis.vue * Update emojis.vue * Update announcements.vue * Update store.ts * wip * Update page-editor.vue * wip * wip * Update modal.vue * wip * Update select-file.ts * Update timeline.vue * Update emojis.vue * Update os.ts * wip * Update user-select.vue * Update mfm.ts * Update get-file-info.ts * Update drive.vue * Update init.ts * Update mfm.ts * wip * wip * Update window.vue * Update note.vue * wip * wip * Update user-info.vue * wip * wip * wip * wip * wip * Update header.vue * Update header.vue * wip * Update explore.vue * wip * wip * wip * Update webpack.config.ts * wip * wip * wip * wip * wip * wip * Update autocomplete.ts * wip * wip * wip * Update toast.vue * wip * Update post-form-dialog.vue * wip * wip * wip * wip * wip * Update users.vue * wip * Update explore.vue * wip * wip * wip * Update package.json * wip * Update icon-dialog.vue * wip * wip * Update user-preview.ts * wip * wip * wip * wip * wip * Update instance.vue * Update user-name.vue * Update federation.vue * Update instance.vue * wip * wip * Update tag.vue * wip * wip * wip * wip * wip * Update instance.vue * wip * Update os.ts * Update os.ts * wip * wip * wip * Update router.ts * wip * Update init.ts * Update note.vue * Update messages.vue * wip * wip * wip * wip * wip * google * wip * wip * wip * wip * Update theme-editor.vue * wip * wip * Update room.vue * Update channel-editor.vue * wip * Update window.vue * Update window.vue * wip * Update window.vue * Update window.vue * wip * Update menu.vue * wip * wip * wip * wip * Update messaging-room.vue * wip * Update post-form.vue * Update default.widgets.vue * Update window.vue * wip
321 lines
7.8 KiB
TypeScript
321 lines
7.8 KiB
TypeScript
import $ from 'cafy';
|
|
import * as ms from 'ms';
|
|
import { length } from 'stringz';
|
|
import create from '../../../../services/note/create';
|
|
import define from '../../define';
|
|
import { fetchMeta } from '../../../../misc/fetch-meta';
|
|
import { ApiError } from '../../error';
|
|
import { ID } from '../../../../misc/cafy-id';
|
|
import { User } from '../../../../models/entities/user';
|
|
import { Users, DriveFiles, Notes, Channels } from '../../../../models';
|
|
import { DriveFile } from '../../../../models/entities/drive-file';
|
|
import { Note } from '../../../../models/entities/note';
|
|
import { DB_MAX_NOTE_TEXT_LENGTH } from '../../../../misc/hard-limits';
|
|
import { noteVisibilities } from '../../../../types';
|
|
import { Channel } from '../../../../models/entities/channel';
|
|
|
|
let maxNoteTextLength = 500;
|
|
|
|
setInterval(() => {
|
|
fetchMeta().then(m => {
|
|
maxNoteTextLength = m.maxNoteTextLength;
|
|
});
|
|
}, 3000);
|
|
|
|
export const meta = {
|
|
desc: {
|
|
'ja-JP': '投稿します。'
|
|
},
|
|
|
|
tags: ['notes'],
|
|
|
|
requireCredential: true as const,
|
|
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 300
|
|
},
|
|
|
|
kind: 'write:notes',
|
|
|
|
params: {
|
|
visibility: {
|
|
validator: $.optional.str.or(noteVisibilities as unknown as string[]),
|
|
default: 'public',
|
|
desc: {
|
|
'ja-JP': '投稿の公開範囲'
|
|
}
|
|
},
|
|
|
|
visibleUserIds: {
|
|
validator: $.optional.arr($.type(ID)).unique().min(0),
|
|
desc: {
|
|
'ja-JP': '(投稿の公開範囲が specified の場合)投稿を閲覧できるユーザー'
|
|
}
|
|
},
|
|
|
|
text: {
|
|
validator: $.optional.nullable.str.pipe(text =>
|
|
text.trim() != ''
|
|
&& length(text.trim()) <= maxNoteTextLength
|
|
&& Array.from(text.trim()).length <= DB_MAX_NOTE_TEXT_LENGTH // DB limit
|
|
),
|
|
default: null as any,
|
|
desc: {
|
|
'ja-JP': '投稿内容'
|
|
}
|
|
},
|
|
|
|
cw: {
|
|
validator: $.optional.nullable.str.pipe(Notes.validateCw),
|
|
desc: {
|
|
'ja-JP': 'コンテンツの警告。このパラメータを指定すると設定したテキストで投稿のコンテンツを隠す事が出来ます。'
|
|
}
|
|
},
|
|
|
|
viaMobile: {
|
|
validator: $.optional.bool,
|
|
default: false,
|
|
desc: {
|
|
'ja-JP': 'モバイルデバイスからの投稿か否か。'
|
|
}
|
|
},
|
|
|
|
localOnly: {
|
|
validator: $.optional.bool,
|
|
default: false,
|
|
desc: {
|
|
'ja-JP': 'ローカルのみに投稿か否か。'
|
|
}
|
|
},
|
|
|
|
noExtractMentions: {
|
|
validator: $.optional.bool,
|
|
default: false,
|
|
desc: {
|
|
'ja-JP': '本文からメンションを展開しないか否か。'
|
|
}
|
|
},
|
|
|
|
noExtractHashtags: {
|
|
validator: $.optional.bool,
|
|
default: false,
|
|
desc: {
|
|
'ja-JP': '本文からハッシュタグを展開しないか否か。'
|
|
}
|
|
},
|
|
|
|
noExtractEmojis: {
|
|
validator: $.optional.bool,
|
|
default: false,
|
|
desc: {
|
|
'ja-JP': '本文からカスタム絵文字を展開しないか否か。'
|
|
}
|
|
},
|
|
|
|
fileIds: {
|
|
validator: $.optional.arr($.type(ID)).unique().range(1, 4),
|
|
desc: {
|
|
'ja-JP': '添付するファイル'
|
|
}
|
|
},
|
|
|
|
mediaIds: {
|
|
validator: $.optional.arr($.type(ID)).unique().range(1, 4),
|
|
deprecated: true,
|
|
desc: {
|
|
'ja-JP': '添付するファイル (このパラメータは廃止予定です。代わりに fileIds を使ってください。)'
|
|
}
|
|
},
|
|
|
|
replyId: {
|
|
validator: $.optional.nullable.type(ID),
|
|
desc: {
|
|
'ja-JP': '返信対象'
|
|
}
|
|
},
|
|
|
|
renoteId: {
|
|
validator: $.optional.nullable.type(ID),
|
|
desc: {
|
|
'ja-JP': 'Renote対象'
|
|
}
|
|
},
|
|
|
|
channelId: {
|
|
validator: $.optional.nullable.type(ID),
|
|
desc: {
|
|
'ja-JP': 'チャンネル'
|
|
}
|
|
},
|
|
|
|
poll: {
|
|
validator: $.optional.nullable.obj({
|
|
choices: $.arr($.str)
|
|
.unique()
|
|
.range(2, 10)
|
|
.each(c => c.length > 0 && c.length < 50),
|
|
multiple: $.optional.bool,
|
|
expiresAt: $.optional.nullable.num.int(),
|
|
expiredAfter: $.optional.nullable.num.int().min(1)
|
|
}).strict(),
|
|
desc: {
|
|
'ja-JP': 'アンケート'
|
|
},
|
|
ref: 'poll'
|
|
}
|
|
},
|
|
|
|
res: {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
properties: {
|
|
createdNote: {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
ref: 'Note',
|
|
description: '作成した投稿'
|
|
}
|
|
}
|
|
},
|
|
|
|
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'
|
|
},
|
|
|
|
cannotCreateAlreadyExpiredPoll: {
|
|
message: 'Poll is already expired.',
|
|
code: 'CANNOT_CREATE_ALREADY_EXPIRED_POLL',
|
|
id: '04da457d-b083-4055-9082-955525eda5a5'
|
|
},
|
|
|
|
noSuchChannel: {
|
|
message: 'No such channel.',
|
|
code: 'NO_SUCH_CHANNEL',
|
|
id: 'b1653923-5453-4edc-b786-7c4f39bb0bbb'
|
|
},
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
let visibleUsers: User[] = [];
|
|
if (ps.visibleUserIds) {
|
|
visibleUsers = (await Promise.all(ps.visibleUserIds.map(id => Users.findOne(id))))
|
|
.filter(x => x != null) as User[];
|
|
}
|
|
|
|
let files: DriveFile[] = [];
|
|
const fileIds = ps.fileIds != null ? ps.fileIds : ps.mediaIds != null ? ps.mediaIds : null;
|
|
if (fileIds != null) {
|
|
files = (await Promise.all(fileIds.map(fileId =>
|
|
DriveFiles.findOne({
|
|
id: fileId,
|
|
userId: user.id
|
|
})
|
|
))).filter(file => file != null) as DriveFile[];
|
|
}
|
|
|
|
let renote: Note | undefined;
|
|
if (ps.renoteId != null) {
|
|
// Fetch renote to note
|
|
renote = await Notes.findOne(ps.renoteId);
|
|
|
|
if (renote == null) {
|
|
throw new ApiError(meta.errors.noSuchRenoteTarget);
|
|
} else if (renote.renoteId && !renote.text && !renote.fileIds) {
|
|
throw new ApiError(meta.errors.cannotReRenote);
|
|
}
|
|
}
|
|
|
|
let reply: Note | undefined;
|
|
if (ps.replyId != null) {
|
|
// Fetch reply
|
|
reply = await Notes.findOne(ps.replyId);
|
|
|
|
if (reply == null) {
|
|
throw new ApiError(meta.errors.noSuchReplyTarget);
|
|
}
|
|
|
|
// 返信対象が引用でないRenoteだったらエラー
|
|
if (reply.renoteId && !reply.text && !reply.fileIds) {
|
|
throw new ApiError(meta.errors.cannotReplyToPureRenote);
|
|
}
|
|
}
|
|
|
|
if (ps.poll) {
|
|
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;
|
|
}
|
|
}
|
|
|
|
// テキストが無いかつ添付ファイルが無いかつRenoteも無いかつ投票も無かったらエラー
|
|
if (!(ps.text || files.length || renote || ps.poll)) {
|
|
throw new ApiError(meta.errors.contentRequired);
|
|
}
|
|
|
|
let channel: Channel | undefined;
|
|
if (ps.channelId != null) {
|
|
channel = await Channels.findOne(ps.channelId);
|
|
|
|
if (channel == null) {
|
|
throw new ApiError(meta.errors.noSuchChannel);
|
|
}
|
|
}
|
|
|
|
// 投稿を作成
|
|
const note = await create(user, {
|
|
createdAt: new Date(),
|
|
files: files,
|
|
poll: ps.poll ? {
|
|
choices: ps.poll.choices,
|
|
multiple: ps.poll.multiple || false,
|
|
expiresAt: ps.poll.expiresAt ? new Date(ps.poll.expiresAt) : null
|
|
} : undefined,
|
|
text: ps.text || undefined,
|
|
reply,
|
|
renote,
|
|
cw: ps.cw,
|
|
viaMobile: ps.viaMobile,
|
|
localOnly: ps.localOnly,
|
|
visibility: ps.visibility,
|
|
visibleUsers,
|
|
channel,
|
|
apMentions: ps.noExtractMentions ? [] : undefined,
|
|
apHashtags: ps.noExtractHashtags ? [] : undefined,
|
|
apEmojis: ps.noExtractEmojis ? [] : undefined,
|
|
});
|
|
|
|
return {
|
|
createdNote: await Notes.pack(note, user)
|
|
};
|
|
});
|