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
124 lines
3.4 KiB
TypeScript
124 lines
3.4 KiB
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { Antenna } from '@/models/entities/antenna';
|
|
import { Packed } from '@/misc/schema';
|
|
import { AntennaNotes, UserGroupJoinings } from '../index';
|
|
|
|
@EntityRepository(Antenna)
|
|
export class AntennaRepository extends Repository<Antenna> {
|
|
public async pack(
|
|
src: Antenna['id'] | Antenna,
|
|
): Promise<Packed<'Antenna'>> {
|
|
const antenna = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
|
|
|
const hasUnreadNote = (await AntennaNotes.findOne({ antennaId: antenna.id, read: false })) != null;
|
|
const userGroupJoining = antenna.userGroupJoiningId ? await UserGroupJoinings.findOne(antenna.userGroupJoiningId) : null;
|
|
|
|
return {
|
|
id: antenna.id,
|
|
createdAt: antenna.createdAt.toISOString(),
|
|
name: antenna.name,
|
|
keywords: antenna.keywords,
|
|
excludeKeywords: antenna.excludeKeywords,
|
|
src: antenna.src,
|
|
userListId: antenna.userListId,
|
|
userGroupId: userGroupJoining ? userGroupJoining.userGroupId : null,
|
|
users: antenna.users,
|
|
caseSensitive: antenna.caseSensitive,
|
|
notify: antenna.notify,
|
|
withReplies: antenna.withReplies,
|
|
withFile: antenna.withFile,
|
|
hasUnreadNote
|
|
};
|
|
}
|
|
}
|
|
|
|
export const packedAntennaSchema = {
|
|
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,
|
|
format: 'id'
|
|
},
|
|
createdAt: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const,
|
|
format: 'date-time'
|
|
},
|
|
name: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const
|
|
},
|
|
keywords: {
|
|
type: 'array' as const,
|
|
optional: false as const, nullable: false as const,
|
|
items: {
|
|
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
|
|
}
|
|
}
|
|
},
|
|
excludeKeywords: {
|
|
type: 'array' as const,
|
|
optional: false as const, nullable: false as const,
|
|
items: {
|
|
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
|
|
}
|
|
}
|
|
},
|
|
src: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: false as const,
|
|
enum: ['home', 'all', 'users', 'list', 'group']
|
|
},
|
|
userListId: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: true as const,
|
|
format: 'id'
|
|
},
|
|
userGroupId: {
|
|
type: 'string' as const,
|
|
optional: false as const, nullable: true as const,
|
|
format: 'id'
|
|
},
|
|
users: {
|
|
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
|
|
}
|
|
},
|
|
caseSensitive: {
|
|
type: 'boolean' as const,
|
|
optional: false as const, nullable: false as const,
|
|
default: false
|
|
},
|
|
notify: {
|
|
type: 'boolean' as const,
|
|
optional: false as const, nullable: false as const
|
|
},
|
|
withReplies: {
|
|
type: 'boolean' as const,
|
|
optional: false as const, nullable: false as const,
|
|
default: false
|
|
},
|
|
withFile: {
|
|
type: 'boolean' as const,
|
|
optional: false as const, nullable: false as const
|
|
},
|
|
hasUnreadNote: {
|
|
type: 'boolean' as const,
|
|
optional: false as const, nullable: false as const,
|
|
default: false
|
|
}
|
|
},
|
|
};
|