Sharkey/packages/backend/src/models/entities/Antenna.ts

97 lines
1.7 KiB
TypeScript
Raw Normal View History

import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
import { id } from '../id.js';
2022-09-17 21:27:08 +03:00
import { User } from './User.js';
import { UserList } from './UserList.js';
@Entity()
export class Antenna {
@PrimaryColumn(id())
public id: string;
@Column('timestamp with time zone', {
2021-12-09 16:58:30 +02:00
comment: 'The created date of the Antenna.',
})
public createdAt: Date;
@Index()
@Column('timestamp with time zone')
public lastUsedAt: Date;
@Index()
@Column({
...id(),
2021-12-09 16:58:30 +02:00
comment: 'The owner ID.',
})
public userId: User['id'];
@ManyToOne(type => User, {
2021-12-09 16:58:30 +02:00
onDelete: 'CASCADE',
})
@JoinColumn()
public user: User | null;
@Column('varchar', {
length: 128,
2021-12-09 16:58:30 +02:00
comment: 'The name of the Antenna.',
})
public name: string;
@Column('enum', { enum: ['home', 'all', 'users', 'list'] })
public src: 'home' | 'all' | 'users' | 'list';
@Column({
...id(),
2021-12-09 16:58:30 +02:00
nullable: true,
})
public userListId: UserList['id'] | null;
@ManyToOne(type => UserList, {
2021-12-09 16:58:30 +02:00
onDelete: 'CASCADE',
})
@JoinColumn()
public userList: UserList | null;
@Column('varchar', {
length: 1024, array: true,
2021-12-09 16:58:30 +02:00
default: '{}',
})
public users: string[];
@Column('jsonb', {
2021-12-09 16:58:30 +02:00
default: [],
})
public keywords: string[][];
2020-02-20 17:28:45 +02:00
@Column('jsonb', {
2021-12-09 16:58:30 +02:00
default: [],
2020-02-20 17:28:45 +02:00
})
public excludeKeywords: string[][];
@Column('boolean', {
2021-12-09 16:58:30 +02:00
default: false,
})
public caseSensitive: boolean;
@Column('boolean', {
2021-12-09 16:58:30 +02:00
default: false,
})
public withReplies: boolean;
@Column('boolean')
public withFile: boolean;
@Column('varchar', {
length: 2048, nullable: true,
})
public expression: string | null;
@Column('boolean')
public notify: boolean;
@Index()
@Column('boolean', {
default: true,
})
public isActive: boolean;
}