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