e5ff8d8445
* (enhance) プラグイン削除時にトークンも削除 * update changelog
58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { AccessTokensRepository } from '@/models/_.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
export const meta = {
|
|
requireCredential: true,
|
|
|
|
secure: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
tokenId: { type: 'string', format: 'misskey:id' },
|
|
token: { type: 'string' },
|
|
},
|
|
anyOf: [
|
|
{ required: ['tokenId'] },
|
|
{ required: ['token'] },
|
|
],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
@Inject(DI.accessTokensRepository)
|
|
private accessTokensRepository: AccessTokensRepository,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
if (ps.tokenId) {
|
|
const tokenExist = await this.accessTokensRepository.exist({ where: { id: ps.tokenId } });
|
|
|
|
if (tokenExist) {
|
|
await this.accessTokensRepository.delete({
|
|
id: ps.tokenId,
|
|
userId: me.id,
|
|
});
|
|
}
|
|
} else if (ps.token) {
|
|
const tokenExist = await this.accessTokensRepository.exist({ where: { token: ps.token } });
|
|
|
|
if (tokenExist) {
|
|
await this.accessTokensRepository.delete({
|
|
token: ps.token,
|
|
userId: me.id,
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|