2018-04-07 19:30:37 +02:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-04-07 19:30:37 +02:00
|
|
|
import Note, { INote, isValidText, isValidCw, pack } from '../../../../models/note';
|
2018-04-28 21:30:51 +02:00
|
|
|
import User, { ILocalUser } from '../../../../models/user';
|
2018-04-07 19:30:37 +02:00
|
|
|
import DriveFile from '../../../../models/drive-file';
|
|
|
|
import create from '../../../../services/note/create';
|
|
|
|
import { IApp } from '../../../../models/app';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a note
|
|
|
|
*/
|
|
|
|
module.exports = (params, user: ILocalUser, app: IApp) => new Promise(async (res, rej) => {
|
|
|
|
// Get 'visibility' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [visibility = 'public', visibilityErr] = $.str.optional().or(['public', 'home', 'followers', 'specified', 'private']).get(params.visibility);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (visibilityErr) return rej('invalid visibility');
|
|
|
|
|
2018-04-28 21:30:51 +02:00
|
|
|
// Get 'visibleUserIds' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [visibleUserIds, visibleUserIdsErr] = $.arr($.type(ID)).optional().unique().min(1).get(params.visibleUserIds);
|
2018-04-28 21:30:51 +02:00
|
|
|
if (visibleUserIdsErr) return rej('invalid visibleUserIds');
|
|
|
|
|
|
|
|
let visibleUsers = [];
|
|
|
|
if (visibleUserIds !== undefined) {
|
|
|
|
visibleUsers = await Promise.all(visibleUserIds.map(id => User.findOne({
|
|
|
|
_id: id
|
|
|
|
})));
|
|
|
|
}
|
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
// Get 'text' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [text = null, textErr] = $.str.optional().nullable().pipe(isValidText).get(params.text);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (textErr) return rej('invalid text');
|
|
|
|
|
|
|
|
// Get 'cw' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [cw, cwErr] = $.str.optional().nullable().pipe(isValidCw).get(params.cw);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (cwErr) return rej('invalid cw');
|
|
|
|
|
|
|
|
// Get 'viaMobile' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [viaMobile = false, viaMobileErr] = $.bool.optional().get(params.viaMobile);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (viaMobileErr) return rej('invalid viaMobile');
|
|
|
|
|
|
|
|
// Get 'tags' parameter
|
2018-05-03 12:49:04 +02:00
|
|
|
const [tags = [], tagsErr] = $.arr($.str.range(1, 32)).optional().unique().get(params.tags);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (tagsErr) return rej('invalid tags');
|
|
|
|
|
|
|
|
// Get 'geo' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [geo, geoErr] = $.obj.optional().nullable().strict()
|
|
|
|
.have('coordinates', $.arr().length(2)
|
|
|
|
.item(0, $.num.range(-180, 180))
|
|
|
|
.item(1, $.num.range(-90, 90)))
|
|
|
|
.have('altitude', $.num.nullable())
|
|
|
|
.have('accuracy', $.num.nullable())
|
|
|
|
.have('altitudeAccuracy', $.num.nullable())
|
|
|
|
.have('heading', $.num.nullable().range(0, 360))
|
|
|
|
.have('speed', $.num.nullable())
|
|
|
|
.get(params.geo);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (geoErr) return rej('invalid geo');
|
|
|
|
|
|
|
|
// Get 'mediaIds' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [mediaIds, mediaIdsErr] = $.arr($.type(ID)).optional().unique().range(1, 4).get(params.mediaIds);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (mediaIdsErr) return rej('invalid mediaIds');
|
|
|
|
|
|
|
|
let files = [];
|
|
|
|
if (mediaIds !== undefined) {
|
|
|
|
// Fetch files
|
|
|
|
// forEach だと途中でエラーなどがあっても return できないので
|
|
|
|
// 敢えて for を使っています。
|
|
|
|
for (const mediaId of mediaIds) {
|
|
|
|
// Fetch file
|
|
|
|
// SELECT _id
|
|
|
|
const entity = await DriveFile.findOne({
|
|
|
|
_id: mediaId,
|
|
|
|
'metadata.userId': user._id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (entity === null) {
|
|
|
|
return rej('file not found');
|
|
|
|
} else {
|
|
|
|
files.push(entity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
files = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get 'renoteId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [renoteId, renoteIdErr] = $.type(ID).optional().get(params.renoteId);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (renoteIdErr) return rej('invalid renoteId');
|
|
|
|
|
|
|
|
let renote: INote = null;
|
|
|
|
if (renoteId !== undefined) {
|
|
|
|
// Fetch renote to note
|
|
|
|
renote = await Note.findOne({
|
|
|
|
_id: renoteId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (renote == null) {
|
|
|
|
return rej('renoteee is not found');
|
|
|
|
} else if (renote.renoteId && !renote.text && !renote.mediaIds) {
|
|
|
|
return rej('cannot renote to renote');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get 'replyId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [replyId, replyIdErr] = $.type(ID).optional().get(params.replyId);
|
2018-04-07 19:30:37 +02: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だったらエラー
|
|
|
|
if (reply.renoteId && !reply.text && !reply.mediaIds) {
|
|
|
|
return rej('cannot reply to renote');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get 'poll' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [poll, pollErr] = $.obj.optional().strict()
|
|
|
|
.have('choices', $.arr($.str)
|
2018-04-07 19:30:37 +02:00
|
|
|
.unique()
|
|
|
|
.range(2, 10)
|
|
|
|
.each(c => c.length > 0 && c.length < 50))
|
2018-05-02 11:06:16 +02:00
|
|
|
.get(params.poll);
|
2018-04-07 19:30:37 +02:00
|
|
|
if (pollErr) return rej('invalid poll');
|
|
|
|
|
|
|
|
if (poll) {
|
|
|
|
(poll as any).choices = (poll as any).choices.map((choice, i) => ({
|
|
|
|
id: i, // IDを付与
|
|
|
|
text: choice.trim(),
|
|
|
|
votes: 0
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
// テキストが無いかつ添付ファイルが無いかつRenoteも無いかつ投票も無かったらエラー
|
2018-06-08 15:00:18 +02:00
|
|
|
if ((text === undefined or text === null) && files === null && renote === null && poll === undefined) {
|
2018-04-07 19:30:37 +02:00
|
|
|
return rej('text, mediaIds, renoteId or poll is required');
|
|
|
|
}
|
|
|
|
|
|
|
|
// 投稿を作成
|
|
|
|
const note = await create(user, {
|
|
|
|
createdAt: new Date(),
|
|
|
|
media: files,
|
2018-04-22 10:04:52 +02:00
|
|
|
poll,
|
|
|
|
text,
|
2018-04-07 19:30:37 +02:00
|
|
|
reply,
|
|
|
|
renote,
|
2018-04-22 10:04:52 +02:00
|
|
|
cw,
|
|
|
|
tags,
|
|
|
|
app,
|
|
|
|
viaMobile,
|
2018-04-07 19:30:37 +02:00
|
|
|
visibility,
|
2018-04-28 21:30:51 +02:00
|
|
|
visibleUsers,
|
2018-04-07 19:30:37 +02:00
|
|
|
geo
|
|
|
|
});
|
|
|
|
|
|
|
|
const noteObj = await pack(note, user);
|
|
|
|
|
|
|
|
// Reponse
|
|
|
|
res({
|
|
|
|
createdNote: noteObj
|
|
|
|
});
|
|
|
|
});
|