summaryrefslogtreecommitdiff
path: root/packages/backend/src/models/Ad.ts
blob: 108e991c70e8b078a2a019824e758082cd719793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * SPDX-FileCopyrightText: syuilo and misskey-project
 * SPDX-License-Identifier: AGPL-3.0-only
 */

import { Entity, Index, Column, PrimaryColumn } from 'typeorm';
import { id } from './util/id.js';

@Entity('ad')
export class MiAd {
	@PrimaryColumn(id())
	public id: string;

	@Index()
	@Column('timestamp with time zone', {
		comment: 'The expired date of the Ad.',
	})
	public expiresAt: Date;

	@Index()
	@Column('timestamp with time zone', {
		comment: 'The expired date of the Ad.',
		default: () => 'now()',
	})
	public startsAt: Date;

	@Column('varchar', {
		length: 32, nullable: false,
	})
	public place: string;

	// 今は使われていないが将来的に活用される可能性はある
	@Column('varchar', {
		length: 32, nullable: false,
	})
	public priority: string;

	@Column('integer', {
		default: 1, nullable: false,
	})
	public ratio: number;

	@Column('varchar', {
		length: 1024, nullable: false,
	})
	public url: string;

	@Column('varchar', {
		length: 1024, nullable: false,
	})
	public imageUrl: string;

	@Column('varchar', {
		length: 8192, nullable: false,
	})
	public memo: string;
	@Column('integer', {
		default: 0, nullable: false,
	})
	public dayOfWeek: number;
	constructor(data: Partial<MiAd>) {
		if (data == null) return;

		for (const [k, v] of Object.entries(data)) {
			(this as any)[k] = v;
		}
	}
}