diff options
Diffstat (limited to 'shared/models')
-rw-r--r-- | shared/models/activitypub/objects/common-objects.ts | 51 | ||||
-rw-r--r-- | shared/models/server/custom-config.model.ts | 7 | ||||
-rw-r--r-- | shared/models/server/server-config.model.ts | 4 | ||||
-rw-r--r-- | shared/models/videos/index.ts | 1 | ||||
-rw-r--r-- | shared/models/videos/video-file.model.ts | 12 | ||||
-rw-r--r-- | shared/models/videos/video-streaming-playlist.model.ts | 3 | ||||
-rw-r--r-- | shared/models/videos/video.model.ts | 12 |
7 files changed, 61 insertions, 29 deletions
diff --git a/shared/models/activitypub/objects/common-objects.ts b/shared/models/activitypub/objects/common-objects.ts index 8c89810d6..2a6529fed 100644 --- a/shared/models/activitypub/objects/common-objects.ts +++ b/shared/models/activitypub/objects/common-objects.ts | |||
@@ -3,12 +3,6 @@ export interface ActivityIdentifierObject { | |||
3 | name: string | 3 | name: string |
4 | } | 4 | } |
5 | 5 | ||
6 | export interface ActivityTagObject { | ||
7 | type: 'Hashtag' | 'Mention' | ||
8 | href?: string | ||
9 | name: string | ||
10 | } | ||
11 | |||
12 | export interface ActivityIconObject { | 6 | export interface ActivityIconObject { |
13 | type: 'Image' | 7 | type: 'Image' |
14 | url: string | 8 | url: string |
@@ -19,8 +13,6 @@ export interface ActivityIconObject { | |||
19 | 13 | ||
20 | export type ActivityVideoUrlObject = { | 14 | export type ActivityVideoUrlObject = { |
21 | type: 'Link' | 15 | type: 'Link' |
22 | // TODO: remove mimeType (backward compatibility, introduced in v1.1.0) | ||
23 | mimeType?: 'video/mp4' | 'video/webm' | 'video/ogg' | ||
24 | mediaType: 'video/mp4' | 'video/webm' | 'video/ogg' | 16 | mediaType: 'video/mp4' | 'video/webm' | 'video/ogg' |
25 | href: string | 17 | href: string |
26 | height: number | 18 | height: number |
@@ -31,8 +23,6 @@ export type ActivityVideoUrlObject = { | |||
31 | export type ActivityPlaylistSegmentHashesObject = { | 23 | export type ActivityPlaylistSegmentHashesObject = { |
32 | type: 'Link' | 24 | type: 'Link' |
33 | name: 'sha256' | 25 | name: 'sha256' |
34 | // TODO: remove mimeType (backward compatibility, introduced in v1.1.0) | ||
35 | mimeType?: 'application/json' | ||
36 | mediaType: 'application/json' | 26 | mediaType: 'application/json' |
37 | href: string | 27 | href: string |
38 | } | 28 | } |
@@ -44,31 +34,56 @@ export type ActivityPlaylistInfohashesObject = { | |||
44 | 34 | ||
45 | export type ActivityPlaylistUrlObject = { | 35 | export type ActivityPlaylistUrlObject = { |
46 | type: 'Link' | 36 | type: 'Link' |
47 | // TODO: remove mimeType (backward compatibility, introduced in v1.1.0) | ||
48 | mimeType?: 'application/x-mpegURL' | ||
49 | mediaType: 'application/x-mpegURL' | 37 | mediaType: 'application/x-mpegURL' |
50 | href: string | 38 | href: string |
51 | tag?: (ActivityPlaylistSegmentHashesObject | ActivityPlaylistInfohashesObject)[] | 39 | tag?: ActivityTagObject[] |
52 | } | 40 | } |
53 | 41 | ||
54 | export type ActivityBitTorrentUrlObject = { | 42 | export type ActivityBitTorrentUrlObject = { |
55 | type: 'Link' | 43 | type: 'Link' |
56 | // TODO: remove mimeType (backward compatibility, introduced in v1.1.0) | ||
57 | mimeType?: 'application/x-bittorrent' | 'application/x-bittorrent;x-scheme-handler/magnet' | ||
58 | mediaType: 'application/x-bittorrent' | 'application/x-bittorrent;x-scheme-handler/magnet' | 44 | mediaType: 'application/x-bittorrent' | 'application/x-bittorrent;x-scheme-handler/magnet' |
59 | href: string | 45 | href: string |
60 | height: number | 46 | height: number |
61 | } | 47 | } |
62 | 48 | ||
49 | export type ActivityMagnetUrlObject = { | ||
50 | type: 'Link' | ||
51 | mediaType: 'application/x-bittorrent;x-scheme-handler/magnet' | ||
52 | href: string | ||
53 | height: number | ||
54 | } | ||
55 | |||
63 | export type ActivityHtmlUrlObject = { | 56 | export type ActivityHtmlUrlObject = { |
64 | type: 'Link' | 57 | type: 'Link' |
65 | // TODO: remove mimeType (backward compatibility, introduced in v1.1.0) | ||
66 | mimeType?: 'text/html' | ||
67 | mediaType: 'text/html' | 58 | mediaType: 'text/html' |
68 | href: string | 59 | href: string |
69 | } | 60 | } |
70 | 61 | ||
71 | export type ActivityUrlObject = ActivityVideoUrlObject | ActivityPlaylistUrlObject | ActivityBitTorrentUrlObject | ActivityHtmlUrlObject | 62 | export interface ActivityHashTagObject { |
63 | type: 'Hashtag' | 'Mention' | ||
64 | href?: string | ||
65 | name: string | ||
66 | } | ||
67 | |||
68 | export interface ActivityMentionObject { | ||
69 | type: 'Hashtag' | 'Mention' | ||
70 | href?: string | ||
71 | name: string | ||
72 | } | ||
73 | |||
74 | export type ActivityTagObject = ActivityPlaylistSegmentHashesObject | | ||
75 | ActivityPlaylistInfohashesObject | | ||
76 | ActivityVideoUrlObject | | ||
77 | ActivityHashTagObject | | ||
78 | ActivityMentionObject | | ||
79 | ActivityBitTorrentUrlObject | | ||
80 | ActivityMagnetUrlObject | ||
81 | |||
82 | export type ActivityUrlObject = ActivityVideoUrlObject | | ||
83 | ActivityPlaylistUrlObject | | ||
84 | ActivityBitTorrentUrlObject | | ||
85 | ActivityMagnetUrlObject | | ||
86 | ActivityHtmlUrlObject | ||
72 | 87 | ||
73 | export interface ActivityPubAttributedTo { | 88 | export interface ActivityPubAttributedTo { |
74 | type: 'Group' | 'Person' | 89 | type: 'Group' | 'Person' |
diff --git a/shared/models/server/custom-config.model.ts b/shared/models/server/custom-config.model.ts index c9957f825..97972b759 100644 --- a/shared/models/server/custom-config.model.ts +++ b/shared/models/server/custom-config.model.ts | |||
@@ -69,8 +69,10 @@ export interface CustomConfig { | |||
69 | 69 | ||
70 | transcoding: { | 70 | transcoding: { |
71 | enabled: boolean | 71 | enabled: boolean |
72 | |||
72 | allowAdditionalExtensions: boolean | 73 | allowAdditionalExtensions: boolean |
73 | allowAudioFiles: boolean | 74 | allowAudioFiles: boolean |
75 | |||
74 | threads: number | 76 | threads: number |
75 | resolutions: { | 77 | resolutions: { |
76 | '240p': boolean | 78 | '240p': boolean |
@@ -80,6 +82,11 @@ export interface CustomConfig { | |||
80 | '1080p': boolean | 82 | '1080p': boolean |
81 | '2160p': boolean | 83 | '2160p': boolean |
82 | } | 84 | } |
85 | |||
86 | webtorrent: { | ||
87 | enabled: boolean | ||
88 | } | ||
89 | |||
83 | hls: { | 90 | hls: { |
84 | enabled: boolean | 91 | enabled: boolean |
85 | } | 92 | } |
diff --git a/shared/models/server/server-config.model.ts b/shared/models/server/server-config.model.ts index 3498f86d7..6d1072333 100644 --- a/shared/models/server/server-config.model.ts +++ b/shared/models/server/server-config.model.ts | |||
@@ -56,6 +56,10 @@ export interface ServerConfig { | |||
56 | enabled: boolean | 56 | enabled: boolean |
57 | } | 57 | } |
58 | 58 | ||
59 | webtorrent: { | ||
60 | enabled: boolean | ||
61 | } | ||
62 | |||
59 | enabledResolutions: number[] | 63 | enabledResolutions: number[] |
60 | } | 64 | } |
61 | 65 | ||
diff --git a/shared/models/videos/index.ts b/shared/models/videos/index.ts index 194ae1b96..51ccb9fbd 100644 --- a/shared/models/videos/index.ts +++ b/shared/models/videos/index.ts | |||
@@ -23,6 +23,7 @@ export * from './playlist/video-playlist-element.model' | |||
23 | export * from './video-change-ownership.model' | 23 | export * from './video-change-ownership.model' |
24 | export * from './video-change-ownership-create.model' | 24 | export * from './video-change-ownership-create.model' |
25 | export * from './video-create.model' | 25 | export * from './video-create.model' |
26 | export * from './video-file.model' | ||
26 | export * from './video-privacy.enum' | 27 | export * from './video-privacy.enum' |
27 | export * from './video-rate.type' | 28 | export * from './video-rate.type' |
28 | export * from './video-resolution.enum' | 29 | export * from './video-resolution.enum' |
diff --git a/shared/models/videos/video-file.model.ts b/shared/models/videos/video-file.model.ts new file mode 100644 index 000000000..04da0627e --- /dev/null +++ b/shared/models/videos/video-file.model.ts | |||
@@ -0,0 +1,12 @@ | |||
1 | import { VideoConstant, VideoResolution } from '@shared/models' | ||
2 | |||
3 | export interface VideoFile { | ||
4 | magnetUri: string | ||
5 | resolution: VideoConstant<VideoResolution> | ||
6 | size: number // Bytes | ||
7 | torrentUrl: string | ||
8 | torrentDownloadUrl: string | ||
9 | fileUrl: string | ||
10 | fileDownloadUrl: string | ||
11 | fps: number | ||
12 | } | ||
diff --git a/shared/models/videos/video-streaming-playlist.model.ts b/shared/models/videos/video-streaming-playlist.model.ts index 17f8fe865..42fce4bdc 100644 --- a/shared/models/videos/video-streaming-playlist.model.ts +++ b/shared/models/videos/video-streaming-playlist.model.ts | |||
@@ -1,4 +1,5 @@ | |||
1 | import { VideoStreamingPlaylistType } from './video-streaming-playlist.type' | 1 | import { VideoStreamingPlaylistType } from './video-streaming-playlist.type' |
2 | import { VideoFile } from '@shared/models/videos/video-file.model' | ||
2 | 3 | ||
3 | export class VideoStreamingPlaylist { | 4 | export class VideoStreamingPlaylist { |
4 | id: number | 5 | id: number |
@@ -9,4 +10,6 @@ export class VideoStreamingPlaylist { | |||
9 | redundancies: { | 10 | redundancies: { |
10 | baseUrl: string | 11 | baseUrl: string |
11 | }[] | 12 | }[] |
13 | |||
14 | files: VideoFile[] | ||
12 | } | 15 | } |
diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index e057b3e06..7576439fe 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts | |||
@@ -5,17 +5,7 @@ import { VideoPrivacy } from './video-privacy.enum' | |||
5 | import { VideoScheduleUpdate } from './video-schedule-update.model' | 5 | import { VideoScheduleUpdate } from './video-schedule-update.model' |
6 | import { VideoConstant } from './video-constant.model' | 6 | import { VideoConstant } from './video-constant.model' |
7 | import { VideoStreamingPlaylist } from './video-streaming-playlist.model' | 7 | import { VideoStreamingPlaylist } from './video-streaming-playlist.model' |
8 | 8 | import { VideoFile } from './video-file.model' | |
9 | export interface VideoFile { | ||
10 | magnetUri: string | ||
11 | resolution: VideoConstant<VideoResolution> | ||
12 | size: number // Bytes | ||
13 | torrentUrl: string | ||
14 | torrentDownloadUrl: string | ||
15 | fileUrl: string | ||
16 | fileDownloadUrl: string | ||
17 | fps: number | ||
18 | } | ||
19 | 9 | ||
20 | export interface Video { | 10 | export interface Video { |
21 | id: number | 11 | id: number |