2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-04-17 07:52:28 +02:00
|
|
|
import Note from '../../../../models/note';
|
|
|
|
import Mute from '../../../../models/mute';
|
|
|
|
import { pack } from '../../../../models/note';
|
2018-06-18 02:54:53 +02:00
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2018-04-17 07:52:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get timeline of local
|
|
|
|
*/
|
2018-06-18 02:54:53 +02:00
|
|
|
module.exports = async (params: any, user: ILocalUser) => {
|
2018-04-17 07:52:28 +02:00
|
|
|
// Get 'limit' parameter
|
2018-07-05 16:36:07 +02:00
|
|
|
const [limit = 10, limitErr] = $.num.optional.range(1, 100).get(params.limit);
|
2018-04-17 07:52:28 +02:00
|
|
|
if (limitErr) throw 'invalid limit param';
|
|
|
|
|
|
|
|
// Get 'sinceId' parameter
|
2018-07-05 16:36:07 +02:00
|
|
|
const [sinceId, sinceIdErr] = $.type(ID).optional.get(params.sinceId);
|
2018-04-17 07:52:28 +02:00
|
|
|
if (sinceIdErr) throw 'invalid sinceId param';
|
|
|
|
|
|
|
|
// Get 'untilId' parameter
|
2018-07-05 16:36:07 +02:00
|
|
|
const [untilId, untilIdErr] = $.type(ID).optional.get(params.untilId);
|
2018-04-17 07:52:28 +02:00
|
|
|
if (untilIdErr) throw 'invalid untilId param';
|
|
|
|
|
|
|
|
// Get 'sinceDate' parameter
|
2018-07-05 16:36:07 +02:00
|
|
|
const [sinceDate, sinceDateErr] = $.num.optional.get(params.sinceDate);
|
2018-04-17 07:52:28 +02:00
|
|
|
if (sinceDateErr) throw 'invalid sinceDate param';
|
|
|
|
|
|
|
|
// Get 'untilDate' parameter
|
2018-07-05 16:36:07 +02:00
|
|
|
const [untilDate, untilDateErr] = $.num.optional.get(params.untilDate);
|
2018-04-17 07:52:28 +02: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';
|
|
|
|
}
|
|
|
|
|
2018-06-06 23:13:57 +02:00
|
|
|
// Get 'mediaOnly' parameter
|
2018-07-05 16:36:07 +02:00
|
|
|
const [mediaOnly, mediaOnlyErr] = $.bool.optional.get(params.mediaOnly);
|
2018-06-06 23:13:57 +02:00
|
|
|
if (mediaOnlyErr) throw 'invalid mediaOnly param';
|
|
|
|
|
2018-04-17 07:52:28 +02:00
|
|
|
// ミュートしているユーザーを取得
|
2018-05-28 14:59:57 +02:00
|
|
|
const mutedUserIds = user ? (await Mute.find({
|
2018-04-17 07:52:28 +02:00
|
|
|
muterId: user._id
|
2018-05-28 14:59:57 +02:00
|
|
|
})).map(m => m.muteeId) : null;
|
2018-04-17 07:52:28 +02:00
|
|
|
|
|
|
|
//#region Construct query
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
|
|
|
const query = {
|
2018-05-28 14:43:21 +02:00
|
|
|
// public only
|
|
|
|
visibility: 'public',
|
|
|
|
|
2018-04-17 07:52:28 +02:00
|
|
|
// local
|
|
|
|
'_user.host': null
|
|
|
|
} as any;
|
|
|
|
|
2018-05-28 14:59:57 +02:00
|
|
|
if (mutedUserIds && mutedUserIds.length > 0) {
|
|
|
|
query.userId = {
|
|
|
|
$nin: mutedUserIds
|
|
|
|
};
|
|
|
|
|
|
|
|
query['_reply.userId'] = {
|
|
|
|
$nin: mutedUserIds
|
|
|
|
};
|
|
|
|
|
|
|
|
query['_renote.userId'] = {
|
|
|
|
$nin: mutedUserIds
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-06-06 23:13:57 +02:00
|
|
|
if (mediaOnly) {
|
|
|
|
query.mediaIds = { $exists: true, $ne: [] };
|
|
|
|
}
|
|
|
|
|
2018-04-17 07:52:28 +02: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)));
|
|
|
|
};
|