61 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { EntityRepository, Repository } from 'typeorm';
 | 
						|
import { Antenna } from '../entities/antenna';
 | 
						|
import { SchemaType } from '../../misc/schema';
 | 
						|
import { AntennaNotes, UserGroupJoinings } from '..';
 | 
						|
 | 
						|
export type PackedAntenna = SchemaType<typeof packedAntennaSchema>;
 | 
						|
 | 
						|
@EntityRepository(Antenna)
 | 
						|
export class AntennaRepository extends Repository<Antenna> {
 | 
						|
	public async pack(
 | 
						|
		src: Antenna['id'] | Antenna,
 | 
						|
	): Promise<PackedAntenna> {
 | 
						|
		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',
 | 
						|
			description: 'The unique identifier for this Antenna.',
 | 
						|
			example: 'xxxxxxxxxx',
 | 
						|
		},
 | 
						|
		createdAt: {
 | 
						|
			type: 'string' as const,
 | 
						|
			optional: false as const, nullable: false as const,
 | 
						|
			format: 'date-time',
 | 
						|
			description: 'The date that the Antenna was created.'
 | 
						|
		},
 | 
						|
		name: {
 | 
						|
			type: 'string' as const,
 | 
						|
			optional: false as const, nullable: false as const,
 | 
						|
			description: 'The name of the Antenna.'
 | 
						|
		},
 | 
						|
	},
 | 
						|
};
 |