2019-04-07 12:50:36 +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';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
@Index(['followerId', 'followeeId'], { unique: true })
|
|
|
|
export class FollowRequest {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The created date of the FollowRequest.',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The followee user ID.',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
public followeeId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public followee: User | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The follower user ID.',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
public followerId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public follower: User | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'id of Follow Activity.',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
public requestId: string | null;
|
|
|
|
|
|
|
|
//#region Denormalized fields
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
public followerHost: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 10:03:49 +00:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
public followerInbox: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 10:03:49 +00:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
public followerSharedInbox: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
public followeeHost: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 10:03:49 +00:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
public followeeInbox: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 10:03:49 +00:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 12:50:36 +00:00
|
|
|
})
|
|
|
|
public followeeSharedInbox: string | null;
|
|
|
|
//#endregion
|
|
|
|
}
|