2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { AccessTokensRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2020-03-28 10:33:11 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2020-03-28 10:33:11 +00:00
|
|
|
|
|
|
|
secure: true,
|
2022-02-19 05:05:32 +00:00
|
|
|
} as const;
|
2020-03-28 10:33:11 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
tokenId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-02-19 05:05:32 +00:00
|
|
|
required: ['tokenId'],
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2020-03-28 10:33:11 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.accessTokensRepository)
|
|
|
|
private accessTokensRepository: AccessTokensRepository,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
2023-07-11 05:58:58 +00:00
|
|
|
const tokenExist = await this.accessTokensRepository.exist({ where: { id: ps.tokenId } });
|
2022-09-17 18:27:08 +00:00
|
|
|
|
2023-07-11 05:58:58 +00:00
|
|
|
if (tokenExist) {
|
2022-09-17 18:27:08 +00:00
|
|
|
await this.accessTokensRepository.delete({
|
|
|
|
id: ps.tokenId,
|
|
|
|
userId: me.id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2020-03-28 10:33:11 +00:00
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|