mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 16:03:09 +02:00
cf43dd6ec5
* wip * wip * wip * wip * wip * wip * wip * wip * wip
106 lines
2.6 KiB
TypeScript
106 lines
2.6 KiB
TypeScript
import $ from 'cafy';
|
|
import { ID } from '../../../../misc/cafy-id';
|
|
import define from '../../define';
|
|
import { fetchMeta } from '../../../../misc/fetch-meta';
|
|
import { ApiError } from '../../error';
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
import { Notes } from '../../../../models';
|
|
import { generateMuteQuery } from '../../common/generate-mute-query';
|
|
import { activeUsersChart } from '../../../../services/chart';
|
|
import { generateRepliesQuery } from '../../common/generate-replies-query';
|
|
import { injectPromo } from '../../common/inject-promo';
|
|
import { injectFeatured } from '../../common/inject-featured';
|
|
import { generateMutedNoteQuery } from '../../common/generate-muted-note-query';
|
|
|
|
export const meta = {
|
|
desc: {
|
|
'ja-JP': 'グローバルタイムラインを取得します。'
|
|
},
|
|
|
|
tags: ['notes'],
|
|
|
|
params: {
|
|
withFiles: {
|
|
validator: $.optional.bool,
|
|
desc: {
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
|
|
}
|
|
},
|
|
|
|
limit: {
|
|
validator: $.optional.num.range(1, 100),
|
|
default: 10
|
|
},
|
|
|
|
sinceId: {
|
|
validator: $.optional.type(ID),
|
|
},
|
|
|
|
untilId: {
|
|
validator: $.optional.type(ID),
|
|
},
|
|
|
|
sinceDate: {
|
|
validator: $.optional.num
|
|
},
|
|
|
|
untilDate: {
|
|
validator: $.optional.num
|
|
},
|
|
},
|
|
|
|
res: {
|
|
type: 'array' as const,
|
|
optional: false as const, nullable: false as const,
|
|
items: {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
ref: 'Note',
|
|
}
|
|
},
|
|
|
|
errors: {
|
|
gtlDisabled: {
|
|
message: 'Global timeline has been disabled.',
|
|
code: 'GTL_DISABLED',
|
|
id: '0332fc13-6ab2-4427-ae80-a9fadffd1a6b'
|
|
},
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
const m = await fetchMeta();
|
|
if (m.disableGlobalTimeline) {
|
|
if (user == null || (!user.isAdmin && !user.isModerator)) {
|
|
throw new ApiError(meta.errors.gtlDisabled);
|
|
}
|
|
}
|
|
|
|
//#region Construct query
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'),
|
|
ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)
|
|
.andWhere('note.visibility = \'public\'')
|
|
.leftJoinAndSelect('note.user', 'user');
|
|
|
|
generateRepliesQuery(query, user);
|
|
if (user) generateMuteQuery(query, user);
|
|
if (user) generateMutedNoteQuery(query, user);
|
|
|
|
if (ps.withFiles) {
|
|
query.andWhere('note.fileIds != \'{}\'');
|
|
}
|
|
//#endregion
|
|
|
|
const timeline = await query.take(ps.limit!).getMany();
|
|
|
|
await injectPromo(timeline, user);
|
|
await injectFeatured(timeline, user);
|
|
|
|
process.nextTick(() => {
|
|
if (user) {
|
|
activeUsersChart.update(user);
|
|
}
|
|
});
|
|
|
|
return await Notes.packMany(timeline, user);
|
|
});
|