summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api/authenticate.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/backend/src/server/api/authenticate.ts')
-rw-r--r--packages/backend/src/server/api/authenticate.ts66
1 files changed, 0 insertions, 66 deletions
diff --git a/packages/backend/src/server/api/authenticate.ts b/packages/backend/src/server/api/authenticate.ts
deleted file mode 100644
index 65ccfcf551..0000000000
--- a/packages/backend/src/server/api/authenticate.ts
+++ /dev/null
@@ -1,66 +0,0 @@
-import isNativeToken from './common/is-native-token.js';
-import { CacheableLocalUser, ILocalUser } from '@/models/entities/user.js';
-import { Users, AccessTokens, Apps } from '@/models/index.js';
-import { AccessToken } from '@/models/entities/access-token.js';
-import { Cache } from '@/misc/cache.js';
-import { App } from '@/models/entities/app.js';
-import { localUserByIdCache, localUserByNativeTokenCache } from '@/services/user-cache.js';
-
-const appCache = new Cache<App>(Infinity);
-
-export class AuthenticationError extends Error {
- constructor(message: string) {
- super(message);
- this.name = 'AuthenticationError';
- }
-}
-
-export default async (token: string | null): Promise<[CacheableLocalUser | null | undefined, AccessToken | null | undefined]> => {
- if (token == null) {
- return [null, null];
- }
-
- if (isNativeToken(token)) {
- const user = await localUserByNativeTokenCache.fetch(token,
- () => Users.findOneBy({ token }) as Promise<ILocalUser | null>);
-
- if (user == null) {
- throw new AuthenticationError('user not found');
- }
-
- return [user, null];
- } else {
- const accessToken = await AccessTokens.findOne({
- where: [{
- hash: token.toLowerCase(), // app
- }, {
- token: token, // miauth
- }],
- });
-
- if (accessToken == null) {
- throw new AuthenticationError('invalid signature');
- }
-
- AccessTokens.update(accessToken.id, {
- lastUsedAt: new Date(),
- });
-
- const user = await localUserByIdCache.fetch(accessToken.userId,
- () => Users.findOneBy({
- id: accessToken.userId,
- }) as Promise<ILocalUser>);
-
- if (accessToken.appId) {
- const app = await appCache.fetch(accessToken.appId,
- () => Apps.findOneByOrFail({ id: accessToken.appId! }));
-
- return [user, {
- id: accessToken.id,
- permission: app.permission,
- } as AccessToken];
- } else {
- return [user, accessToken];
- }
- }
-};