2022-02-27 03:07:39 +01:00
|
|
|
import define from '../../../define.js';
|
|
|
|
import { Ads } from '@/models/index.js';
|
|
|
|
import { ApiError } from '../../../error.js';
|
2021-05-04 14:15:57 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2021-05-04 14:15:57 +02:00
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchAd: {
|
|
|
|
message: 'No such ad.',
|
|
|
|
code: 'NO_SUCH_AD',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: 'b7aa1727-1354-47bc-a182-3a9c3973d300',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2021-05-04 14:15:57 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
id: { type: 'string', format: 'misskey:id' },
|
|
|
|
memo: { type: 'string' },
|
|
|
|
url: { type: 'string', minLength: 1 },
|
|
|
|
imageUrl: { type: 'string', minLength: 1 },
|
|
|
|
place: { type: 'string' },
|
|
|
|
priority: { type: 'string' },
|
|
|
|
ratio: { type: 'integer' },
|
|
|
|
expiresAt: { type: 'integer' },
|
|
|
|
},
|
|
|
|
required: ['id', 'memo', 'url', 'imageUrl', 'place', 'priority', 'ratio', 'expiresAt'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2022-03-26 07:34:00 +01:00
|
|
|
const ad = await Ads.findOneBy({ id: ps.id });
|
2021-05-04 14:15:57 +02:00
|
|
|
|
|
|
|
if (ad == null) throw new ApiError(meta.errors.noSuchAd);
|
|
|
|
|
|
|
|
await Ads.update(ad.id, {
|
|
|
|
url: ps.url,
|
|
|
|
place: ps.place,
|
|
|
|
priority: ps.priority,
|
2021-05-07 07:22:13 +02:00
|
|
|
ratio: ps.ratio,
|
2021-05-04 14:15:57 +02:00
|
|
|
memo: ps.memo,
|
|
|
|
imageUrl: ps.imageUrl,
|
|
|
|
expiresAt: new Date(ps.expiresAt),
|
|
|
|
});
|
|
|
|
});
|