2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2022-02-26 20:07:39 -06:00
|
|
|
import { id } from '../id.js';
|
2023-08-16 03:51:28 -05:00
|
|
|
import { MiUser } from './User.js';
|
2019-04-07 07:50:36 -05:00
|
|
|
|
2023-08-16 03:51:28 -05:00
|
|
|
@Entity('following')
|
2019-04-07 07:50:36 -05:00
|
|
|
@Index(['followerId', 'followeeId'], { unique: true })
|
2023-08-16 03:51:28 -05:00
|
|
|
export class MiFollowing {
|
2019-04-07 07:50:36 -05:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: 'The created date of the Following.',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: 'The followee user ID.',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
2023-08-16 03:51:28 -05:00
|
|
|
public followeeId: MiUser['id'];
|
2019-04-07 07:50:36 -05:00
|
|
|
|
2023-08-16 03:51:28 -05:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 08:58:30 -06:00
|
|
|
onDelete: 'CASCADE',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 03:51:28 -05:00
|
|
|
public followee: MiUser | null;
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: 'The follower user ID.',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
2023-08-16 03:51:28 -05:00
|
|
|
public followerId: MiUser['id'];
|
2019-04-07 07:50:36 -05:00
|
|
|
|
2023-08-16 03:51:28 -05:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 08:58:30 -06:00
|
|
|
onDelete: 'CASCADE',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 03:51:28 -05:00
|
|
|
public follower: MiUser | null;
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
//#region Denormalized fields
|
2022-02-10 21:47:42 -06:00
|
|
|
@Index()
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public followerHost: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 05:03:49 -05:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public followerInbox: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 05:03:49 -05:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public followerSharedInbox: string | null;
|
|
|
|
|
2022-02-10 21:47:42 -06:00
|
|
|
@Index()
|
2019-04-07 07:50:36 -05:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public followeeHost: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 05:03:49 -05:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public followeeInbox: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 05:03:49 -05:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 08:58:30 -06:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 07:50:36 -05:00
|
|
|
})
|
|
|
|
public followeeSharedInbox: string | null;
|
|
|
|
//#endregion
|
|
|
|
}
|