2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2023-09-20 05:33:36 +03:00
|
|
|
import { id } from './util/id.js';
|
2023-08-16 11:51:28 +03:00
|
|
|
import { MiUser } from './User.js';
|
2019-04-07 15:50:36 +03:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@Entity('follow_request')
|
2019-04-07 15:50:36 +03:00
|
|
|
@Index(['followerId', 'followeeId'], { unique: true })
|
2023-08-16 11:51:28 +03:00
|
|
|
export class MiFollowRequest {
|
2019-04-07 15:50:36 +03: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 FollowRequest.',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The followee user ID.',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
2023-08-16 11:51:28 +03:00
|
|
|
public followeeId: MiUser['id'];
|
2019-04-07 15:50:36 +03:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 11:51:28 +03:00
|
|
|
public followee: MiUser | null;
|
2019-04-07 15:50:36 +03:00
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The follower user ID.',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
2023-08-16 11:51:28 +03:00
|
|
|
public followerId: MiUser['id'];
|
2019-04-07 15:50:36 +03:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 11:51:28 +03:00
|
|
|
public follower: MiUser | null;
|
2019-04-07 15:50:36 +03:00
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'id of Follow Activity.',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
public requestId: string | null;
|
|
|
|
|
|
|
|
//#region Denormalized fields
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
public followerHost: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 13:03:49 +03:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
public followerInbox: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 13:03:49 +03:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
public followerSharedInbox: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
public followeeHost: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 13:03:49 +03:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
public followeeInbox: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 13:03:49 +03:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
public followeeSharedInbox: string | null;
|
|
|
|
//#endregion
|
|
|
|
}
|