2018-04-25 05:53:16 -05:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
|
|
|
import Note from '../../../../models/note';
|
|
|
|
import Mute from '../../../../models/mute';
|
|
|
|
import { pack } from '../../../../models/note';
|
|
|
|
import UserList from '../../../../models/user-list';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get timeline of a user list
|
|
|
|
*/
|
|
|
|
module.exports = async (params, user, app) => {
|
|
|
|
// Get 'limit' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [limit = 10, limitErr] = $.num.optional().range(1, 100).get(params.limit);
|
2018-04-25 05:53:16 -05:00
|
|
|
if (limitErr) throw 'invalid limit param';
|
|
|
|
|
|
|
|
// Get 'sinceId' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [sinceId, sinceIdErr] = $.type(ID).optional().get(params.sinceId);
|
2018-04-25 05:53:16 -05:00
|
|
|
if (sinceIdErr) throw 'invalid sinceId param';
|
|
|
|
|
|
|
|
// Get 'untilId' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [untilId, untilIdErr] = $.type(ID).optional().get(params.untilId);
|
2018-04-25 05:53:16 -05:00
|
|
|
if (untilIdErr) throw 'invalid untilId param';
|
|
|
|
|
|
|
|
// Get 'sinceDate' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [sinceDate, sinceDateErr] = $.num.optional().get(params.sinceDate);
|
2018-04-25 05:53:16 -05:00
|
|
|
if (sinceDateErr) throw 'invalid sinceDate param';
|
|
|
|
|
|
|
|
// Get 'untilDate' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [untilDate, untilDateErr] = $.num.optional().get(params.untilDate);
|
2018-04-25 05:53:16 -05:00
|
|
|
if (untilDateErr) throw 'invalid untilDate param';
|
|
|
|
|
|
|
|
// Check if only one of sinceId, untilId, sinceDate, untilDate specified
|
|
|
|
if ([sinceId, untilId, sinceDate, untilDate].filter(x => x != null).length > 1) {
|
|
|
|
throw 'only one of sinceId, untilId, sinceDate, untilDate can be specified';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get 'includeMyRenotes' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [includeMyRenotes = true, includeMyRenotesErr] = $.bool.optional().get(params.includeMyRenotes);
|
2018-04-25 05:53:16 -05:00
|
|
|
if (includeMyRenotesErr) throw 'invalid includeMyRenotes param';
|
|
|
|
|
|
|
|
// Get 'includeRenotedMyNotes' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [includeRenotedMyNotes = true, includeRenotedMyNotesErr] = $.bool.optional().get(params.includeRenotedMyNotes);
|
2018-04-25 05:53:16 -05:00
|
|
|
if (includeRenotedMyNotesErr) throw 'invalid includeRenotedMyNotes param';
|
|
|
|
|
2018-06-06 16:13:57 -05:00
|
|
|
// Get 'mediaOnly' parameter
|
|
|
|
const [mediaOnly, mediaOnlyErr] = $.bool.optional().get(params.mediaOnly);
|
|
|
|
if (mediaOnlyErr) throw 'invalid mediaOnly param';
|
|
|
|
|
2018-04-25 05:53:16 -05:00
|
|
|
// Get 'listId' parameter
|
2018-05-02 04:06:16 -05:00
|
|
|
const [listId, listIdErr] = $.type(ID).get(params.listId);
|
2018-04-25 05:53:16 -05:00
|
|
|
if (listIdErr) throw 'invalid listId param';
|
|
|
|
|
|
|
|
const [list, mutedUserIds] = await Promise.all([
|
|
|
|
// リストを取得
|
|
|
|
// Fetch the list
|
|
|
|
UserList.findOne({
|
|
|
|
_id: listId,
|
|
|
|
userId: user._id
|
|
|
|
}),
|
|
|
|
|
|
|
|
// ミュートしているユーザーを取得
|
|
|
|
Mute.find({
|
|
|
|
muterId: user._id
|
|
|
|
}).then(ms => ms.map(m => m.muteeId))
|
|
|
|
]);
|
|
|
|
|
|
|
|
if (list.userIds.length == 0) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
//#region Construct query
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
|
|
|
const listQuery = list.userIds.map(u => ({
|
|
|
|
userId: u,
|
|
|
|
|
|
|
|
// リプライは含めない(ただし投稿者自身の投稿へのリプライ、自分の投稿へのリプライ、自分のリプライは含める)
|
|
|
|
$or: [{
|
|
|
|
// リプライでない
|
|
|
|
replyId: null
|
|
|
|
}, { // または
|
|
|
|
// リプライだが返信先が投稿者自身の投稿
|
|
|
|
$expr: {
|
|
|
|
$eq: ['$_reply.userId', '$userId']
|
|
|
|
}
|
|
|
|
}, { // または
|
|
|
|
// リプライだが返信先が自分(フォロワー)の投稿
|
|
|
|
'_reply.userId': user._id
|
|
|
|
}, { // または
|
|
|
|
// 自分(フォロワー)が送信したリプライ
|
|
|
|
userId: user._id
|
|
|
|
}]
|
|
|
|
}));
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
$and: [{
|
|
|
|
// リストに入っている人のタイムラインへの投稿
|
|
|
|
$or: listQuery,
|
|
|
|
|
|
|
|
// mute
|
|
|
|
userId: {
|
|
|
|
$nin: mutedUserIds
|
|
|
|
},
|
|
|
|
'_reply.userId': {
|
|
|
|
$nin: mutedUserIds
|
|
|
|
},
|
|
|
|
'_renote.userId': {
|
|
|
|
$nin: mutedUserIds
|
|
|
|
},
|
|
|
|
}]
|
|
|
|
} as any;
|
|
|
|
|
|
|
|
// 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 16:13:57 -05:00
|
|
|
if (mediaOnly) {
|
|
|
|
query.$and.push({
|
|
|
|
mediaIds: { $exists: true, $ne: [] }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-25 05:53:16 -05:00
|
|
|
if (sinceId) {
|
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
|
|
|
$gt: sinceId
|
|
|
|
};
|
|
|
|
} else if (untilId) {
|
|
|
|
query._id = {
|
|
|
|
$lt: untilId
|
|
|
|
};
|
|
|
|
} else if (sinceDate) {
|
|
|
|
sort._id = 1;
|
|
|
|
query.createdAt = {
|
|
|
|
$gt: new Date(sinceDate)
|
|
|
|
};
|
|
|
|
} else if (untilDate) {
|
|
|
|
query.createdAt = {
|
|
|
|
$lt: new Date(untilDate)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
// Issue query
|
|
|
|
const timeline = await Note
|
|
|
|
.find(query, {
|
|
|
|
limit: limit,
|
|
|
|
sort: sort
|
|
|
|
});
|
|
|
|
|
|
|
|
// Serialize
|
|
|
|
return await Promise.all(timeline.map(note => pack(note, user)));
|
|
|
|
};
|