PeerTube/server/typings/models/video/video-abuse.ts

36 lines
1.3 KiB
TypeScript
Raw Normal View History

2019-08-15 04:53:26 -05:00
import { VideoAbuseModel } from '../../../models/video/video-abuse'
import { PickWith } from '../../utils'
2020-04-21 02:52:21 -05:00
import { MVideoAccountLightBlacklistAllFiles, MVideo } from './video'
2019-08-20 12:05:31 -05:00
import { MAccountDefault, MAccountFormattable } from '../account'
2019-08-15 04:53:26 -05:00
2019-08-20 06:52:49 -05:00
type Use<K extends keyof VideoAbuseModel, M> = PickWith<VideoAbuseModel, K, M>
// ############################################################################
2019-08-15 04:53:26 -05:00
export type MVideoAbuse = Omit<VideoAbuseModel, 'Account' | 'Video' | 'toActivityPubObject'>
2019-08-20 06:52:49 -05:00
// ############################################################################
2019-08-15 04:53:26 -05:00
export type MVideoAbuseId = Pick<VideoAbuseModel, 'id'>
2020-01-31 09:56:52 -06:00
export type MVideoAbuseVideo =
MVideoAbuse &
2019-08-15 04:53:26 -05:00
Pick<VideoAbuseModel, 'toActivityPubObject'> &
2020-04-21 02:52:21 -05:00
Use<'Video', MVideo>
2019-08-15 04:53:26 -05:00
2020-01-31 09:56:52 -06:00
export type MVideoAbuseAccountVideo =
MVideoAbuse &
2019-08-20 06:52:49 -05:00
Pick<VideoAbuseModel, 'toActivityPubObject'> &
Use<'Video', MVideoAccountLightBlacklistAllFiles> &
2019-08-20 06:52:49 -05:00
Use<'Account', MAccountDefault>
2019-08-20 12:05:31 -05:00
// ############################################################################
// Format for API or AP object
2020-01-31 09:56:52 -06:00
export type MVideoAbuseFormattable =
MVideoAbuse &
2019-08-20 12:05:31 -05:00
Use<'Account', MAccountFormattable> &
Use<'Video', Pick<MVideoAccountLightBlacklistAllFiles,
'id' | 'uuid' | 'name' | 'nsfw' | 'getMiniatureStaticPath' | 'isBlacklisted' | 'VideoChannel'>>