mirror of
https://github.com/paricafe/misskey.git
synced 2025-03-13 12:09:17 -05:00

* cleanup: trim trailing whitespace * update(`.editorconfig`) --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
78 lines
2.1 KiB
TypeScript
78 lines
2.1 KiB
TypeScript
import bcrypt from 'bcryptjs';
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { UserProfilesRepository, UserSecurityKeysRepository } from '@/models/index.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 the channel.',
|
|
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;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.userSecurityKeysRepository)
|
|
private userSecurityKeysRepository: UserSecurityKeysRepository,
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
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 {};
|
|
});
|
|
}
|
|
}
|