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

134 lines
2.7 KiB
TypeScript
Raw Normal View History

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