rudeshark.net/src/server/api/endpoints/notes/timeline.ts

270 lines
6.1 KiB
TypeScript
Raw Normal View History

2019-02-05 03:48:08 +01:00
import $ from 'cafy';
import ID, { transform } from '../../../../misc/cafy-id';
2018-04-07 19:30:37 +02:00
import Note from '../../../../models/note';
2018-04-19 05:43:25 +02:00
import { getFriends } from '../../common/get-friends';
import { packMany } from '../../../../models/note';
2018-11-02 05:47:44 +01:00
import define from '../../define';
2018-09-05 19:16:08 +02:00
import { countIf } from '../../../../prelude/array';
import activeUsersChart from '../../../../chart/active-users';
2019-02-01 01:57:51 +01:00
import { getHideUserIds } from '../../common/get-hide-users';
2016-12-28 23:49:51 +01:00
2018-07-06 13:40:44 +02:00
export const meta = {
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': 'タイムラインを取得します。',
'en-US': 'Get timeline of myself.'
2018-07-06 13:40:44 +02:00
},
2016-12-28 23:49:51 +01:00
2018-07-15 23:58:45 +02:00
requireCredential: true,
2018-07-06 13:40:44 +02:00
params: {
2018-11-01 19:32:24 +01:00
limit: {
validator: $.num.optional.range(1, 100),
2018-07-06 13:40:44 +02:00
default: 10,
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': '最大数'
2018-07-06 13:40:44 +02:00
}
2018-11-01 19:32:24 +01:00
},
2016-12-28 23:49:51 +01:00
2018-11-01 19:32:24 +01:00
sinceId: {
validator: $.type(ID).optional,
transform: transform,
2018-07-06 13:40:44 +02:00
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': '指定すると、この投稿を基点としてより新しい投稿を取得します'
2018-07-06 13:40:44 +02:00
}
2018-11-01 19:32:24 +01:00
},
2017-11-11 02:58:13 +01:00
2018-11-01 19:32:24 +01:00
untilId: {
validator: $.type(ID).optional,
transform: transform,
2018-07-06 13:40:44 +02:00
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': '指定すると、この投稿を基点としてより古い投稿を取得します'
2018-07-06 13:40:44 +02:00
}
2018-11-01 19:32:24 +01:00
},
2017-11-11 02:58:13 +01:00
2018-11-01 19:32:24 +01:00
sinceDate: {
validator: $.num.optional,
2018-07-06 13:40:44 +02:00
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
2018-07-06 13:40:44 +02:00
}
2018-11-01 19:32:24 +01:00
},
2016-12-28 23:49:51 +01:00
2018-11-01 19:32:24 +01:00
untilDate: {
validator: $.num.optional,
2018-07-06 13:40:44 +02:00
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
2018-07-06 13:40:44 +02:00
}
2018-11-01 19:32:24 +01:00
},
2018-04-21 04:42:38 +02:00
2018-11-01 19:32:24 +01:00
includeMyRenotes: {
validator: $.bool.optional,
2018-07-06 13:40:44 +02:00
default: true,
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': '自分の行ったRenoteを含めるかどうか'
2018-07-06 13:40:44 +02:00
}
2018-11-01 19:32:24 +01:00
},
2018-04-21 04:42:38 +02:00
2018-11-01 19:32:24 +01:00
includeRenotedMyNotes: {
validator: $.bool.optional,
2018-07-06 13:40:44 +02:00
default: true,
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': 'Renoteされた自分の投稿を含めるかどうか'
2018-07-06 13:40:44 +02:00
}
2018-11-01 19:32:24 +01:00
},
2018-07-06 13:40:44 +02:00
2018-11-01 19:32:24 +01:00
includeLocalRenotes: {
validator: $.bool.optional,
2018-08-16 16:59:22 +02:00
default: true,
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': 'Renoteされたローカルの投稿を含めるかどうか'
2018-08-16 16:59:22 +02:00
}
2018-11-01 19:32:24 +01:00
},
2018-08-16 16:59:22 +02:00
2018-11-01 19:32:24 +01:00
withFiles: {
validator: $.bool.optional,
2018-07-06 13:40:44 +02:00
desc: {
'ja-JP': 'true にすると、ファイルが添付された投稿だけ取得します'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
mediaOnly: {
validator: $.bool.optional,
desc: {
'ja-JP': 'true にすると、ファイルが添付された投稿だけ取得します (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
2018-07-06 13:40:44 +02:00
}
2018-11-01 19:32:24 +01:00
},
2018-07-06 13:40:44 +02:00
}
};
2018-11-02 05:47:44 +01:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
2018-07-06 13:40:44 +02:00
// Check if only one of sinceId, untilId, sinceDate, untilDate specified
2018-09-05 19:16:08 +02:00
if (countIf(x => x != null, [ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate]) > 1) {
2018-11-02 05:47:44 +01:00
rej('only one of sinceId, untilId, sinceDate, untilDate can be specified');
return;
2018-07-06 13:40:44 +02:00
}
2018-06-06 23:13:57 +02:00
2019-02-01 01:57:51 +01:00
const [followings, hideUserIds] = await Promise.all([
2018-04-19 05:43:25 +02:00
// フォローを取得
// Fetch following
getFriends(user._id),
2017-12-21 22:03:54 +01:00
2019-02-01 01:57:51 +01:00
// 隠すユーザーを取得
getHideUserIds(user)
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
const followQuery = followings.map(f => ({
2018-04-19 05:43:25 +02:00
userId: f.id,
/*// (稿稿稿)
2018-04-19 05:43:25 +02:00
$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
}]*/
}));
2018-04-19 05:43:25 +02:00
const visibleQuery = user == null ? [{
visibility: { $in: [ 'public', 'home' ] }
}] : [{
visibility: { $in: [ 'public', 'home', 'followers' ] }
}, {
// myself (for specified/private)
userId: user._id
}, {
// to me (for specified)
visibleUserIds: { $in: [ user._id ] }
}];
2016-12-28 23:49:51 +01:00
const query = {
2018-04-21 04:42:38 +02:00
$and: [{
deletedAt: null,
$and: [{
// フォローしている人の投稿
$or: followQuery
}, {
// visible for me
$or: visibleQuery
}],
2018-05-19 00:33:34 +02:00
2018-04-21 04:42:38 +02:00
// mute
userId: {
2019-02-01 01:57:51 +01:00
$nin: hideUserIds
2018-04-21 04:42:38 +02:00
},
'_reply.userId': {
2019-02-01 01:57:51 +01:00
$nin: hideUserIds
2018-04-21 04:42:38 +02:00
},
'_renote.userId': {
2019-02-01 01:57:51 +01:00
$nin: hideUserIds
2018-04-21 04:42:38 +02:00
},
}]
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
2018-07-06 13:40:44 +02:00
if (ps.includeMyRenotes === false) {
2018-04-21 04:42:38 +02:00
query.$and.push({
$or: [{
userId: { $ne: user._id }
}, {
renoteId: null
}, {
text: { $ne: null }
}, {
2018-09-05 12:32:46 +02:00
fileIds: { $ne: [] }
2018-04-21 04:42:38 +02:00
}, {
poll: { $ne: null }
}]
});
}
2018-07-06 13:40:44 +02:00
if (ps.includeRenotedMyNotes === false) {
2018-04-21 04:42:38 +02:00
query.$and.push({
$or: [{
'_renote.userId': { $ne: user._id }
}, {
renoteId: null
}, {
text: { $ne: null }
}, {
2018-09-05 12:32:46 +02:00
fileIds: { $ne: [] }
2018-04-21 04:42:38 +02:00
}, {
poll: { $ne: null }
}]
});
}
2018-08-16 16:59:22 +02:00
if (ps.includeLocalRenotes === false) {
query.$and.push({
$or: [{
'_renote.user.host': { $ne: null }
}, {
renoteId: null
}, {
text: { $ne: null }
}, {
2018-09-05 12:32:46 +02:00
fileIds: { $ne: [] }
2018-08-16 16:59:22 +02:00
}, {
poll: { $ne: null }
}]
});
}
const withFiles = ps.withFiles != null ? ps.withFiles : ps.mediaOnly;
if (withFiles) {
2018-06-06 23:13:57 +02:00
query.$and.push({
2018-09-05 12:32:46 +02:00
fileIds: { $exists: true, $ne: [] }
2018-06-06 23:13:57 +02:00
});
}
2018-07-06 13:40:44 +02:00
if (ps.sinceId) {
2016-12-28 23:49:51 +01:00
sort._id = 1;
query._id = {
2018-07-06 13:40:44 +02:00
$gt: ps.sinceId
2016-12-28 23:49:51 +01:00
};
2018-07-06 13:40:44 +02:00
} else if (ps.untilId) {
2016-12-28 23:49:51 +01:00
query._id = {
2018-07-06 13:40:44 +02:00
$lt: ps.untilId
2016-12-28 23:49:51 +01:00
};
2018-07-06 13:40:44 +02:00
} else if (ps.sinceDate) {
2017-11-11 02:58:13 +01:00
sort._id = 1;
2018-03-29 07:48:47 +02:00
query.createdAt = {
2018-07-06 13:40:44 +02:00
$gt: new Date(ps.sinceDate)
2017-11-11 02:58:13 +01:00
};
2018-07-06 13:40:44 +02:00
} else if (ps.untilDate) {
2018-03-29 07:48:47 +02:00
query.createdAt = {
2018-07-06 13:40:44 +02:00
$lt: new Date(ps.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, {
2018-07-06 13:40:44 +02:00
limit: ps.limit,
2016-12-28 23:49:51 +01:00
sort: sort
2017-01-17 03:11:22 +01:00
});
2016-12-28 23:49:51 +01:00
// Serialize
2018-11-02 05:47:44 +01:00
res(await packMany(timeline, user));
activeUsersChart.update(user);
2018-11-02 05:47:44 +01:00
}));