14795b68f2
* packedNotificationSchemaを更新 * read:gallery, write:gallery, read:gallery-likes, write:gallery-likesに翻訳を追加 * fix * add header, choice, invitation * test * fix * yatta * remove no longer needed "as PackedUser/PackedNote" * clean up * add simple-schema * fix lint * define items in full Schema * revert https://github.com/misskey-dev/misskey/pull/7772#discussion_r706627736 * user packとnote packの型不整合を修正 * add prelude/types.ts * emoji * signin * game * matching * fix * add emoji schema * add reversiGame * add reversiMatching * remove signin schema (use Signin entity) * add Packed type * note-reaction * user * user-group * user-list * note * app, messaging-message * notification * drive-file * drive-folder * following * muting * blocking * hashtag * page * app (with modifying schema) * import user? * channel * antenna * clip * gallery-post * emoji * Packed * reversi-matching * add changelog * add changelog * revert fix
76 lines
1.8 KiB
TypeScript
76 lines
1.8 KiB
TypeScript
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<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,
|
|
}).then(count => count > 0)
|
|
} : {})
|
|
};
|
|
}
|
|
}
|
|
|
|
export const packedAppSchema = {
|
|
type: 'object' as const,
|
|
optional: false as const, nullable: false as const,
|
|
properties: {
|
|
id: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const
|
|
},
|
|
name: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const
|
|
},
|
|
callbackUrl: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: true as const
|
|
},
|
|
permission: {
|
|
type: 'array' as const,
|
|
optional: false as const, nullable: false as const,
|
|
items: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const
|
|
}
|
|
},
|
|
secret: {
|
|
type: 'string' as const,
|
|
optional: true as const, nullable: false as const
|
|
},
|
|
isAuthorized: {
|
|
type: 'boolean' as const,
|
|
optional: true as const, nullable: false as const
|
|
}
|
|
}
|
|
};
|