mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-27 06:10:15 -06:00
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { AdsRepository } from '@/models/index.js';
|
|
import { IdService } from '@/core/IdService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
url: { type: 'string', minLength: 1 },
|
|
memo: { type: 'string' },
|
|
place: { type: 'string' },
|
|
priority: { type: 'string' },
|
|
ratio: { type: 'integer' },
|
|
expiresAt: { type: 'integer' },
|
|
startsAt: { type: 'integer' },
|
|
imageUrl: { type: 'string', minLength: 1 },
|
|
},
|
|
required: ['url', 'memo', 'place', 'priority', 'ratio', 'expiresAt', 'startsAt', 'imageUrl'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.adsRepository)
|
|
private adsRepository: AdsRepository,
|
|
|
|
private idService: IdService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
await this.adsRepository.insert({
|
|
id: this.idService.genId(),
|
|
createdAt: new Date(),
|
|
expiresAt: new Date(ps.expiresAt),
|
|
startsAt: new Date(ps.startsAt),
|
|
url: ps.url,
|
|
imageUrl: ps.imageUrl,
|
|
priority: ps.priority,
|
|
ratio: ps.ratio,
|
|
place: ps.place,
|
|
memo: ps.memo,
|
|
});
|
|
});
|
|
}
|
|
}
|