import { EntityRepository, Repository } from 'typeorm'; import { App } from '@/models/entities/app'; import { AccessTokens } from '../index'; import { Packed } from '@/misc/schema'; import { User } from '../entities/user'; @EntityRepository(App) export class AppRepository extends Repository { public async pack( src: App['id'] | App, me?: { id: User['id'] } | null | undefined, options?: { detail?: boolean, includeSecret?: boolean, includeProfileImageIds?: boolean } ): Promise> { const opts = Object.assign({ detail: false, includeSecret: false, includeProfileImageIds: false, }, options); const app = typeof src === 'object' ? src : await this.findOneOrFail(src); return { id: app.id, name: app.name, callbackUrl: app.callbackUrl, permission: app.permission, ...(opts.includeSecret ? { secret: app.secret } : {}), ...(me ? { isAuthorized: await AccessTokens.count({ appId: app.id, userId: me.id, }).then(count => count > 0), } : {}), }; } }