iceshrimp-legacy/src/server/api/endpoints/notes/global-timeline.ts

127 lines
2.6 KiB
TypeScript
Raw Normal View History

2018-11-01 19:32:24 +01:00
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
import Note from '../../../../models/note';
import Mute from '../../../../models/mute';
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';
export const meta = {
desc: {
'ja-JP': 'グローバルタイムラインを取得します。'
},
params: {
2018-11-01 19:32:24 +01:00
withFiles: {
validator: $.bool.optional,
desc: {
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
mediaOnly: {
validator: $.bool.optional,
desc: {
'ja-JP': 'ファイルが添付された投稿に限定するか否か (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
limit: {
validator: $.num.optional.range(1, 100),
default: 10
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
sinceId: {
validator: $.type(ID).optional,
transform: transform,
},
2018-11-01 19:32:24 +01:00
untilId: {
validator: $.type(ID).optional,
transform: transform,
},
2018-11-01 19:32:24 +01:00
sinceDate: {
validator: $.num.optional
},
2018-11-01 19:32:24 +01:00
untilDate: {
validator: $.num.optional
},
}
};
2018-11-02 05:47:44 +01:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
// 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
return rej('only one of sinceId, untilId, sinceDate, untilDate can be specified');
}
// ミュートしているユーザーを取得
const mutedUserIds = user ? (await Mute.find({
muterId: user._id
})).map(m => m.muteeId) : null;
//#region Construct query
const sort = {
_id: -1
};
const query = {
deletedAt: null,
// public only
visibility: 'public',
replyId: null
} as any;
if (mutedUserIds && mutedUserIds.length > 0) {
query.userId = {
$nin: mutedUserIds
};
query['_reply.userId'] = {
$nin: mutedUserIds
};
query['_renote.userId'] = {
$nin: mutedUserIds
};
}
const withFiles = ps.withFiles != null ? ps.withFiles : ps.mediaOnly;
2018-09-05 12:32:46 +02:00
if (withFiles) {
query.fileIds = { $exists: true, $ne: [] };
2018-06-06 23:13:57 +02: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 05:47:44 +01:00
res(await packMany(timeline, user));
}));