jormungandr-bite/src/server/api/endpoints/notes/timeline.ts

212 lines
4.9 KiB
TypeScript
Raw Normal View History

2018-07-07 04:19:00 -06:00
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
2018-04-07 11:30:37 -06:00
import Note from '../../../../models/note';
2018-03-29 05:32:18 -06:00
import Mute from '../../../../models/mute';
2018-04-18 21:43:25 -06:00
import { getFriends } from '../../common/get-friends';
2018-04-07 11:30:37 -06:00
import { pack } from '../../../../models/note';
2018-06-17 18:54:53 -06:00
import { ILocalUser } from '../../../../models/user';
2018-07-06 05:40:44 -06:00
import getParams from '../../get-params';
2016-12-28 15:49:51 -07:00
2018-07-06 05:40:44 -06:00
export const meta = {
desc: {
ja: 'タイムラインを取得します。'
},
2016-12-28 15:49:51 -07:00
2018-07-15 15:58:45 -06:00
requireCredential: true,
2018-07-06 05:40:44 -06:00
params: {
limit: $.num.optional.range(1, 100).note({
default: 10,
desc: {
ja: '最大数'
}
}),
2016-12-28 15:49:51 -07:00
2018-07-06 05:40:44 -06:00
sinceId: $.type(ID).optional.note({
desc: {
ja: '指定すると、この投稿を基点としてより新しい投稿を取得します'
}
}),
2017-11-10 18:58:13 -07:00
2018-07-06 05:40:44 -06:00
untilId: $.type(ID).optional.note({
desc: {
ja: '指定すると、この投稿を基点としてより古い投稿を取得します'
}
}),
2017-11-10 18:58:13 -07:00
2018-07-06 05:40:44 -06:00
sinceDate: $.num.optional.note({
desc: {
2018-07-06 08:19:41 -06:00
ja: '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
2018-07-06 05:40:44 -06:00
}
}),
2016-12-28 15:49:51 -07:00
2018-07-06 05:40:44 -06:00
untilDate: $.num.optional.note({
desc: {
2018-07-06 08:19:41 -06:00
ja: '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
2018-07-06 05:40:44 -06:00
}
}),
2018-04-20 20:42:38 -06:00
2018-07-06 05:40:44 -06:00
includeMyRenotes: $.bool.optional.note({
default: true,
desc: {
ja: '自分の行ったRenoteを含めるかどうか'
}
}),
2018-04-20 20:42:38 -06:00
2018-07-06 05:40:44 -06:00
includeRenotedMyNotes: $.bool.optional.note({
default: true,
desc: {
ja: 'Renoteされた自分の投稿を含めるかどうか'
}
}),
mediaOnly: $.bool.optional.note({
desc: {
ja: 'true にすると、メディアが添付された投稿だけ取得します'
}
}),
}
};
/**
* Get timeline of myself
*/
export default async (params: any, user: ILocalUser) => {
const [ps, psErr] = getParams(meta, params);
if (psErr) throw psErr;
// Check if only one of sinceId, untilId, sinceDate, untilDate specified
if ([ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate].filter(x => x != null).length > 1) {
throw 'only one of sinceId, untilId, sinceDate, untilDate can be specified';
}
2018-06-06 15:13:57 -06:00
2018-05-18 16:33:34 -06:00
const [followings, mutedUserIds] = await Promise.all([
2018-04-18 21:43:25 -06:00
// フォローを取得
// Fetch following
getFriends(user._id),
2017-12-21 14:03:54 -07:00
// ミュートしているユーザーを取得
2018-04-18 21:43:25 -06:00
Mute.find({
muterId: user._id
2018-03-28 23:48:47 -06:00
}).then(ms => ms.map(m => m.muteeId))
2018-04-18 21:43:25 -06:00
]);
2017-11-01 04:33:08 -06:00
//#region Construct query
2016-12-28 15:49:51 -07:00
const sort = {
_id: -1
};
2017-11-01 04:33:08 -06:00
2018-04-18 21:43:25 -06:00
const followQuery = followings.map(f => f.stalk ? {
userId: f.id
} : {
userId: f.id,
// ストーキングしてないならリプライは含めない(ただし投稿者自身の投稿へのリプライ、自分の投稿へのリプライ、自分のリプライは含める)
$or: [{
// リプライでない
replyId: null
}, { // または
// リプライだが返信先が投稿者自身の投稿
$expr: {
2018-04-18 22:06:12 -06:00
$eq: ['$_reply.userId', '$userId']
2018-04-18 21:43:25 -06:00
}
}, { // または
// リプライだが返信先が自分(フォロワー)の投稿
'_reply.userId': user._id
}, { // または
// 自分(フォロワー)が送信したリプライ
userId: user._id
}]
});
2016-12-28 15:49:51 -07:00
const query = {
2018-04-20 20:42:38 -06:00
$and: [{
2018-05-18 16:33:34 -06:00
// フォローしている人の投稿
$or: followQuery,
2018-04-20 20:42:38 -06:00
// mute
userId: {
$nin: mutedUserIds
},
'_reply.userId': {
$nin: mutedUserIds
},
'_renote.userId': {
$nin: mutedUserIds
},
}]
2017-03-02 14:48:26 -07:00
} as any;
2017-11-01 04:33:08 -06:00
2018-04-20 20:42:38 -06:00
// MongoDBではトップレベルで否定ができないため、De Morganの法則を利用してクエリします。
// つまり、「『自分の投稿かつRenote』ではない」を「『自分の投稿ではない』または『Renoteではない』」と表現します。
// for details: https://en.wikipedia.org/wiki/De_Morgan%27s_laws
2018-07-06 05:40:44 -06:00
if (ps.includeMyRenotes === false) {
2018-04-20 20:42:38 -06:00
query.$and.push({
$or: [{
userId: { $ne: user._id }
}, {
renoteId: null
}, {
text: { $ne: null }
}, {
mediaIds: { $ne: [] }
}, {
poll: { $ne: null }
}]
});
}
2018-07-06 05:40:44 -06:00
if (ps.includeRenotedMyNotes === false) {
2018-04-20 20:42:38 -06:00
query.$and.push({
$or: [{
'_renote.userId': { $ne: user._id }
}, {
renoteId: null
}, {
text: { $ne: null }
}, {
mediaIds: { $ne: [] }
}, {
poll: { $ne: null }
}]
});
}
2018-07-06 05:40:44 -06:00
if (ps.mediaOnly) {
2018-06-06 15:13:57 -06:00
query.$and.push({
mediaIds: { $exists: true, $ne: [] }
});
}
2018-07-06 05:40:44 -06:00
if (ps.sinceId) {
2016-12-28 15:49:51 -07:00
sort._id = 1;
query._id = {
2018-07-06 05:40:44 -06:00
$gt: ps.sinceId
2016-12-28 15:49:51 -07:00
};
2018-07-06 05:40:44 -06:00
} else if (ps.untilId) {
2016-12-28 15:49:51 -07:00
query._id = {
2018-07-06 05:40:44 -06:00
$lt: ps.untilId
2016-12-28 15:49:51 -07:00
};
2018-07-06 05:40:44 -06:00
} else if (ps.sinceDate) {
2017-11-10 18:58:13 -07:00
sort._id = 1;
2018-03-28 23:48:47 -06:00
query.createdAt = {
2018-07-06 05:40:44 -06:00
$gt: new Date(ps.sinceDate)
2017-11-10 18:58:13 -07:00
};
2018-07-06 05:40:44 -06:00
} else if (ps.untilDate) {
2018-03-28 23:48:47 -06:00
query.createdAt = {
2018-07-06 05:40:44 -06:00
$lt: new Date(ps.untilDate)
2017-11-10 18:58:13 -07:00
};
2016-12-28 15:49:51 -07:00
}
2017-11-01 04:33:08 -06:00
//#endregion
2016-12-28 15:49:51 -07:00
// Issue query
2018-04-07 11:30:37 -06:00
const timeline = await Note
2017-01-16 19:11:22 -07:00
.find(query, {
2018-07-06 05:40:44 -06:00
limit: ps.limit,
2016-12-28 15:49:51 -07:00
sort: sort
2017-01-16 19:11:22 -07:00
});
2016-12-28 15:49:51 -07:00
// Serialize
2018-04-07 11:30:37 -06:00
return await Promise.all(timeline.map(note => pack(note, user)));
};