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

134 lines
2.7 KiB
TypeScript
Raw Normal View History

2019-02-05 03:48:08 +01:00
import $ from 'cafy';
import ID, { transform } from '../../../../misc/cafy-id';
import Note from '../../../../models/note';
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 fetchMeta from '../../../../misc/fetch-meta';
2019-02-01 01:57:51 +01:00
import { getHideUserIds } from '../../common/get-hide-users';
export const meta = {
desc: {
'ja-JP': 'グローバルタイムラインを取得します。'
},
params: {
2018-11-01 19:32:24 +01:00
withFiles: {
2019-02-13 08:33:07 +01:00
validator: $.optional.bool,
desc: {
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
mediaOnly: {
2019-02-13 08:33:07 +01:00
validator: $.optional.bool,
desc: {
'ja-JP': 'ファイルが添付された投稿に限定するか否か (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
limit: {
2019-02-13 08:33:07 +01:00
validator: $.optional.num.range(1, 100),
default: 10
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
sinceId: {
2019-02-13 08:33:07 +01:00
validator: $.optional.type(ID),
2018-11-01 19:32:24 +01:00
transform: transform,
},
2018-11-01 19:32:24 +01:00
untilId: {
2019-02-13 08:33:07 +01:00
validator: $.optional.type(ID),
2018-11-01 19:32:24 +01:00
transform: transform,
},
2018-11-01 19:32:24 +01:00
sinceDate: {
2019-02-13 08:33:07 +01:00
validator: $.optional.num
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
untilDate: {
2019-02-13 08:33:07 +01:00
validator: $.optional.num
2018-11-01 19:32:24 +01:00
},
}
};
2018-11-02 05:47:44 +01:00
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
const meta = await fetchMeta();
2019-01-16 06:54:14 +01:00
if (meta.disableGlobalTimeline) {
if (user == null || (!user.isAdmin && !user.isModerator)) {
2019-01-16 06:54:14 +01:00
return rej('global timeline disabled');
}
}
// 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');
}
2019-02-01 01:57:51 +01:00
// 隠すユーザーを取得
const hideUserIds = await getHideUserIds(user);
//#region Construct query
const sort = {
_id: -1
};
const query = {
deletedAt: null,
// public only
visibility: 'public',
replyId: null
} as any;
2019-02-01 01:57:51 +01:00
if (hideUserIds && hideUserIds.length > 0) {
query.userId = {
2019-02-01 01:57:51 +01:00
$nin: hideUserIds
};
query['_reply.userId'] = {
2019-02-01 01:57:51 +01:00
$nin: hideUserIds
};
query['_renote.userId'] = {
2019-02-01 01:57:51 +01:00
$nin: hideUserIds
};
}
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));
}));