2023-07-27 14:31:52 +09:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2023-09-20 11:33:36 +09:00
|
|
|
import { id } from './util/id.js';
|
2023-08-16 17:51:28 +09:00
|
|
|
import { MiUser } from './User.js';
|
2019-04-07 21:50:36 +09:00
|
|
|
|
2023-08-16 17:51:28 +09:00
|
|
|
@Entity('following')
|
2019-04-07 21:50:36 +09:00
|
|
|
@Index(['followerId', 'followeeId'], { unique: true })
|
2023-10-03 20:26:11 +09:00
|
|
|
@Index(['followeeId', 'followerHost', 'isFollowerHibernated'])
|
2023-08-16 17:51:28 +09:00
|
|
|
export class MiFollowing {
|
2019-04-07 21:50:36 +09:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: 'The followee user ID.',
|
2019-04-07 21:50:36 +09:00
|
|
|
})
|
2023-08-16 17:51:28 +09:00
|
|
|
public followeeId: MiUser['id'];
|
2019-04-07 21:50:36 +09:00
|
|
|
|
2023-08-16 17:51:28 +09:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 23:58:30 +09:00
|
|
|
onDelete: 'CASCADE',
|
2019-04-07 21:50:36 +09:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 17:51:28 +09:00
|
|
|
public followee: MiUser | null;
|
2019-04-07 21:50:36 +09:00
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: 'The follower user ID.',
|
2019-04-07 21:50:36 +09:00
|
|
|
})
|
2023-08-16 17:51:28 +09:00
|
|
|
public followerId: MiUser['id'];
|
2019-04-07 21:50:36 +09:00
|
|
|
|
2023-08-16 17:51:28 +09:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 23:58:30 +09:00
|
|
|
onDelete: 'CASCADE',
|
2019-04-07 21:50:36 +09:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 17:51:28 +09:00
|
|
|
public follower: MiUser | null;
|
2019-04-07 21:50:36 +09:00
|
|
|
|
2023-10-03 20:26:11 +09:00
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public isFollowerHibernated: boolean;
|
|
|
|
|
|
|
|
// タイムラインにその人のリプライまで含めるかどうか
|
|
|
|
@Column('boolean', {
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public withReplies: boolean;
|
|
|
|
|
2023-09-21 18:48:15 +09:00
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 32,
|
|
|
|
nullable: true,
|
|
|
|
})
|
|
|
|
public notify: 'normal' | null;
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
//#region Denormalized fields
|
2022-02-11 12:47:42 +09:00
|
|
|
@Index()
|
2019-04-07 21:50:36 +09:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 21:50:36 +09:00
|
|
|
})
|
|
|
|
public followerHost: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 19:03:49 +09:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 21:50:36 +09:00
|
|
|
})
|
|
|
|
public followerInbox: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 19:03:49 +09:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 21:50:36 +09:00
|
|
|
})
|
|
|
|
public followerSharedInbox: string | null;
|
|
|
|
|
2022-02-11 12:47:42 +09:00
|
|
|
@Index()
|
2019-04-07 21:50:36 +09:00
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 21:50:36 +09:00
|
|
|
})
|
|
|
|
public followeeHost: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 19:03:49 +09:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 21:50:36 +09:00
|
|
|
})
|
|
|
|
public followeeInbox: string | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
2019-04-11 19:03:49 +09:00
|
|
|
length: 512, nullable: true,
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: '[Denormalized]',
|
2019-04-07 21:50:36 +09:00
|
|
|
})
|
|
|
|
public followeeSharedInbox: string | null;
|
|
|
|
//#endregion
|
|
|
|
}
|