PeerTube/server/types/models/account/account.ts

110 lines
2.9 KiB
TypeScript

import { FunctionProperties, PickWith } from '@shared/core-utils'
import { AccountModel } from '../../../models/account/account'
import {
MActor,
MActorAPAccount,
MActorAPI,
MActorAudience,
MActorDefault,
MActorDefaultLight,
MActorFormattable,
MActorId,
MActorServer,
MActorSummary,
MActorSummaryFormattable,
MActorUrl
} from '../actor'
import { MChannelDefault } from '../video/video-channels'
import { MAccountBlocklistId } from './account-blocklist'
type Use<K extends keyof AccountModel, M> = PickWith<AccountModel, K, M>
// ############################################################################
export type MAccount =
Omit<AccountModel, 'Actor' | 'User' | 'Application' | 'VideoChannels' | 'VideoPlaylists' |
'VideoComments' | 'BlockedAccounts'>
// ############################################################################
// Only some attributes
export type MAccountId = Pick<MAccount, 'id'>
export type MAccountUserId = Pick<MAccount, 'userId'>
// Only some Actor attributes
export type MAccountUrl = Use<'Actor', MActorUrl>
export type MAccountAudience = Use<'Actor', MActorAudience>
export type MAccountIdActor =
MAccountId &
Use<'Actor', MActor>
export type MAccountIdActorId =
MAccountId &
Use<'Actor', MActorId>
// ############################################################################
// Default scope
export type MAccountDefault =
MAccount &
Use<'Actor', MActorDefault>
// Default with default association scopes
export type MAccountDefaultChannelDefault =
MAccount &
Use<'Actor', MActorDefault> &
Use<'VideoChannels', MChannelDefault[]>
// We don't need some actors attributes
export type MAccountLight =
MAccount &
Use<'Actor', MActorDefaultLight>
// ############################################################################
// Full actor
export type MAccountActor =
MAccount &
Use<'Actor', MActor>
// Full actor with server
export type MAccountServer =
MAccount &
Use<'Actor', MActorServer>
// ############################################################################
// For API
export type MAccountSummary =
FunctionProperties<MAccount> &
Pick<MAccount, 'id' | 'name'> &
Use<'Actor', MActorSummary>
export type MAccountSummaryBlocks =
MAccountSummary &
Use<'BlockedAccounts', MAccountBlocklistId[]>
export type MAccountAPI =
MAccount &
Use<'Actor', MActorAPI>
// ############################################################################
// Format for API or AP object
export type MAccountSummaryFormattable =
FunctionProperties<MAccount> &
Pick<MAccount, 'id' | 'name'> &
Use<'Actor', MActorSummaryFormattable>
export type MAccountFormattable =
FunctionProperties<MAccount> &
Pick<MAccount, 'id' | 'name' | 'description' | 'createdAt' | 'updatedAt' | 'userId'> &
Use<'Actor', MActorFormattable>
export type MAccountAP =
Pick<MAccount, 'name' | 'description'> &
Use<'Actor', MActorAPAccount>