2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-05-04 15:15:57 +03:00
|
|
|
import { Entity, Index, Column, PrimaryColumn } from 'typeorm';
|
2023-09-20 05:33:36 +03:00
|
|
|
import { id } from './util/id.js';
|
2021-05-04 15:15:57 +03:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@Entity('ad')
|
|
|
|
export class MiAd {
|
2021-05-04 15:15:57 +03:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The created date of the Ad.',
|
2021-05-04 15:15:57 +03:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The expired date of the Ad.',
|
2021-05-04 15:15:57 +03:00
|
|
|
})
|
|
|
|
public expiresAt: Date;
|
|
|
|
|
2023-02-15 07:29:40 +02:00
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
|
|
|
comment: 'The expired date of the Ad.',
|
2023-02-16 15:08:45 +02:00
|
|
|
default: () => 'now()',
|
2023-02-15 07:29:40 +02:00
|
|
|
})
|
2023-02-15 07:31:59 +02:00
|
|
|
public startsAt: Date;
|
2023-02-15 07:29:40 +02:00
|
|
|
|
2021-05-04 15:15:57 +03:00
|
|
|
@Column('varchar', {
|
2021-12-09 16:58:30 +02:00
|
|
|
length: 32, nullable: false,
|
2021-05-04 15:15:57 +03:00
|
|
|
})
|
|
|
|
public place: string;
|
|
|
|
|
2021-05-07 08:22:13 +03:00
|
|
|
// 今は使われていないが将来的に活用される可能性はある
|
2021-05-04 15:15:57 +03:00
|
|
|
@Column('varchar', {
|
2021-12-09 16:58:30 +02:00
|
|
|
length: 32, nullable: false,
|
2021-05-04 15:15:57 +03:00
|
|
|
})
|
|
|
|
public priority: string;
|
|
|
|
|
2021-05-07 08:22:13 +03:00
|
|
|
@Column('integer', {
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 1, nullable: false,
|
2021-05-07 08:22:13 +03:00
|
|
|
})
|
|
|
|
public ratio: number;
|
|
|
|
|
2021-05-04 15:15:57 +03:00
|
|
|
@Column('varchar', {
|
2021-12-09 16:58:30 +02:00
|
|
|
length: 1024, nullable: false,
|
2021-05-04 15:15:57 +03:00
|
|
|
})
|
|
|
|
public url: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2021-12-09 16:58:30 +02:00
|
|
|
length: 1024, nullable: false,
|
2021-05-04 15:15:57 +03:00
|
|
|
})
|
|
|
|
public imageUrl: string;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2021-12-09 16:58:30 +02:00
|
|
|
length: 8192, nullable: false,
|
2021-05-04 15:15:57 +03:00
|
|
|
})
|
|
|
|
public memo: string;
|
2023-07-08 02:56:11 +03:00
|
|
|
@Column('integer', {
|
|
|
|
default: 0, nullable: false,
|
|
|
|
})
|
|
|
|
public dayOfWeek: number;
|
2023-08-16 11:51:28 +03:00
|
|
|
constructor(data: Partial<MiAd>) {
|
2021-05-04 15:15:57 +03:00
|
|
|
if (data == null) return;
|
|
|
|
|
|
|
|
for (const [k, v] of Object.entries(data)) {
|
|
|
|
(this as any)[k] = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|