iceshrimp-legacy/packages/backend/src/models/entities/antenna.ts

107 lines
1.9 KiB
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import {
PrimaryColumn,
Entity,
Index,
JoinColumn,
Column,
ManyToOne,
} from "typeorm";
import { User } from "./user.js";
import { id } from "../id.js";
import { UserList } from "./user-list.js";
import { UserGroupJoining } from "./user-group-joining.js";
@Entity()
export class Antenna {
@PrimaryColumn(id())
public id: string;
@Column('timestamp with time zone', {
2021-12-09 15:58:30 +01:00
comment: 'The created date of the Antenna.',
})
public createdAt: Date;
@Index()
@Column({
...id(),
2021-12-09 15:58:30 +01:00
comment: 'The owner ID.',
})
2023-01-13 05:40:33 +01:00
public userId: User["id"];
@ManyToOne(type => User, {
2021-12-09 15:58:30 +01:00
onDelete: 'CASCADE',
})
@JoinColumn()
public user: User | null;
@Column('varchar', {
length: 128,
2021-12-09 15:58:30 +01:00
comment: 'The name of the Antenna.',
})
public name: string;
2020-02-14 17:03:59 +01:00
@Column('enum', { enum: ['home', 'all', 'users', 'list', 'group'] })
2023-01-13 05:40:33 +01:00
public src: "home" | "all" | "users" | "list" | "group";
@Column({
...id(),
2021-12-09 15:58:30 +01:00
nullable: true,
})
2023-01-13 05:40:33 +01:00
public userListId: UserList["id"] | null;
@ManyToOne(type => UserList, {
2021-12-09 15:58:30 +01:00
onDelete: 'CASCADE',
})
@JoinColumn()
public userList: UserList | null;
2020-02-14 17:03:59 +01:00
@Column({
...id(),
2021-12-09 15:58:30 +01:00
nullable: true,
2020-02-14 17:03:59 +01:00
})
2023-01-13 05:40:33 +01:00
public userGroupJoiningId: UserGroupJoining["id"] | null;
2020-02-14 17:03:59 +01:00
@ManyToOne(type => UserGroupJoining, {
2021-12-09 15:58:30 +01:00
onDelete: 'CASCADE',
2020-02-14 17:03:59 +01:00
})
@JoinColumn()
public userGroupJoining: UserGroupJoining | null;
@Column('varchar', {
length: 1024, array: true,
2021-12-09 15:58:30 +01:00
default: '{}',
})
public users: string[];
@Column('jsonb', {
2021-12-09 15:58:30 +01:00
default: [],
})
public keywords: string[][];
2020-02-20 16:28:45 +01:00
@Column('jsonb', {
2021-12-09 15:58:30 +01:00
default: [],
2020-02-20 16:28:45 +01:00
})
public excludeKeywords: string[][];
@Column('boolean', {
2021-12-09 15:58:30 +01:00
default: false,
})
public caseSensitive: boolean;
@Column('boolean', {
2021-12-09 15:58:30 +01: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;
}