From 0e4a111f81cceed275d9bec2695f6e401fb654d8 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 12 Nov 2021 02:02:25 +0900 Subject: refactoring Resolve #7779 --- src/server/api/endpoints/miauth/gen-token.ts | 72 ---------------------------- 1 file changed, 72 deletions(-) delete mode 100644 src/server/api/endpoints/miauth/gen-token.ts (limited to 'src/server/api/endpoints/miauth') diff --git a/src/server/api/endpoints/miauth/gen-token.ts b/src/server/api/endpoints/miauth/gen-token.ts deleted file mode 100644 index 321fa42fc9..0000000000 --- a/src/server/api/endpoints/miauth/gen-token.ts +++ /dev/null @@ -1,72 +0,0 @@ -import $ from 'cafy'; -import define from '../../define'; -import { AccessTokens } from '@/models/index'; -import { genId } from '@/misc/gen-id'; -import { secureRndstr } from '@/misc/secure-rndstr'; - -export const meta = { - tags: ['auth'], - - requireCredential: true as const, - - secure: true, - - params: { - session: { - validator: $.nullable.str - }, - - name: { - validator: $.nullable.optional.str - }, - - description: { - validator: $.nullable.optional.str, - }, - - iconUrl: { - validator: $.nullable.optional.str, - }, - - permission: { - validator: $.arr($.str).unique(), - }, - }, - - res: { - type: 'object' as const, - optional: false as const, nullable: false as const, - properties: { - token: { - type: 'string' as const, - optional: false as const, nullable: false as const - } - } - } -}; - -export default define(meta, async (ps, user) => { - // Generate access token - const accessToken = secureRndstr(32, true); - - const now = new Date(); - - // Insert access token doc - await AccessTokens.insert({ - id: genId(), - createdAt: now, - lastUsedAt: now, - session: ps.session, - userId: user.id, - token: accessToken, - hash: accessToken, - name: ps.name, - description: ps.description, - iconUrl: ps.iconUrl, - permission: ps.permission, - }); - - return { - token: accessToken - }; -}); -- cgit v1.2.3-freya