mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-09 23:22:52 +09:00
14148f6c4a
Resolve #7779
22 lines
657 B
TypeScript
22 lines
657 B
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { Apps } from '../index';
|
|
import { AuthSession } from '@/models/entities/auth-session';
|
|
import { awaitAll } from '@/prelude/await-all';
|
|
import { User } from '@/models/entities/user';
|
|
|
|
@EntityRepository(AuthSession)
|
|
export class AuthSessionRepository extends Repository<AuthSession> {
|
|
public async pack(
|
|
src: AuthSession['id'] | AuthSession,
|
|
me?: { id: User['id'] } | null | undefined
|
|
) {
|
|
const session = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
|
|
|
return await awaitAll({
|
|
id: session.id,
|
|
app: Apps.pack(session.appId, me),
|
|
token: session.token
|
|
});
|
|
}
|
|
}
|