2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-04-11 00:42:27 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Brackets } from 'typeorm';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
2023-09-15 07:28:29 +02:00
|
|
|
import type { ChannelsRepository } from '@/models/_.js';
|
2023-04-11 00:42:27 +02:00
|
|
|
import { ChannelEntityService } from '@/core/entities/ChannelEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
import { sqlLikeEscape } from '@/misc/sql-like-escape.js';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['channels'],
|
|
|
|
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
items: {
|
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'Channel',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
query: { type: 'string' },
|
|
|
|
type: { type: 'string', enum: ['nameAndDescription', 'nameOnly'], default: 'nameAndDescription' },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 5 },
|
|
|
|
},
|
|
|
|
required: ['query'],
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
@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
|
2023-04-11 00:42:27 +02:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.channelsRepository)
|
|
|
|
private channelsRepository: ChannelsRepository,
|
|
|
|
|
|
|
|
private channelEntityService: ChannelEntityService,
|
|
|
|
private queryService: QueryService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
2023-05-06 01:15:17 +02:00
|
|
|
const query = this.queryService.makePaginationQuery(this.channelsRepository.createQueryBuilder('channel'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere('channel.isArchived = FALSE');
|
2023-04-11 00:42:27 +02:00
|
|
|
|
2023-05-05 01:48:14 +02:00
|
|
|
if (ps.query !== '') {
|
|
|
|
if (ps.type === 'nameAndDescription') {
|
2023-10-09 06:32:41 +02:00
|
|
|
query.andWhere(new Brackets(qb => {
|
|
|
|
qb
|
|
|
|
.where('channel.name ILIKE :q', { q: `%${ sqlLikeEscape(ps.query) }%` })
|
|
|
|
.orWhere('channel.description ILIKE :q', { q: `%${ sqlLikeEscape(ps.query) }%` });
|
2023-05-05 01:48:14 +02:00
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
query.andWhere('channel.name ILIKE :q', { q: `%${ sqlLikeEscape(ps.query) }%` });
|
|
|
|
}
|
2023-04-11 00:42:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const channels = await query
|
2023-07-08 09:53:07 +02:00
|
|
|
.limit(ps.limit)
|
2023-04-11 00:42:27 +02:00
|
|
|
.getMany();
|
|
|
|
|
|
|
|
return await Promise.all(channels.map(x => this.channelEntityService.pack(x, me)));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|