37 lines
818 B
TypeScript
37 lines
818 B
TypeScript
|
import { EntityRepository, Repository } from 'typeorm';
|
||
|
import { App } from '../entities/app';
|
||
|
import { AccessTokens } from '..';
|
||
|
|
||
|
@EntityRepository(App)
|
||
|
export class AppRepository extends Repository<App> {
|
||
|
public async pack(
|
||
|
src: App['id'] | App,
|
||
|
me?: any,
|
||
|
options?: {
|
||
|
detail?: boolean,
|
||
|
includeSecret?: boolean,
|
||
|
includeProfileImageIds?: boolean
|
||
|
}
|
||
|
) {
|
||
|
const opts = Object.assign({
|
||
|
detail: false,
|
||
|
includeSecret: false,
|
||
|
includeProfileImageIds: false
|
||
|
}, options);
|
||
|
|
||
|
const app = typeof src === 'object' ? src : await this.findOne(src);
|
||
|
|
||
|
return {
|
||
|
id: app.id,
|
||
|
name: app.name,
|
||
|
...(opts.includeSecret ? { secret: app.secret } : {}),
|
||
|
...(me ? {
|
||
|
isAuthorized: await AccessTokens.count({
|
||
|
appId: app.id,
|
||
|
userId: me,
|
||
|
}).then(count => count > 0)
|
||
|
} : {})
|
||
|
};
|
||
|
}
|
||
|
}
|