2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-01-11 11:38:34 +00:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { id } from '../id.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { User } from './User.js';
|
2021-01-11 11:38:34 +00:00
|
|
|
|
|
|
|
// TODO: 同じdomain、同じscope、同じkeyのレコードは二つ以上存在しないように制約付けたい
|
|
|
|
@Entity()
|
|
|
|
export class RegistryItem {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The created date of the RegistryItem.',
|
2021-01-11 11:38:34 +00:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The updated date of the RegistryItem.',
|
2021-01-11 11:38:34 +00:00
|
|
|
})
|
|
|
|
public updatedAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The owner ID.',
|
2021-01-11 11:38:34 +00:00
|
|
|
})
|
|
|
|
public userId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2021-01-11 11:38:34 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 1024,
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The key of the RegistryItem.',
|
2021-01-11 11:38:34 +00:00
|
|
|
})
|
|
|
|
public key: string;
|
|
|
|
|
|
|
|
@Column('jsonb', {
|
|
|
|
default: {}, nullable: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The value of the RegistryItem.',
|
2021-01-11 11:38:34 +00:00
|
|
|
})
|
|
|
|
public value: any | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
2021-12-09 14:58:30 +00:00
|
|
|
length: 1024, array: true, default: '{}',
|
2021-01-11 11:38:34 +00:00
|
|
|
})
|
|
|
|
public scope: string[];
|
|
|
|
|
|
|
|
// サードパーティアプリに開放するときのためのカラム
|
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
2021-12-09 14:58:30 +00:00
|
|
|
length: 512, nullable: true,
|
2021-01-11 11:38:34 +00:00
|
|
|
})
|
|
|
|
public domain: string | null;
|
|
|
|
}
|