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>
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { AuthSessionsRepository } from '@/models/index.js';
|
|
import { awaitAll } from '@/misc/prelude/await-all.js';
|
|
import type { AuthSession } from '@/models/entities/AuthSession.js';
|
|
import type { User } from '@/models/entities/User.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { AppEntityService } from './AppEntityService.js';
|
|
|
|
@Injectable()
|
|
export class AuthSessionEntityService {
|
|
constructor(
|
|
@Inject(DI.authSessionsRepository)
|
|
private authSessionsRepository: AuthSessionsRepository,
|
|
|
|
private appEntityService: AppEntityService,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public async pack(
|
|
src: AuthSession['id'] | AuthSession,
|
|
me?: { id: User['id'] } | null | undefined,
|
|
) {
|
|
const session = typeof src === 'object' ? src : await this.authSessionsRepository.findOneByOrFail({ id: src });
|
|
|
|
return await awaitAll({
|
|
id: session.id,
|
|
app: this.appEntityService.pack(session.appId, me),
|
|
token: session.token,
|
|
});
|
|
}
|
|
}
|