2020-03-28 19:33:11 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 21:55:45 +09:00
|
|
|
import define from '../../define';
|
|
|
|
import { AccessTokens } from '@/models/index';
|
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import { publishUserEvent } from '@/services/stream';
|
2020-03-28 19:33:11 +09:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2020-03-28 19:33:11 +09:00
|
|
|
|
|
|
|
secure: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
tokenId: {
|
2021-12-09 23:58:30 +09:00
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2020-03-28 19:33:11 +09:00
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2020-03-28 19:33:11 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const token = await AccessTokens.findOne(ps.tokenId);
|
|
|
|
|
|
|
|
if (token) {
|
2021-07-18 19:57:53 +09:00
|
|
|
await AccessTokens.delete({
|
|
|
|
id: ps.tokenId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Terminate streaming
|
|
|
|
publishUserEvent(user.id, 'terminate');
|
2020-03-28 19:33:11 +09:00
|
|
|
}
|
|
|
|
});
|