2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { id } from '../id.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { User } from './User.js';
|
|
|
|
import { UserList } from './UserList.js';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
@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.',
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
2023-03-20 12:12:38 +01:00
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone')
|
|
|
|
public lastUsedAt: Date;
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The owner ID.',
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
public userId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 15:58:30 +01:00
|
|
|
onDelete: 'CASCADE',
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'The name of the Antenna.',
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
public name: string;
|
|
|
|
|
2023-02-15 05:37:18 +01:00
|
|
|
@Column('enum', { enum: ['home', 'all', 'users', 'list'] })
|
|
|
|
public src: 'home' | 'all' | 'users' | 'list';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 15:58:30 +01:00
|
|
|
nullable: true,
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
public userListId: UserList['id'] | null;
|
|
|
|
|
|
|
|
@ManyToOne(type => UserList, {
|
2021-12-09 15:58:30 +01:00
|
|
|
onDelete: 'CASCADE',
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public userList: UserList | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024, array: true,
|
2021-12-09 15:58:30 +01:00
|
|
|
default: '{}',
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
public users: string[];
|
|
|
|
|
|
|
|
@Column('jsonb', {
|
2021-12-09 15:58:30 +01:00
|
|
|
default: [],
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
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[][];
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
@Column('boolean', {
|
2021-12-09 15:58:30 +01:00
|
|
|
default: false,
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
public caseSensitive: boolean;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
2021-12-09 15:58:30 +01:00
|
|
|
default: false,
|
2020-01-29 20:37:25 +01:00
|
|
|
})
|
|
|
|
public withReplies: boolean;
|
|
|
|
|
|
|
|
@Column('boolean')
|
|
|
|
public withFile: boolean;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 2048, nullable: true,
|
|
|
|
})
|
|
|
|
public expression: string | null;
|
|
|
|
|
|
|
|
@Column('boolean')
|
|
|
|
public notify: boolean;
|
2023-03-20 12:12:38 +01:00
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('boolean', {
|
|
|
|
default: true,
|
|
|
|
})
|
|
|
|
public isActive: boolean;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|