Sharkey/src/server/api/endpoints/notes/hybrid-timeline.ts

280 lines
6.4 KiB
TypeScript
Raw Normal View History

2018-11-01 20:32:24 +02:00
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
2018-07-11 08:03:21 +03:00
import Note from '../../../../models/note';
import Mute from '../../../../models/mute';
import { getFriends } from '../../common/get-friends';
import { packMany } from '../../../../models/note';
2018-11-02 06:47:44 +02:00
import define from '../../define';
2018-09-05 20:16:08 +03:00
import { countIf } from '../../../../prelude/array';
import fetchMeta from '../../../../misc/fetch-meta';
import activeUsersChart from '../../../../chart/active-users';
2018-07-11 08:03:21 +03:00
export const meta = {
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'ハイブリッドタイムラインを取得します。'
2018-07-11 08:03:21 +03:00
},
params: {
2018-11-01 20:32:24 +02:00
limit: {
validator: $.num.optional.range(1, 100),
2018-07-11 08:03:21 +03:00
default: 10,
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '最大数'
2018-07-11 08:03:21 +03:00
}
2018-11-01 20:32:24 +02:00
},
2018-07-11 08:03:21 +03:00
2018-11-01 20:32:24 +02:00
sinceId: {
validator: $.type(ID).optional,
transform: transform,
2018-07-11 08:03:21 +03:00
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '指定すると、この投稿を基点としてより新しい投稿を取得します'
2018-07-11 08:03:21 +03:00
}
2018-11-01 20:32:24 +02:00
},
2018-07-11 08:03:21 +03:00
2018-11-01 20:32:24 +02:00
untilId: {
validator: $.type(ID).optional,
transform: transform,
2018-07-11 08:03:21 +03:00
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '指定すると、この投稿を基点としてより古い投稿を取得します'
2018-07-11 08:03:21 +03:00
}
2018-11-01 20:32:24 +02:00
},
2018-07-11 08:03:21 +03:00
2018-11-01 20:32:24 +02:00
sinceDate: {
validator: $.num.optional,
2018-07-11 08:03:21 +03:00
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
2018-07-11 08:03:21 +03:00
}
2018-11-01 20:32:24 +02:00
},
2018-07-11 08:03:21 +03:00
2018-11-01 20:32:24 +02:00
untilDate: {
validator: $.num.optional,
2018-07-11 08:03:21 +03:00
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
2018-07-11 08:03:21 +03:00
}
2018-11-01 20:32:24 +02:00
},
2018-07-11 08:03:21 +03:00
2018-11-01 20:32:24 +02:00
includeMyRenotes: {
validator: $.bool.optional,
2018-07-11 08:03:21 +03:00
default: true,
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': '自分の行ったRenoteを含めるかどうか'
2018-07-11 08:03:21 +03:00
}
2018-11-01 20:32:24 +02:00
},
2018-07-11 08:03:21 +03:00
2018-11-01 20:32:24 +02:00
includeRenotedMyNotes: {
validator: $.bool.optional,
2018-07-11 08:03:21 +03:00
default: true,
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'Renoteされた自分の投稿を含めるかどうか'
2018-07-11 08:03:21 +03:00
}
2018-11-01 20:32:24 +02:00
},
2018-07-11 08:03:21 +03:00
2018-11-01 20:32:24 +02:00
includeLocalRenotes: {
validator: $.bool.optional,
2018-08-16 17:59:22 +03:00
default: true,
desc: {
2018-08-29 00:59:43 +03:00
'ja-JP': 'Renoteされたローカルの投稿を含めるかどうか'
2018-08-16 17:59:22 +03:00
}
2018-11-01 20:32:24 +02:00
},
2018-08-16 17:59:22 +03:00
2018-11-01 20:32:24 +02:00
withFiles: {
validator: $.bool.optional,
2018-07-11 08:03:21 +03:00
desc: {
'ja-JP': 'true にすると、ファイルが添付された投稿だけ取得します'
}
2018-11-01 20:32:24 +02:00
},
2018-11-01 20:32:24 +02:00
mediaOnly: {
validator: $.bool.optional,
desc: {
'ja-JP': 'true にすると、ファイルが添付された投稿だけ取得します (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
2018-07-11 08:03:21 +03:00
}
2018-11-01 20:32:24 +02:00
},
2018-07-11 08:03:21 +03:00
}
};
2018-11-02 06:47:44 +02:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
const meta = await fetchMeta();
if (meta.disableLocalTimeline && !user.isAdmin && !user.isModerator) {
return rej('local timeline disabled');
}
2018-07-11 08:03:21 +03:00
// Check if only one of sinceId, untilId, sinceDate, untilDate specified
2018-09-05 20:16:08 +03:00
if (countIf(x => x != null, [ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate]) > 1) {
2018-11-02 06:47:44 +02:00
return rej('only one of sinceId, untilId, sinceDate, untilDate can be specified');
2018-07-11 08:03:21 +03:00
}
const [followings, mutedUserIds] = await Promise.all([
// フォローを取得
// Fetch following
2018-07-21 05:03:32 +03:00
getFriends(user._id, true, false),
2018-07-11 08:03:21 +03:00
// ミュートしているユーザーを取得
Mute.find({
muterId: user._id
}).then(ms => ms.map(m => m.muteeId))
]);
//#region Construct query
const sort = {
_id: -1
};
const followQuery = followings.map(f => ({
2018-07-11 08:03:21 +03:00
userId: f.id,
// リプライは含めない(ただし投稿者自身の投稿へのリプライ、自分の投稿へのリプライ、自分のリプライは含める)
2018-07-11 08:03:21 +03:00
$or: [{
// リプライでない
replyId: null
}, { // または
// リプライだが返信先が投稿者自身の投稿
$expr: {
$eq: ['$_reply.userId', '$userId']
}
}, { // または
// リプライだが返信先が自分(フォロワー)の投稿
'_reply.userId': user._id
}, { // または
// 自分(フォロワー)が送信したリプライ
userId: user._id
}]
}));
2018-07-11 08:03:21 +03:00
const visibleQuery = user == null ? [{
visibility: { $in: [ 'public', 'home' ] }
}] : [{
visibility: { $in: [ 'public', 'home' ] }
}, {
// myself (for specified/private)
userId: user._id
}, {
// to me (for specified)
visibleUserIds: { $in: [ user._id ] }
}];
2018-07-11 08:03:21 +03:00
const query = {
$and: [{
deletedAt: null,
2018-07-11 08:03:21 +03:00
$or: [{
$and: [{
// フォローしている人の投稿
$or: followQuery
}, {
// visible for me
$or: visibleQuery
}]
2018-07-11 08:03:21 +03:00
}, {
2018-07-13 18:36:39 +03:00
// public only
visibility: 'public',
// リプライでない
replyId: null,
2018-07-11 08:03:21 +03:00
// local
'_user.host': null
}],
// 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 (ps.includeMyRenotes === false) {
query.$and.push({
$or: [{
userId: { $ne: user._id }
}, {
renoteId: null
}, {
text: { $ne: null }
}, {
2018-09-05 13:32:46 +03:00
fileIds: { $ne: [] }
2018-07-11 08:03:21 +03:00
}, {
poll: { $ne: null }
}]
});
}
if (ps.includeRenotedMyNotes === false) {
query.$and.push({
$or: [{
'_renote.userId': { $ne: user._id }
}, {
renoteId: null
}, {
text: { $ne: null }
}, {
2018-09-05 13:32:46 +03:00
fileIds: { $ne: [] }
2018-07-11 08:03:21 +03:00
}, {
poll: { $ne: null }
}]
});
}
2018-08-16 17:59:22 +03:00
if (ps.includeLocalRenotes === false) {
query.$and.push({
$or: [{
'_renote.user.host': { $ne: null }
}, {
renoteId: null
}, {
text: { $ne: null }
}, {
2018-09-05 13:32:46 +03:00
fileIds: { $ne: [] }
2018-08-16 17:59:22 +03:00
}, {
poll: { $ne: null }
}]
});
}
if (ps.withFiles || ps.mediaOnly) {
2018-07-11 08:03:21 +03:00
query.$and.push({
2018-09-05 13:32:46 +03:00
fileIds: { $exists: true, $ne: [] }
2018-07-11 08:03:21 +03:00
});
}
if (ps.sinceId) {
sort._id = 1;
query._id = {
$gt: ps.sinceId
};
} else if (ps.untilId) {
query._id = {
$lt: ps.untilId
};
} else if (ps.sinceDate) {
sort._id = 1;
query.createdAt = {
$gt: new Date(ps.sinceDate)
};
} else if (ps.untilDate) {
query.createdAt = {
$lt: new Date(ps.untilDate)
};
}
//#endregion
const timeline = await Note
.find(query, {
limit: ps.limit,
sort: sort
});
2018-11-02 06:47:44 +02:00
res(await packMany(timeline, user));
activeUsersChart.update(user);
2018-11-02 06:47:44 +02:00
}));