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