]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/custom-validators/activitypub/videos.ts
Add hls support on server
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-validators / activitypub / videos.ts
CommitLineData
0d0e8dd0 1import * as validator from 'validator'
c73e83da
C
2import { ACTIVITY_PUB, CONSTRAINTS_FIELDS } from '../../../initializers'
3import { peertubeTruncate } from '../../core-utils'
09209296 4import { exists, isArray, isBooleanValid, isDateValid, isUUIDValid } from '../misc'
65fcc311 5import {
65fcc311 6 isVideoDurationValid,
65fcc311 7 isVideoNameValid,
2186386c 8 isVideoStateValid,
e34c85e5 9 isVideoTagValid,
8e10cf1a 10 isVideoTruncatedDescriptionValid,
8e10cf1a 11 isVideoViewsValid
65fcc311 12} from '../videos'
50d6de9c 13import { isActivityPubUrlValid, isBaseActivityValid, setValidAttributedTo } from './misc'
2186386c 14import { VideoState } from '../../../../shared/models/videos'
0d0e8dd0 15
1d6e5dfc 16function sanitizeAndCheckVideoTorrentUpdateActivity (activity: any) {
0d0e8dd0 17 return isBaseActivityValid(activity, 'Update') &&
1d6e5dfc 18 sanitizeAndCheckVideoTorrentObject(activity.object)
65fcc311
C
19}
20
8e10cf1a
C
21function isActivityPubVideoDurationValid (value: string) {
22 // https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration
23 return exists(value) &&
24 typeof value === 'string' &&
25 value.startsWith('PT') &&
26 value.endsWith('S') &&
efc32059 27 isVideoDurationValid(value.replace(/[^0-9]+/g, ''))
8e10cf1a
C
28}
29
1d6e5dfc 30function sanitizeAndCheckVideoTorrentObject (video: any) {
fbad87b0 31 if (!video || video.type !== 'Video') return false
5cf13500 32
1d6e5dfc
C
33 if (!setValidRemoteTags(video)) return false
34 if (!setValidRemoteVideoUrls(video)) return false
35 if (!setRemoteVideoTruncatedContent(video)) return false
36 if (!setValidAttributedTo(video)) return false
40e87e9e 37 if (!setValidRemoteCaptions(video)) return false
1d6e5dfc 38
2186386c
C
39 // Default attributes
40 if (!isVideoStateValid(video.state)) video.state = VideoState.PUBLISHED
41 if (!isBooleanValid(video.waitTranscoding)) video.waitTranscoding = false
42
5cf13500 43 return isActivityPubUrlValid(video.id) &&
0d0e8dd0 44 isVideoNameValid(video.name) &&
8e10cf1a 45 isActivityPubVideoDurationValid(video.duration) &&
0d0e8dd0 46 isUUIDValid(video.uuid) &&
9d3ef9fe
C
47 (!video.category || isRemoteNumberIdentifierValid(video.category)) &&
48 (!video.licence || isRemoteNumberIdentifierValid(video.licence)) &&
49 (!video.language || isRemoteStringIdentifierValid(video.language)) &&
efc32059 50 isVideoViewsValid(video.views) &&
0a67e28b 51 isBooleanValid(video.sensitive) &&
47564bbe 52 isBooleanValid(video.commentsEnabled) &&
0d0e8dd0
C
53 isDateValid(video.published) &&
54 isDateValid(video.updated) &&
f595d394 55 (!video.content || isRemoteVideoContentValid(video.mediaType, video.content)) &&
0d0e8dd0 56 isRemoteVideoIconValid(video.icon) &&
50d6de9c 57 video.url.length !== 0 &&
50d6de9c 58 video.attributedTo.length !== 0
65fcc311
C
59}
60
c48e82b5
C
61function isRemoteVideoUrlValid (url: any) {
62 // FIXME: Old bug, we used the width to represent the resolution. Remove it in a few release (currently beta.11)
63 if (url.width && !url.height) url.height = url.width
64
65 return url.type === 'Link' &&
66 (
e27ff5da
C
67 // TODO: remove mimeType (backward compatibility, introduced in v1.1.0)
68 ACTIVITY_PUB.URL_MIME_TYPES.VIDEO.indexOf(url.mediaType || url.mimeType) !== -1 &&
c48e82b5
C
69 isActivityPubUrlValid(url.href) &&
70 validator.isInt(url.height + '', { min: 0 }) &&
71 validator.isInt(url.size + '', { min: 0 }) &&
a3737cbf 72 (!url.fps || validator.isInt(url.fps + '', { min: -1 }))
c48e82b5
C
73 ) ||
74 (
e27ff5da 75 ACTIVITY_PUB.URL_MIME_TYPES.TORRENT.indexOf(url.mediaType || url.mimeType) !== -1 &&
c48e82b5
C
76 isActivityPubUrlValid(url.href) &&
77 validator.isInt(url.height + '', { min: 0 })
78 ) ||
79 (
e27ff5da 80 ACTIVITY_PUB.URL_MIME_TYPES.MAGNET.indexOf(url.mediaType || url.mimeType) !== -1 &&
c48e82b5
C
81 validator.isLength(url.href, { min: 5 }) &&
82 validator.isInt(url.height + '', { min: 0 })
09209296
C
83 ) ||
84 (
85 (url.mediaType || url.mimeType) === 'application/x-mpegURL' &&
86 isActivityPubUrlValid(url.href) &&
87 isArray(url.tag)
c48e82b5
C
88 )
89}
90
65fcc311
C
91// ---------------------------------------------------------------------------
92
93export {
1d6e5dfc 94 sanitizeAndCheckVideoTorrentUpdateActivity,
9d3ef9fe 95 isRemoteStringIdentifierValid,
c48e82b5
C
96 sanitizeAndCheckVideoTorrentObject,
97 isRemoteVideoUrlValid
65fcc311
C
98}
99
100// ---------------------------------------------------------------------------
101
0d0e8dd0
C
102function setValidRemoteTags (video: any) {
103 if (Array.isArray(video.tag) === false) return false
65fcc311 104
a2431b7d 105 video.tag = video.tag.filter(t => {
0d0e8dd0
C
106 return t.type === 'Hashtag' &&
107 isVideoTagValid(t.name)
108 })
72c7248b 109
0d0e8dd0 110 return true
72c7248b
C
111}
112
40e87e9e
C
113function setValidRemoteCaptions (video: any) {
114 if (!video.subtitleLanguage) video.subtitleLanguage = []
115
116 if (Array.isArray(video.subtitleLanguage) === false) return false
117
118 video.subtitleLanguage = video.subtitleLanguage.filter(caption => {
119 return isRemoteStringIdentifierValid(caption)
120 })
121
122 return true
123}
124
9d3ef9fe 125function isRemoteNumberIdentifierValid (data: any) {
0d0e8dd0 126 return validator.isInt(data.identifier, { min: 0 })
72c7248b
C
127}
128
9d3ef9fe
C
129function isRemoteStringIdentifierValid (data: any) {
130 return typeof data.identifier === 'string'
131}
132
0d0e8dd0
C
133function isRemoteVideoContentValid (mediaType: string, content: string) {
134 return mediaType === 'text/markdown' && isVideoTruncatedDescriptionValid(content)
72c7248b
C
135}
136
0d0e8dd0
C
137function isRemoteVideoIconValid (icon: any) {
138 return icon.type === 'Image' &&
a2431b7d 139 isActivityPubUrlValid(icon.url) &&
0d0e8dd0 140 icon.mediaType === 'image/jpeg' &&
efc32059
C
141 validator.isInt(icon.width + '', { min: 0 }) &&
142 validator.isInt(icon.height + '', { min: 0 })
72c7248b
C
143}
144
0d0e8dd0
C
145function setValidRemoteVideoUrls (video: any) {
146 if (Array.isArray(video.url) === false) return false
65fcc311 147
a2431b7d 148 video.url = video.url.filter(u => isRemoteVideoUrlValid(u))
65fcc311 149
0d0e8dd0 150 return true
65fcc311
C
151}
152
45cd28b6 153function setRemoteVideoTruncatedContent (video: any) {
c73e83da
C
154 if (video.content) {
155 video.content = peertubeTruncate(video.content, CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max)
156 }
157
158 return true
159}