[API] Check post dupulication

This commit is contained in:
syuilo 2017-03-25 15:56:26 +09:00
parent c8479d103f
commit 47269a1782
3 changed files with 26 additions and 0 deletions

View file

@ -2,6 +2,7 @@
* Module dependencies
*/
import $ from 'cafy';
import deepEqual = require('deep-equal');
import parse from '../../common/text';
import Post from '../../models/post';
import { isValidText } from '../../models/post';
@ -142,6 +143,20 @@ module.exports = (params, user, app) => new Promise(async (res, rej) => {
return rej('text, media_ids, repost_id or poll is required');
}
// 直近の投稿と重複してたらエラー
// TODO: 直近の投稿が一日前くらいなら重複とは見なさない
if (user.latest_post) {
if (deepEqual({
text: user.latest_post.text,
media_ids: (user.latest_post.media_ids || []).map(id => id.toString())
}, {
text: text,
media_ids: (files || []).map(file => file._id.toString())
})) {
return rej('duplicate');
}
}
// 投稿を作成
const post = await Post.insert({
created_at: new Date(),
@ -163,6 +178,12 @@ module.exports = (params, user, app) => new Promise(async (res, rej) => {
//--------------------------------
// Post processes
User.update({ _id: user._id }, {
$set: {
latest_post: post
}
});
let mentions = [];
function addMention(mentionee, type) {