2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-12 03:37:45 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
* 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 { AdsRepository } from '@/models/_.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-09-29 06:26:11 +02:00
|
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
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,
|
2023-12-27 07:08:59 +01:00
|
|
|
kind: 'write:admin:ad',
|
2021-05-04 14:15:57 +02:00
|
|
|
|
|
|
|
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' },
|
2023-02-15 06:31:59 +01:00
|
|
|
startsAt: { type: 'integer' },
|
2023-07-08 01:56:11 +02:00
|
|
|
dayOfWeek: { type: 'integer' },
|
2022-02-19 06:05:32 +01:00
|
|
|
},
|
2023-07-08 01:56:11 +02:00
|
|
|
required: ['id', 'memo', 'url', 'imageUrl', 'place', 'priority', 'ratio', 'expiresAt', 'startsAt', 'dayOfWeek'],
|
2022-02-19 06:05:32 +01:00
|
|
|
} 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(
|
2023-01-13 07:15:31 +01:00
|
|
|
@Inject(DI.adsRepository)
|
2022-09-17 20:27:08 +02:00
|
|
|
private adsRepository: AdsRepository,
|
2023-09-29 06:26:11 +02:00
|
|
|
|
|
|
|
private moderationLogService: ModerationLogService,
|
2022-09-17 20:27:08 +02:00
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const ad = await this.adsRepository.findOneBy({ id: ps.id });
|
2021-05-04 14:15:57 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
if (ad == null) throw new ApiError(meta.errors.noSuchAd);
|
2021-05-04 14:15:57 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
await this.adsRepository.update(ad.id, {
|
|
|
|
url: ps.url,
|
|
|
|
place: ps.place,
|
|
|
|
priority: ps.priority,
|
|
|
|
ratio: ps.ratio,
|
|
|
|
memo: ps.memo,
|
|
|
|
imageUrl: ps.imageUrl,
|
|
|
|
expiresAt: new Date(ps.expiresAt),
|
2023-02-15 06:31:59 +01:00
|
|
|
startsAt: new Date(ps.startsAt),
|
2023-07-08 01:56:11 +02:00
|
|
|
dayOfWeek: ps.dayOfWeek,
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
2023-09-29 06:26:11 +02:00
|
|
|
|
|
|
|
const updatedAd = await this.adsRepository.findOneByOrFail({ id: ad.id });
|
|
|
|
|
|
|
|
this.moderationLogService.log(me, 'updateAd', {
|
|
|
|
adId: ad.id,
|
|
|
|
before: ad,
|
|
|
|
after: updatedAd,
|
|
|
|
});
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|