2020-01-29 21:37:25 +02:00
|
|
|
import { EntityRepository, Repository } from 'typeorm';
|
2021-08-19 16:04:15 +03:00
|
|
|
import { Antenna } from '@/models/entities/antenna';
|
2021-09-22 16:35:55 +03:00
|
|
|
import { Packed } from '@/misc/schema';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { AntennaNotes, UserGroupJoinings } from '../index';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
@EntityRepository(Antenna)
|
|
|
|
export class AntennaRepository extends Repository<Antenna> {
|
|
|
|
public async pack(
|
|
|
|
src: Antenna['id'] | Antenna,
|
2021-09-22 16:35:55 +03:00
|
|
|
): Promise<Packed<'Antenna'>> {
|
2021-02-13 08:33:38 +02:00
|
|
|
const antenna = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
const hasUnreadNote = (await AntennaNotes.findOne({ antennaId: antenna.id, read: false })) != null;
|
2020-02-14 18:03:59 +02:00
|
|
|
const userGroupJoining = antenna.userGroupJoiningId ? await UserGroupJoinings.findOne(antenna.userGroupJoiningId) : null;
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
return {
|
|
|
|
id: antenna.id,
|
|
|
|
createdAt: antenna.createdAt.toISOString(),
|
|
|
|
name: antenna.name,
|
|
|
|
keywords: antenna.keywords,
|
2020-02-20 17:28:45 +02:00
|
|
|
excludeKeywords: antenna.excludeKeywords,
|
2020-01-29 21:37:25 +02:00
|
|
|
src: antenna.src,
|
|
|
|
userListId: antenna.userListId,
|
2020-02-14 18:03:59 +02:00
|
|
|
userGroupId: userGroupJoining ? userGroupJoining.userGroupId : null,
|
2020-01-29 21:37:25 +02:00
|
|
|
users: antenna.users,
|
|
|
|
caseSensitive: antenna.caseSensitive,
|
|
|
|
notify: antenna.notify,
|
|
|
|
withReplies: antenna.withReplies,
|
|
|
|
withFile: antenna.withFile,
|
2021-12-09 16:58:30 +02:00
|
|
|
hasUnreadNote,
|
2020-01-29 21:37:25 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'id',
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
|
|
|
createdAt: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'date-time',
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
|
|
|
name: {
|
2021-03-06 15:34:11 +02:00
|
|
|
type: 'string' as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
optional: false as const, nullable: false as const,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
keywords: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
2021-03-13 15:15:20 +02:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'string' as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
2021-03-13 15:15:20 +02:00
|
|
|
excludeKeywords: {
|
2021-03-06 15:34:11 +02:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
2021-03-13 15:15:20 +02:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'string' as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
src: {
|
2020-01-29 21:37:25 +02:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
enum: ['home', 'all', 'users', 'list', 'group'],
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
userListId: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'id',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
userGroupId: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'id',
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
users: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'string' as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
caseSensitive: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
default: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
notify: {
|
|
|
|
type: 'boolean' as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
optional: false as const, nullable: false as const,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
withReplies: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
default: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
withFile: {
|
|
|
|
type: 'boolean' as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
optional: false as const, nullable: false as const,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
hasUnreadNote: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
default: false,
|
|
|
|
},
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
|
|
|
};
|