2023-01-09 06:50:25 +00:00
|
|
|
import { IsNull, MoreThan } from 'typeorm';
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import type { EmojisRepository } from '@/models/index.js';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { EmojiEntityService } from '@/core/entities/EmojiEntityService.js';
|
|
|
|
import type { Config } from '@/config.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['meta'],
|
|
|
|
|
|
|
|
requireCredential: false,
|
2023-01-16 09:39:58 +00:00
|
|
|
allowGet: true,
|
|
|
|
cacheSec: 60,
|
2023-01-09 06:50:25 +00:00
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
properties: {
|
|
|
|
emojis: {
|
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
items: {
|
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
properties: {
|
2023-01-09 08:22:21 +00:00
|
|
|
name: {
|
2023-01-09 06:50:25 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
aliases: {
|
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
items: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
category: {
|
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
export const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
@Inject(DI.emojisRepository)
|
|
|
|
private emojisRepository: EmojisRepository,
|
|
|
|
|
|
|
|
private emojiEntityService: EmojiEntityService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const emojis = await this.emojisRepository.find({
|
|
|
|
where: {
|
|
|
|
host: IsNull(),
|
|
|
|
},
|
|
|
|
order: {
|
|
|
|
category: 'ASC',
|
|
|
|
name: 'ASC',
|
|
|
|
},
|
|
|
|
cache: {
|
|
|
|
id: 'meta_emojis',
|
2023-01-16 09:39:58 +00:00
|
|
|
milliseconds: 60000, // 1 minute
|
2023-01-09 06:50:25 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
emojis: await this.emojiEntityService.packMany(emojis, {
|
|
|
|
omitId: true,
|
|
|
|
omitHost: true,
|
2023-01-21 11:40:09 +00:00
|
|
|
withUrl: true,
|
2023-01-09 06:50:25 +00:00
|
|
|
}),
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|