2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2023-09-15 07:28:29 +02:00
|
|
|
import type { ChannelsRepository } from '@/models/_.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { ChannelEntityService } from '@/core/entities/ChannelEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2020-08-18 15:44:21 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['channels'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2020-08-18 15:44:21 +02:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2020-08-18 15:44:21 +02:00
|
|
|
items: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2020-08-18 15:44:21 +02:00
|
|
|
ref: 'Channel',
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2020-08-18 15:44:21 +02:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
2023-08-17 14:20:58 +02:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.channelsRepository)
|
|
|
|
private channelsRepository: ChannelsRepository,
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
private channelEntityService: ChannelEntityService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const query = this.channelsRepository.createQueryBuilder('channel')
|
|
|
|
.where('channel.lastNotedAt IS NOT NULL')
|
2023-05-06 01:15:17 +02:00
|
|
|
.andWhere('channel.isArchived = FALSE')
|
2022-09-17 20:27:08 +02:00
|
|
|
.orderBy('channel.lastNotedAt', 'DESC');
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-07-08 09:53:07 +02:00
|
|
|
const channels = await query.limit(10).getMany();
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
return await Promise.all(channels.map(x => this.channelEntityService.pack(x, me)));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|