aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-11-09 17:51:58 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-11-27 19:40:51 +0100
commite4f97babf701481b55cc10fb3448feab5f97c867 (patch)
treeaf37402a594dc5ff09f71ecb0687e8cfe4cdb471 /shared/models/activitypub/objects
parent343ad675f2a26c15b86150a9a3552e619d5d44f4 (diff)
downloadPeerTube-e4f97babf701481b55cc10fb3448feab5f97c867.tar.gz
PeerTube-e4f97babf701481b55cc10fb3448feab5f97c867.tar.zst
PeerTube-e4f97babf701481b55cc10fb3448feab5f97c867.zip
Begin activitypub
Diffstat (limited to 'shared/models/activitypub/objects')
-rw-r--r--shared/models/activitypub/objects/common-objects.ts25
-rw-r--r--shared/models/activitypub/objects/index.ts3
-rw-r--r--shared/models/activitypub/objects/video-channel-object.ts8
-rw-r--r--shared/models/activitypub/objects/video-torrent-object.ts25
4 files changed, 61 insertions, 0 deletions
diff --git a/shared/models/activitypub/objects/common-objects.ts b/shared/models/activitypub/objects/common-objects.ts
new file mode 100644
index 000000000..3eaab21b5
--- /dev/null
+++ b/shared/models/activitypub/objects/common-objects.ts
@@ -0,0 +1,25 @@
1export interface ActivityIdentifierObject {
2 identifier: string
3 name: string
4}
5
6export interface ActivityTagObject {
7 type: 'Hashtag'
8 name: string
9}
10
11export interface ActivityIconObject {
12 type: 'Image'
13 url: string
14 mediaType: 'image/jpeg'
15 width: number
16 height: number
17}
18
19export interface ActivityUrlObject {
20 type: 'Link'
21 mimeType: 'video/mp4' | 'video/webm' | 'application/x-bittorrent' | 'application/x-bittorrent;x-scheme-handler/magnet'
22 url: string
23 width: number
24 size?: number
25}
diff --git a/shared/models/activitypub/objects/index.ts b/shared/models/activitypub/objects/index.ts
new file mode 100644
index 000000000..8c2e2daca
--- /dev/null
+++ b/shared/models/activitypub/objects/index.ts
@@ -0,0 +1,3 @@
1export * from './common-objects'
2export * from './video-channel-object'
3export * from './video-torrent-object'
diff --git a/shared/models/activitypub/objects/video-channel-object.ts b/shared/models/activitypub/objects/video-channel-object.ts
new file mode 100644
index 000000000..d64b4aed8
--- /dev/null
+++ b/shared/models/activitypub/objects/video-channel-object.ts
@@ -0,0 +1,8 @@
1import { ActivityIdentifierObject } from './common-objects'
2
3export interface VideoChannelObject {
4 type: 'VideoChannel'
5 name: string
6 content: string
7 uuid: ActivityIdentifierObject
8}
diff --git a/shared/models/activitypub/objects/video-torrent-object.ts b/shared/models/activitypub/objects/video-torrent-object.ts
new file mode 100644
index 000000000..00cc0a649
--- /dev/null
+++ b/shared/models/activitypub/objects/video-torrent-object.ts
@@ -0,0 +1,25 @@
1import {
2 ActivityIconObject,
3 ActivityIdentifierObject,
4 ActivityTagObject,
5 ActivityUrlObject
6} from './common-objects'
7
8export interface VideoTorrentObject {
9 type: 'Video'
10 name: string
11 duration: string
12 uuid: string
13 tag: ActivityTagObject[]
14 category: ActivityIdentifierObject
15 licence: ActivityIdentifierObject
16 language: ActivityIdentifierObject
17 views: number
18 nsfw: boolean
19 published: Date
20 updated: Date
21 mediaType: 'text/markdown'
22 content: string
23 icon: ActivityIconObject
24 url: ActivityUrlObject[]
25}