2022-02-27 03:07:39 +01:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { AccessTokens } from '@/models/index.js';
|
|
|
|
import { publishUserEvent } from '@/services/stream.js';
|
2020-03-28 11:33:11 +01:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2020-03-28 11:33:11 +01:00
|
|
|
|
|
|
|
secure: true,
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2020-03-28 11:33:11 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
tokenId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
required: ['tokenId'],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-03-28 11:33:11 +01:00
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2022-03-26 07:34:00 +01:00
|
|
|
const token = await AccessTokens.findOneBy({ id: ps.tokenId });
|
2020-03-28 11:33:11 +01:00
|
|
|
|
|
|
|
if (token) {
|
2021-07-18 12:57:53 +02:00
|
|
|
await AccessTokens.delete({
|
|
|
|
id: ps.tokenId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Terminate streaming
|
|
|
|
publishUserEvent(user.id, 'terminate');
|
2020-03-28 11:33:11 +01:00
|
|
|
}
|
|
|
|
});
|