2023-07-27 00:31:52 -05:00
|
|
|
/*
|
2024-02-13 09:59:27 -06:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 00:31:52 -05:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2023-09-19 21:33:36 -05:00
|
|
|
import { id } from './util/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-10-03 06:26:11 -05:00
|
|
|
@Index(['followeeId', 'followerHost', 'isFollowerHibernated'])
|
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({
|
|
|
|
...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
|
|
|
|
2023-10-03 06:26:11 -05:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public isFollowerHibernated: boolean;
|
|
|
|
|
|
|
|
// タイムラインにその人のリプライまで含めるかどうか
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public withReplies: boolean;
|
|
|
|
|
2023-09-21 04:48:15 -05:00
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 32,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public notify: 'normal' | 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
|
|
|
|
}
|