mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:33:09 +02:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
103 lines
2.8 KiB
TypeScript
103 lines
2.8 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable, OnApplicationShutdown } from '@nestjs/common';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { AccessTokensRepository, AppsRepository, UsersRepository } from '@/models/index.js';
|
|
import type { LocalUser } from '@/models/entities/User.js';
|
|
import type { AccessToken } from '@/models/entities/AccessToken.js';
|
|
import { MemoryKVCache } from '@/misc/cache.js';
|
|
import type { App } from '@/models/entities/App.js';
|
|
import { CacheService } from '@/core/CacheService.js';
|
|
import isNativeToken from '@/misc/is-native-token.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
|
|
export class AuthenticationError extends Error {
|
|
constructor(message: string) {
|
|
super(message);
|
|
this.name = 'AuthenticationError';
|
|
}
|
|
}
|
|
|
|
@Injectable()
|
|
export class AuthenticateService implements OnApplicationShutdown {
|
|
private appCache: MemoryKVCache<App>;
|
|
|
|
constructor(
|
|
@Inject(DI.usersRepository)
|
|
private usersRepository: UsersRepository,
|
|
|
|
@Inject(DI.accessTokensRepository)
|
|
private accessTokensRepository: AccessTokensRepository,
|
|
|
|
@Inject(DI.appsRepository)
|
|
private appsRepository: AppsRepository,
|
|
|
|
private cacheService: CacheService,
|
|
) {
|
|
this.appCache = new MemoryKVCache<App>(Infinity);
|
|
}
|
|
|
|
@bindThis
|
|
public async authenticate(token: string | null | undefined): Promise<[LocalUser | null, AccessToken | null]> {
|
|
if (token == null) {
|
|
return [null, null];
|
|
}
|
|
|
|
if (isNativeToken(token)) {
|
|
const user = await this.cacheService.localUserByNativeTokenCache.fetch(token,
|
|
() => this.usersRepository.findOneBy({ token }) as Promise<LocalUser | null>);
|
|
|
|
if (user == null) {
|
|
throw new AuthenticationError('user not found');
|
|
}
|
|
|
|
return [user, null];
|
|
} else {
|
|
const accessToken = await this.accessTokensRepository.findOne({
|
|
where: [{
|
|
hash: token.toLowerCase(), // app
|
|
}, {
|
|
token: token, // miauth
|
|
}],
|
|
});
|
|
|
|
if (accessToken == null) {
|
|
throw new AuthenticationError('invalid signature');
|
|
}
|
|
|
|
this.accessTokensRepository.update(accessToken.id, {
|
|
lastUsedAt: new Date(),
|
|
});
|
|
|
|
const user = await this.cacheService.localUserByIdCache.fetch(accessToken.userId,
|
|
() => this.usersRepository.findOneBy({
|
|
id: accessToken.userId,
|
|
}) as Promise<LocalUser>);
|
|
|
|
if (accessToken.appId) {
|
|
const app = await this.appCache.fetch(accessToken.appId,
|
|
() => this.appsRepository.findOneByOrFail({ id: accessToken.appId! }));
|
|
|
|
return [user, {
|
|
id: accessToken.id,
|
|
permission: app.permission,
|
|
} as AccessToken];
|
|
} else {
|
|
return [user, accessToken];
|
|
}
|
|
}
|
|
}
|
|
|
|
@bindThis
|
|
public dispose(): void {
|
|
this.appCache.dispose();
|
|
}
|
|
|
|
@bindThis
|
|
public onApplicationShutdown(signal?: string | undefined): void {
|
|
this.dispose();
|
|
}
|
|
}
|