mirror of https://github.com/Chocobozzz/PeerTube
71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import { ActorFollowModel } from '../../../models/activitypub/actor-follow'
|
|
import {
|
|
MActor,
|
|
MActorChannelAccountActor,
|
|
MActorDefault,
|
|
MActorDefaultAccountChannel,
|
|
MActorFormattable,
|
|
MActorHost,
|
|
MActorUsername
|
|
} from './actor'
|
|
import { PickWith } from '../../utils'
|
|
import { ActorModel } from '@server/models/activitypub/actor'
|
|
import { MChannelDefault } from '../video/video-channels'
|
|
|
|
type Use<K extends keyof ActorFollowModel, M> = PickWith<ActorFollowModel, K, M>
|
|
|
|
// ############################################################################
|
|
|
|
export type MActorFollow = Omit<ActorFollowModel, 'ActorFollower' | 'ActorFollowing'>
|
|
|
|
// ############################################################################
|
|
|
|
export type MActorFollowFollowingHost =
|
|
MActorFollow &
|
|
Use<'ActorFollowing', MActorUsername & MActorHost>
|
|
|
|
// ############################################################################
|
|
|
|
// With actors or actors default
|
|
|
|
export type MActorFollowActors =
|
|
MActorFollow &
|
|
Use<'ActorFollower', MActor> &
|
|
Use<'ActorFollowing', MActor>
|
|
|
|
export type MActorFollowActorsDefault =
|
|
MActorFollow &
|
|
Use<'ActorFollower', MActorDefault> &
|
|
Use<'ActorFollowing', MActorDefault>
|
|
|
|
export type MActorFollowFull =
|
|
MActorFollow &
|
|
Use<'ActorFollower', MActorDefaultAccountChannel> &
|
|
Use<'ActorFollowing', MActorDefaultAccountChannel>
|
|
|
|
// ############################################################################
|
|
|
|
// For subscriptions
|
|
|
|
type SubscriptionFollowing =
|
|
MActorDefault &
|
|
PickWith<ActorModel, 'VideoChannel', MChannelDefault>
|
|
|
|
export type MActorFollowActorsDefaultSubscription =
|
|
MActorFollow &
|
|
Use<'ActorFollower', MActorDefault> &
|
|
Use<'ActorFollowing', SubscriptionFollowing>
|
|
|
|
export type MActorFollowSubscriptions =
|
|
MActorFollow &
|
|
Use<'ActorFollowing', MActorChannelAccountActor>
|
|
|
|
// ############################################################################
|
|
|
|
// Format for API or AP object
|
|
|
|
export type MActorFollowFormattable =
|
|
Pick<MActorFollow, 'id' | 'score' | 'state' | 'createdAt' | 'updatedAt'> &
|
|
Use<'ActorFollower', MActorFormattable> &
|
|
Use<'ActorFollowing', MActorFormattable>
|