mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-18 07:58:56 +01:00
86 lines
2.2 KiB
TypeScript
86 lines
2.2 KiB
TypeScript
|
import { Inject, Injectable } from '@nestjs/common';
|
||
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
||
|
import { IdService } from '@/core/IdService.js';
|
||
|
import type { UserMemoRepository } from '@/models/index.js';
|
||
|
import { DI } from '@/di-symbols.js';
|
||
|
import { GetterService } from '@/server/api/GetterService.js';
|
||
|
import { ApiError } from '../../error.js';
|
||
|
|
||
|
export const meta = {
|
||
|
tags: ['account'],
|
||
|
|
||
|
requireCredential: true,
|
||
|
|
||
|
kind: 'write:account',
|
||
|
|
||
|
errors: {
|
||
|
noSuchUser: {
|
||
|
message: 'No such user.',
|
||
|
code: 'NO_SUCH_USER',
|
||
|
id: '6fef56f3-e765-4957-88e5-c6f65329b8a5',
|
||
|
},
|
||
|
},
|
||
|
} as const;
|
||
|
|
||
|
export const paramDef = {
|
||
|
type: 'object',
|
||
|
properties: {
|
||
|
userId: { type: 'string', format: 'misskey:id' },
|
||
|
memo: {
|
||
|
type: 'string',
|
||
|
nullable: true,
|
||
|
description: 'A personal memo for the target user. If null or empty, delete the memo.',
|
||
|
},
|
||
|
},
|
||
|
required: ['userId', 'memo'],
|
||
|
} as const;
|
||
|
|
||
|
// eslint-disable-next-line import/no-default-export
|
||
|
@Injectable()
|
||
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
||
|
constructor(
|
||
|
@Inject(DI.userMemoRepository)
|
||
|
private userMemoRepository: UserMemoRepository,
|
||
|
private getterService: GetterService,
|
||
|
private idService: IdService,
|
||
|
) {
|
||
|
super(meta, paramDef, async (ps, me) => {
|
||
|
// Get target
|
||
|
const target = await this.getterService.getUser(ps.userId).catch(err => {
|
||
|
if (err.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
||
|
throw err;
|
||
|
});
|
||
|
|
||
|
// 引数がnullか空文字であれば、パーソナルメモを削除する
|
||
|
if (ps.memo === '' || ps.memo == null) {
|
||
|
await this.userMemoRepository.delete({
|
||
|
userId: me.id,
|
||
|
targetUserId: target.id,
|
||
|
});
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// 以前に作成されたパーソナルメモがあるかどうか確認
|
||
|
const previousMemo = await this.userMemoRepository.findOneBy({
|
||
|
userId: me.id,
|
||
|
targetUserId: target.id,
|
||
|
});
|
||
|
|
||
|
if (!previousMemo) {
|
||
|
await this.userMemoRepository.insert({
|
||
|
id: this.idService.genId(),
|
||
|
userId: me.id,
|
||
|
targetUserId: target.id,
|
||
|
memo: ps.memo,
|
||
|
});
|
||
|
} else {
|
||
|
await this.userMemoRepository.update(previousMemo.id, {
|
||
|
userId: me.id,
|
||
|
targetUserId: target.id,
|
||
|
memo: ps.memo,
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|