X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=server%2Fhelpers%2Fcustom-validators%2Factivitypub%2Fvideos.ts;h=80a32111704a8e59e19fdf78ac1f33a0963e73c0;hb=f443a74649174b2f9347c158e30f8ac7aa3e958a;hp=10588423a930bf79c6f65b4a9fc9ed54945aa013;hpb=0a67e28beeaf603110d52df3eda400e60531b3a4;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/custom-validators/activitypub/videos.ts b/server/helpers/custom-validators/activitypub/videos.ts index 10588423a..80a321117 100644 --- a/server/helpers/custom-validators/activitypub/videos.ts +++ b/server/helpers/custom-validators/activitypub/videos.ts @@ -1,35 +1,24 @@ -import * as validator from 'validator' -import { ACTIVITY_PUB } from '../../../initializers' -import { exists, isBooleanValid, isDateValid, isUUIDValid } from '../misc' +import validator from 'validator' +import { logger } from '@server/helpers/logger' +import { ActivityTrackerUrlObject, ActivityVideoFileMetadataUrlObject } from '@shared/models' +import { LiveVideoLatencyMode, VideoState } from '../../../../shared/models/videos' +import { ACTIVITY_PUB, CONSTRAINTS_FIELDS } from '../../../initializers/constants' +import { peertubeTruncate } from '../../core-utils' +import { exists, isArray, isBooleanValid, isDateValid, isUUIDValid } from '../misc' +import { isLiveLatencyModeValid } from '../video-lives' import { - isVideoAbuseReasonValid, isVideoDurationValid, isVideoNameValid, + isVideoStateValid, isVideoTagValid, isVideoTruncatedDescriptionValid, isVideoViewsValid } from '../videos' import { isActivityPubUrlValid, isBaseActivityValid, setValidAttributedTo } from './misc' -function isVideoTorrentCreateActivityValid (activity: any) { - return isBaseActivityValid(activity, 'Create') && - isVideoTorrentObjectValid(activity.object) -} - -function isVideoTorrentUpdateActivityValid (activity: any) { +function sanitizeAndCheckVideoTorrentUpdateActivity (activity: any) { return isBaseActivityValid(activity, 'Update') && - isVideoTorrentObjectValid(activity.object) -} - -function isVideoTorrentDeleteActivityValid (activity: any) { - return isBaseActivityValid(activity, 'Delete') -} - -function isVideoFlagValid (activity: any) { - return isBaseActivityValid(activity, 'Create') && - activity.object.type === 'Flag' && - isVideoAbuseReasonValid(activity.object.content) && - isActivityPubUrlValid(activity.object.object) + sanitizeAndCheckVideoTorrentObject(activity.object) } function isActivityPubVideoDurationValid (value: string) { @@ -41,37 +30,114 @@ function isActivityPubVideoDurationValid (value: string) { isVideoDurationValid(value.replace(/[^0-9]+/g, '')) } -function isVideoTorrentObjectValid (video: any) { - return video.type === 'Video' && - isActivityPubUrlValid(video.id) && +function sanitizeAndCheckVideoTorrentObject (video: any) { + if (!video || video.type !== 'Video') return false + + if (!setValidRemoteTags(video)) { + logger.debug('Video has invalid tags', { video }) + return false + } + if (!setValidRemoteVideoUrls(video)) { + logger.debug('Video has invalid urls', { video }) + return false + } + if (!setRemoteVideoTruncatedContent(video)) { + logger.debug('Video has invalid content', { video }) + return false + } + if (!setValidAttributedTo(video)) { + logger.debug('Video has invalid attributedTo', { video }) + return false + } + if (!setValidRemoteCaptions(video)) { + logger.debug('Video has invalid captions', { video }) + return false + } + if (!setValidRemoteIcon(video)) { + logger.debug('Video has invalid icons', { video }) + return false + } + + // Default attributes + if (!isVideoStateValid(video.state)) video.state = VideoState.PUBLISHED + if (!isBooleanValid(video.waitTranscoding)) video.waitTranscoding = false + if (!isBooleanValid(video.downloadEnabled)) video.downloadEnabled = true + if (!isBooleanValid(video.commentsEnabled)) video.commentsEnabled = false + if (!isBooleanValid(video.isLiveBroadcast)) video.isLiveBroadcast = false + if (!isBooleanValid(video.liveSaveReplay)) video.liveSaveReplay = false + if (!isBooleanValid(video.permanentLive)) video.permanentLive = false + if (!isLiveLatencyModeValid(video.latencyMode)) video.latencyMode = LiveVideoLatencyMode.DEFAULT + + return isActivityPubUrlValid(video.id) && isVideoNameValid(video.name) && isActivityPubVideoDurationValid(video.duration) && isUUIDValid(video.uuid) && - setValidRemoteTags(video) && - (!video.category || isRemoteIdentifierValid(video.category)) && - (!video.licence || isRemoteIdentifierValid(video.licence)) && - (!video.language || isRemoteIdentifierValid(video.language)) && + (!video.category || isRemoteNumberIdentifierValid(video.category)) && + (!video.licence || isRemoteNumberIdentifierValid(video.licence)) && + (!video.language || isRemoteStringIdentifierValid(video.language)) && isVideoViewsValid(video.views) && isBooleanValid(video.sensitive) && - isBooleanValid(video.commentsEnabled) && isDateValid(video.published) && isDateValid(video.updated) && + (!video.originallyPublishedAt || isDateValid(video.originallyPublishedAt)) && (!video.content || isRemoteVideoContentValid(video.mediaType, video.content)) && - isRemoteVideoIconValid(video.icon) && - setValidRemoteVideoUrls(video) && - video.url.length !== 0 && - setValidAttributedTo(video) && video.attributedTo.length !== 0 } +function isRemoteVideoUrlValid (url: any) { + return url.type === 'Link' && + // Video file link + ( + ACTIVITY_PUB.URL_MIME_TYPES.VIDEO.includes(url.mediaType) && + isActivityPubUrlValid(url.href) && + validator.isInt(url.height + '', { min: 0 }) && + validator.isInt(url.size + '', { min: 0 }) && + (!url.fps || validator.isInt(url.fps + '', { min: -1 })) + ) || + // Torrent link + ( + ACTIVITY_PUB.URL_MIME_TYPES.TORRENT.includes(url.mediaType) && + isActivityPubUrlValid(url.href) && + validator.isInt(url.height + '', { min: 0 }) + ) || + // Magnet link + ( + ACTIVITY_PUB.URL_MIME_TYPES.MAGNET.includes(url.mediaType) && + validator.isLength(url.href, { min: 5 }) && + validator.isInt(url.height + '', { min: 0 }) + ) || + // HLS playlist link + ( + (url.mediaType || url.mimeType) === 'application/x-mpegURL' && + isActivityPubUrlValid(url.href) && + isArray(url.tag) + ) || + isAPVideoTrackerUrlObject(url) || + isAPVideoFileUrlMetadataObject(url) +} + +function isAPVideoFileUrlMetadataObject (url: any): url is ActivityVideoFileMetadataUrlObject { + return url && + url.type === 'Link' && + url.mediaType === 'application/json' && + isArray(url.rel) && url.rel.includes('metadata') +} + +function isAPVideoTrackerUrlObject (url: any): url is ActivityTrackerUrlObject { + return isArray(url.rel) && + url.rel.includes('tracker') && + isActivityPubUrlValid(url.href) +} + // --------------------------------------------------------------------------- export { - isVideoTorrentCreateActivityValid, - isVideoTorrentUpdateActivityValid, - isVideoTorrentDeleteActivityValid, - isVideoFlagValid, - isVideoTorrentObjectValid + sanitizeAndCheckVideoTorrentUpdateActivity, + isRemoteStringIdentifierValid, + sanitizeAndCheckVideoTorrentObject, + isRemoteVideoUrlValid, + isAPVideoFileUrlMetadataObject, + isAPVideoTrackerUrlObject } // --------------------------------------------------------------------------- @@ -87,20 +153,45 @@ function setValidRemoteTags (video: any) { return true } -function isRemoteIdentifierValid (data: any) { +function setValidRemoteCaptions (video: any) { + if (!video.subtitleLanguage) video.subtitleLanguage = [] + + if (Array.isArray(video.subtitleLanguage) === false) return false + + video.subtitleLanguage = video.subtitleLanguage.filter(caption => { + if (!isActivityPubUrlValid(caption.url)) caption.url = null + + return isRemoteStringIdentifierValid(caption) + }) + + return true +} + +function isRemoteNumberIdentifierValid (data: any) { return validator.isInt(data.identifier, { min: 0 }) } +function isRemoteStringIdentifierValid (data: any) { + return typeof data.identifier === 'string' +} + function isRemoteVideoContentValid (mediaType: string, content: string) { return mediaType === 'text/markdown' && isVideoTruncatedDescriptionValid(content) } -function isRemoteVideoIconValid (icon: any) { - return icon.type === 'Image' && - isActivityPubUrlValid(icon.url) && - icon.mediaType === 'image/jpeg' && - validator.isInt(icon.width + '', { min: 0 }) && - validator.isInt(icon.height + '', { min: 0 }) +function setValidRemoteIcon (video: any) { + if (video.icon && !isArray(video.icon)) video.icon = [ video.icon ] + if (!video.icon) video.icon = [] + + video.icon = video.icon.filter(icon => { + return icon.type === 'Image' && + isActivityPubUrlValid(icon.url) && + icon.mediaType === 'image/jpeg' && + validator.isInt(icon.width + '', { min: 0 }) && + validator.isInt(icon.height + '', { min: 0 }) + }) + + return video.icon.length !== 0 } function setValidRemoteVideoUrls (video: any) { @@ -111,22 +202,10 @@ function setValidRemoteVideoUrls (video: any) { return true } -function isRemoteVideoUrlValid (url: any) { - return url.type === 'Link' && - ( - ACTIVITY_PUB.URL_MIME_TYPES.VIDEO.indexOf(url.mimeType) !== -1 && - isActivityPubUrlValid(url.href) && - validator.isInt(url.width + '', { min: 0 }) && - validator.isInt(url.size + '', { min: 0 }) - ) || - ( - ACTIVITY_PUB.URL_MIME_TYPES.TORRENT.indexOf(url.mimeType) !== -1 && - isActivityPubUrlValid(url.href) && - validator.isInt(url.width + '', { min: 0 }) - ) || - ( - ACTIVITY_PUB.URL_MIME_TYPES.MAGNET.indexOf(url.mimeType) !== -1 && - validator.isLength(url.href, { min: 5 }) && - validator.isInt(url.width + '', { min: 0 }) - ) +function setRemoteVideoTruncatedContent (video: any) { + if (video.content) { + video.content = peertubeTruncate(video.content, { length: CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max }) + } + + return true }