PeerTube/shared/models/activitypub/activity.ts

74 lines
1.9 KiB
TypeScript
Raw Normal View History

2018-01-03 09:38:50 -06:00
import { ActivityPubActor } from './activitypub-actor'
2017-11-09 10:51:58 -06:00
import { ActivityPubSignature } from './activitypub-signature'
2017-12-14 10:38:41 -06:00
import { VideoTorrentObject } from './objects'
2017-11-23 07:19:55 -06:00
import { DislikeObject } from './objects/dislike-object'
2017-11-15 08:12:23 -06:00
import { VideoAbuseObject } from './objects/video-abuse-object'
import { VideoCommentObject } from './objects/video-comment-object'
2017-11-22 09:25:03 -06:00
import { ViewObject } from './objects/view-object'
2017-11-09 10:51:58 -06:00
2017-12-14 10:38:41 -06:00
export type Activity = ActivityCreate | ActivityUpdate |
2017-11-20 02:43:39 -06:00
ActivityDelete | ActivityFollow | ActivityAccept | ActivityAnnounce |
2018-01-11 10:37:49 -06:00
ActivityUndo | ActivityLike | ActivityReject
2017-11-09 10:51:58 -06:00
2018-01-11 10:37:49 -06:00
export type ActivityType = 'Create' | 'Update' | 'Delete' | 'Follow' | 'Accept' | 'Announce' | 'Undo' | 'Like' | 'Reject'
2017-11-09 10:51:58 -06:00
export interface ActivityAudience {
to: string[]
cc: string[]
}
2017-11-09 10:51:58 -06:00
export interface BaseActivity {
'@context'?: any[]
id: string
2017-11-17 04:35:10 -06:00
to?: string[]
2017-11-17 08:20:42 -06:00
cc?: string[]
2017-11-09 10:51:58 -06:00
actor: string
type: ActivityType
2017-11-17 04:35:10 -06:00
signature?: ActivityPubSignature
2017-11-09 10:51:58 -06:00
}
export interface ActivityCreate extends BaseActivity {
type: 'Create'
object: VideoTorrentObject | VideoAbuseObject | ViewObject | DislikeObject | VideoCommentObject
2017-11-09 10:51:58 -06:00
}
export interface ActivityUpdate extends BaseActivity {
type: 'Update'
2018-01-03 09:38:50 -06:00
object: VideoTorrentObject | ActivityPubActor
2017-11-09 10:51:58 -06:00
}
2017-11-13 10:39:41 -06:00
export interface ActivityDelete extends BaseActivity {
type: 'Delete'
2018-01-04 10:50:30 -06:00
object: string | { id: string }
2017-11-13 10:39:41 -06:00
}
export interface ActivityFollow extends BaseActivity {
type: 'Follow'
object: string
}
export interface ActivityAccept extends BaseActivity {
type: 'Accept'
2017-12-19 03:34:56 -06:00
object: ActivityFollow
2017-11-13 10:39:41 -06:00
}
2017-11-15 10:56:21 -06:00
2018-01-11 10:37:49 -06:00
export interface ActivityReject extends BaseActivity {
type: 'Reject'
object: ActivityFollow
}
2017-11-15 10:56:21 -06:00
export interface ActivityAnnounce extends BaseActivity {
type: 'Announce'
2018-01-26 05:02:18 -06:00
object: string | { id: string }
2017-11-15 10:56:21 -06:00
}
2017-11-20 02:43:39 -06:00
export interface ActivityUndo extends BaseActivity {
type: 'Undo',
2017-11-23 07:19:55 -06:00
object: ActivityFollow | ActivityLike | ActivityCreate
}
export interface ActivityLike extends BaseActivity {
type: 'Like',
object: string
2017-11-20 02:43:39 -06:00
}