* update deps * fix * wip * wip * wip * Update docker-compose.yml.example * Delete reviewer-lottery.yml * Update RepositoryModule.ts * wip * wip * clean up * update deps * wip * wip
79 lines
2 KiB
TypeScript
79 lines
2 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import bcrypt from 'bcryptjs';
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { UserSecurityKeysRepository } from '@/models/_.js';
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { ApiError } from '../../../error.js';
|
|
|
|
export const meta = {
|
|
requireCredential: true,
|
|
|
|
secure: true,
|
|
|
|
errors: {
|
|
noSuchKey: {
|
|
message: 'No such key.',
|
|
code: 'NO_SUCH_KEY',
|
|
id: 'f9c5467f-d492-4d3c-9a8g-a70dacc86512',
|
|
},
|
|
|
|
accessDenied: {
|
|
message: 'You do not have edit privilege of this key.',
|
|
code: 'ACCESS_DENIED',
|
|
id: '1fb7cb09-d46a-4fff-b8df-057708cce513',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
name: { type: 'string', minLength: 1, maxLength: 30 },
|
|
credentialId: { type: 'string' },
|
|
},
|
|
required: ['name', 'credentialId'],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
@Inject(DI.userSecurityKeysRepository)
|
|
private userSecurityKeysRepository: UserSecurityKeysRepository,
|
|
|
|
private userEntityService: UserEntityService,
|
|
private globalEventService: GlobalEventService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const key = await this.userSecurityKeysRepository.findOneBy({
|
|
id: ps.credentialId,
|
|
});
|
|
|
|
if (key == null) {
|
|
throw new ApiError(meta.errors.noSuchKey);
|
|
}
|
|
|
|
if (key.userId !== me.id) {
|
|
throw new ApiError(meta.errors.accessDenied);
|
|
}
|
|
|
|
await this.userSecurityKeysRepository.update(key.id, {
|
|
name: ps.name,
|
|
});
|
|
|
|
// Publish meUpdated event
|
|
this.globalEventService.publishMainStream(me.id, 'meUpdated', await this.userEntityService.pack(me.id, me, {
|
|
detail: true,
|
|
includeSecrets: true,
|
|
}));
|
|
|
|
return {};
|
|
});
|
|
}
|
|
}
|