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