2016-12-28 23:49:51 +01: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 from '../../../../models/note';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Mute from '../../../../models/mute';
|
2018-04-19 05:43:25 +02:00
|
|
|
import { getFriends } from '../../common/get-friends';
|
2018-04-07 19:30:37 +02:00
|
|
|
import { pack } from '../../../../models/note';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get timeline of myself
|
|
|
|
*/
|
2017-11-06 07:55:47 +01:00
|
|
|
module.exports = async (params, user, app) => {
|
2016-12-28 23:49:51 +01:00
|
|
|
// Get 'limit' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [limit = 10, limitErr] = $.num.optional().range(1, 100).get(params.limit);
|
2017-11-06 07:55:47 +01:00
|
|
|
if (limitErr) throw 'invalid limit param';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'sinceId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [sinceId, sinceIdErr] = $.type(ID).optional().get(params.sinceId);
|
2018-03-29 07:48:47 +02:00
|
|
|
if (sinceIdErr) throw 'invalid sinceId param';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'untilId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [untilId, untilIdErr] = $.type(ID).optional().get(params.untilId);
|
2018-03-29 07:48:47 +02:00
|
|
|
if (untilIdErr) throw 'invalid untilId param';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'sinceDate' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [sinceDate, sinceDateErr] = $.num.optional().get(params.sinceDate);
|
2018-03-29 07:48:47 +02:00
|
|
|
if (sinceDateErr) throw 'invalid sinceDate param';
|
2017-11-11 02:58:13 +01:00
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'untilDate' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [untilDate, untilDateErr] = $.num.optional().get(params.untilDate);
|
2018-03-29 07:48:47 +02:00
|
|
|
if (untilDateErr) throw 'invalid untilDate param';
|
2017-11-11 02:58:13 +01:00
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Check if only one of sinceId, untilId, sinceDate, untilDate specified
|
2017-12-20 18:20:02 +01:00
|
|
|
if ([sinceId, untilId, sinceDate, untilDate].filter(x => x != null).length > 1) {
|
2018-03-29 07:48:47 +02:00
|
|
|
throw 'only one of sinceId, untilId, sinceDate, untilDate can be specified';
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-04-21 04:42:38 +02:00
|
|
|
// Get 'includeMyRenotes' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [includeMyRenotes = true, includeMyRenotesErr] = $.bool.optional().get(params.includeMyRenotes);
|
2018-04-21 04:42:38 +02:00
|
|
|
if (includeMyRenotesErr) throw 'invalid includeMyRenotes param';
|
|
|
|
|
|
|
|
// Get 'includeRenotedMyNotes' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [includeRenotedMyNotes = true, includeRenotedMyNotesErr] = $.bool.optional().get(params.includeRenotedMyNotes);
|
2018-04-21 04:42:38 +02:00
|
|
|
if (includeRenotedMyNotesErr) throw 'invalid includeRenotedMyNotes param';
|
|
|
|
|
2018-06-06 23:13:57 +02:00
|
|
|
// Get 'mediaOnly' parameter
|
|
|
|
const [mediaOnly, mediaOnlyErr] = $.bool.optional().get(params.mediaOnly);
|
|
|
|
if (mediaOnlyErr) throw 'invalid mediaOnly param';
|
|
|
|
|
2018-05-19 00:33:34 +02:00
|
|
|
const [followings, mutedUserIds] = await Promise.all([
|
2018-04-19 05:43:25 +02:00
|
|
|
// フォローを取得
|
|
|
|
// Fetch following
|
|
|
|
getFriends(user._id),
|
2017-12-21 22:03:54 +01:00
|
|
|
|
|
|
|
// ミュートしているユーザーを取得
|
2018-04-19 05:43:25 +02:00
|
|
|
Mute.find({
|
2018-04-17 07:52:28 +02:00
|
|
|
muterId: user._id
|
2018-03-29 07:48:47 +02:00
|
|
|
}).then(ms => ms.map(m => m.muteeId))
|
2018-04-19 05:43:25 +02:00
|
|
|
]);
|
2017-11-01 11:33:08 +01:00
|
|
|
|
|
|
|
//#region Construct query
|
2016-12-28 23:49:51 +01:00
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
2017-11-01 11:33:08 +01:00
|
|
|
|
2018-04-19 05:43:25 +02:00
|
|
|
const followQuery = followings.map(f => f.stalk ? {
|
|
|
|
userId: f.id
|
|
|
|
} : {
|
|
|
|
userId: f.id,
|
|
|
|
|
|
|
|
// ストーキングしてないならリプライは含めない(ただし投稿者自身の投稿へのリプライ、自分の投稿へのリプライ、自分のリプライは含める)
|
|
|
|
$or: [{
|
|
|
|
// リプライでない
|
|
|
|
replyId: null
|
|
|
|
}, { // または
|
|
|
|
// リプライだが返信先が投稿者自身の投稿
|
|
|
|
$expr: {
|
2018-04-19 06:06:12 +02:00
|
|
|
$eq: ['$_reply.userId', '$userId']
|
2018-04-19 05:43:25 +02:00
|
|
|
}
|
|
|
|
}, { // または
|
|
|
|
// リプライだが返信先が自分(フォロワー)の投稿
|
|
|
|
'_reply.userId': user._id
|
|
|
|
}, { // または
|
|
|
|
// 自分(フォロワー)が送信したリプライ
|
|
|
|
userId: user._id
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
const query = {
|
2018-04-21 04:42:38 +02:00
|
|
|
$and: [{
|
2018-05-19 00:33:34 +02:00
|
|
|
// フォローしている人の投稿
|
|
|
|
$or: followQuery,
|
|
|
|
|
2018-04-21 04:42:38 +02:00
|
|
|
// mute
|
|
|
|
userId: {
|
|
|
|
$nin: mutedUserIds
|
|
|
|
},
|
|
|
|
'_reply.userId': {
|
|
|
|
$nin: mutedUserIds
|
|
|
|
},
|
|
|
|
'_renote.userId': {
|
|
|
|
$nin: mutedUserIds
|
|
|
|
},
|
|
|
|
}]
|
2017-03-02 22:48:26 +01:00
|
|
|
} as any;
|
2017-11-01 11:33:08 +01:00
|
|
|
|
2018-04-21 04:42:38 +02:00
|
|
|
// MongoDBではトップレベルで否定ができないため、De Morganの法則を利用してクエリします。
|
|
|
|
// つまり、「『自分の投稿かつRenote』ではない」を「『自分の投稿ではない』または『Renoteではない』」と表現します。
|
|
|
|
// for details: https://en.wikipedia.org/wiki/De_Morgan%27s_laws
|
|
|
|
|
|
|
|
if (includeMyRenotes === false) {
|
|
|
|
query.$and.push({
|
|
|
|
$or: [{
|
|
|
|
userId: { $ne: user._id }
|
|
|
|
}, {
|
|
|
|
renoteId: null
|
|
|
|
}, {
|
|
|
|
text: { $ne: null }
|
|
|
|
}, {
|
|
|
|
mediaIds: { $ne: [] }
|
|
|
|
}, {
|
|
|
|
poll: { $ne: null }
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (includeRenotedMyNotes === false) {
|
|
|
|
query.$and.push({
|
|
|
|
$or: [{
|
|
|
|
'_renote.userId': { $ne: user._id }
|
|
|
|
}, {
|
|
|
|
renoteId: null
|
|
|
|
}, {
|
|
|
|
text: { $ne: null }
|
|
|
|
}, {
|
|
|
|
mediaIds: { $ne: [] }
|
|
|
|
}, {
|
|
|
|
poll: { $ne: null }
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-06 23:13:57 +02:00
|
|
|
if (mediaOnly) {
|
|
|
|
query.$and.push({
|
|
|
|
mediaIds: { $exists: true, $ne: [] }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-02 22:48:26 +01:00
|
|
|
if (sinceId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2017-03-02 22:48:26 +01:00
|
|
|
$gt: sinceId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
2017-12-20 18:20:02 +01:00
|
|
|
} else if (untilId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
query._id = {
|
2017-12-20 18:20:02 +01:00
|
|
|
$lt: untilId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
2017-11-11 02:58:13 +01:00
|
|
|
} else if (sinceDate) {
|
|
|
|
sort._id = 1;
|
2018-03-29 07:48:47 +02:00
|
|
|
query.createdAt = {
|
2017-11-11 02:58:13 +01:00
|
|
|
$gt: new Date(sinceDate)
|
|
|
|
};
|
2017-12-20 18:20:02 +01:00
|
|
|
} else if (untilDate) {
|
2018-03-29 07:48:47 +02:00
|
|
|
query.createdAt = {
|
2017-12-20 18:20:02 +01:00
|
|
|
$lt: new Date(untilDate)
|
2017-11-11 02:58:13 +01:00
|
|
|
};
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
2017-11-01 11:33:08 +01:00
|
|
|
//#endregion
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Issue query
|
2018-04-07 19:30:37 +02:00
|
|
|
const timeline = await Note
|
2017-01-17 03:11:22 +01:00
|
|
|
.find(query, {
|
2016-12-28 23:49:51 +01:00
|
|
|
limit: limit,
|
|
|
|
sort: sort
|
2017-01-17 03:11:22 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Serialize
|
2018-04-07 19:30:37 +02:00
|
|
|
return await Promise.all(timeline.map(note => pack(note, user)));
|
2017-11-06 07:55:47 +01:00
|
|
|
};
|