mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-23 02:58:09 +09:00
94228778c9
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { App } from '@/models/entities/app.js';
|
|
import { AccessTokens } from '../index.js';
|
|
import { Packed } from '@/misc/schema.js';
|
|
import { User } from '../entities/user.js';
|
|
|
|
@EntityRepository(App)
|
|
export class AppRepository extends Repository<App> {
|
|
public async pack(
|
|
src: App['id'] | App,
|
|
me?: { id: User['id'] } | null | undefined,
|
|
options?: {
|
|
detail?: boolean,
|
|
includeSecret?: boolean,
|
|
includeProfileImageIds?: boolean
|
|
}
|
|
): Promise<Packed<'App'>> {
|
|
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),
|
|
} : {}),
|
|
};
|
|
}
|
|
}
|