diff options
Diffstat (limited to 'server/models/video')
-rw-r--r-- | server/models/video/video-channel.ts | 4 | ||||
-rw-r--r-- | server/models/video/video.ts | 23 |
2 files changed, 16 insertions, 11 deletions
diff --git a/server/models/video/video-channel.ts b/server/models/video/video-channel.ts index e11268b2c..54f12dce3 100644 --- a/server/models/video/video-channel.ts +++ b/server/models/video/video-channel.ts | |||
@@ -1,6 +1,5 @@ | |||
1 | import * as Sequelize from 'sequelize' | 1 | import * as Sequelize from 'sequelize' |
2 | import { isVideoChannelDescriptionValid, isVideoChannelNameValid } from '../../helpers' | 2 | import { isVideoChannelDescriptionValid, isVideoChannelNameValid } from '../../helpers' |
3 | import { isVideoChannelUrlValid } from '../../helpers/custom-validators/video-channels' | ||
4 | import { CONSTRAINTS_FIELDS } from '../../initializers/constants' | 3 | import { CONSTRAINTS_FIELDS } from '../../initializers/constants' |
5 | import { sendDeleteVideoChannel } from '../../lib/activitypub/send/send-delete' | 4 | import { sendDeleteVideoChannel } from '../../lib/activitypub/send/send-delete' |
6 | 5 | ||
@@ -8,6 +7,7 @@ import { addMethodsToModel, getSort } from '../utils' | |||
8 | import { VideoChannelAttributes, VideoChannelInstance, VideoChannelMethods } from './video-channel-interface' | 7 | import { VideoChannelAttributes, VideoChannelInstance, VideoChannelMethods } from './video-channel-interface' |
9 | import { getAnnounceActivityPubUrl } from '../../lib/activitypub/url' | 8 | import { getAnnounceActivityPubUrl } from '../../lib/activitypub/url' |
10 | import { activityPubCollection } from '../../helpers/activitypub' | 9 | import { activityPubCollection } from '../../helpers/activitypub' |
10 | import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc' | ||
11 | 11 | ||
12 | let VideoChannel: Sequelize.Model<VideoChannelInstance, VideoChannelAttributes> | 12 | let VideoChannel: Sequelize.Model<VideoChannelInstance, VideoChannelAttributes> |
13 | let toFormattedJSON: VideoChannelMethods.ToFormattedJSON | 13 | let toFormattedJSON: VideoChannelMethods.ToFormattedJSON |
@@ -66,7 +66,7 @@ export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.Da | |||
66 | allowNull: false, | 66 | allowNull: false, |
67 | validate: { | 67 | validate: { |
68 | urlValid: value => { | 68 | urlValid: value => { |
69 | const res = isVideoChannelUrlValid(value) | 69 | const res = isActivityPubUrlValid(value) |
70 | if (res === false) throw new Error('Video channel URL is not valid.') | 70 | if (res === false) throw new Error('Video channel URL is not valid.') |
71 | } | 71 | } |
72 | } | 72 | } |
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index 4956b57ee..3f416d04c 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -7,7 +7,18 @@ import * as Sequelize from 'sequelize' | |||
7 | import { VideoPrivacy, VideoResolution } from '../../../shared' | 7 | import { VideoPrivacy, VideoResolution } from '../../../shared' |
8 | import { VideoTorrentObject } from '../../../shared/models/activitypub/objects/video-torrent-object' | 8 | import { VideoTorrentObject } from '../../../shared/models/activitypub/objects/video-torrent-object' |
9 | import { activityPubCollection } from '../../helpers/activitypub' | 9 | import { activityPubCollection } from '../../helpers/activitypub' |
10 | import { isVideoCategoryValid, isVideoLanguageValid, isVideoPrivacyValid, isVideoUrlValid } from '../../helpers/custom-validators/videos' | 10 | import { createTorrentPromise, renamePromise, statPromise, unlinkPromise, writeFilePromise } from '../../helpers/core-utils' |
11 | import { isVideoCategoryValid, isVideoLanguageValid, isVideoPrivacyValid } from '../../helpers/custom-validators/videos' | ||
12 | import { generateImageFromVideoFile, getVideoFileHeight, transcode } from '../../helpers/ffmpeg-utils' | ||
13 | import { | ||
14 | isActivityPubUrlValid, | ||
15 | isVideoDescriptionValid, | ||
16 | isVideoDurationValid, | ||
17 | isVideoLicenceValid, | ||
18 | isVideoNameValid, | ||
19 | isVideoNSFWValid | ||
20 | } from '../../helpers/index' | ||
21 | import { logger } from '../../helpers/logger' | ||
11 | import { | 22 | import { |
12 | API_VERSION, | 23 | API_VERSION, |
13 | CONFIG, | 24 | CONFIG, |
@@ -21,18 +32,12 @@ import { | |||
21 | VIDEO_LICENCES, | 32 | VIDEO_LICENCES, |
22 | VIDEO_PRIVACIES | 33 | VIDEO_PRIVACIES |
23 | } from '../../initializers/constants' | 34 | } from '../../initializers/constants' |
35 | import { getAnnounceActivityPubUrl } from '../../lib/activitypub/url' | ||
24 | import { sendDeleteVideo } from '../../lib/index' | 36 | import { sendDeleteVideo } from '../../lib/index' |
25 | |||
26 | import { addMethodsToModel, getSort } from '../utils' | 37 | import { addMethodsToModel, getSort } from '../utils' |
27 | |||
28 | import { TagInstance } from './tag-interface' | 38 | import { TagInstance } from './tag-interface' |
29 | import { VideoFileInstance, VideoFileModel } from './video-file-interface' | 39 | import { VideoFileInstance, VideoFileModel } from './video-file-interface' |
30 | import { VideoAttributes, VideoInstance, VideoMethods } from './video-interface' | 40 | import { VideoAttributes, VideoInstance, VideoMethods } from './video-interface' |
31 | import { isVideoNameValid, isVideoLicenceValid, isVideoNSFWValid, isVideoDescriptionValid, isVideoDurationValid } from '../../helpers/index' | ||
32 | import { logger } from '../../helpers/logger' | ||
33 | import { generateImageFromVideoFile, transcode, getVideoFileHeight } from '../../helpers/ffmpeg-utils' | ||
34 | import { createTorrentPromise, writeFilePromise, unlinkPromise, renamePromise, statPromise } from '../../helpers/core-utils' | ||
35 | import { getAnnounceActivityPubUrl } from '../../lib/activitypub/url' | ||
36 | 41 | ||
37 | let Video: Sequelize.Model<VideoInstance, VideoAttributes> | 42 | let Video: Sequelize.Model<VideoInstance, VideoAttributes> |
38 | let getOriginalFile: VideoMethods.GetOriginalFile | 43 | let getOriginalFile: VideoMethods.GetOriginalFile |
@@ -205,7 +210,7 @@ export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.Da | |||
205 | allowNull: false, | 210 | allowNull: false, |
206 | validate: { | 211 | validate: { |
207 | urlValid: value => { | 212 | urlValid: value => { |
208 | const res = isVideoUrlValid(value) | 213 | const res = isActivityPubUrlValid(value) |
209 | if (res === false) throw new Error('Video URL is not valid.') | 214 | if (res === false) throw new Error('Video URL is not valid.') |
210 | } | 215 | } |
211 | } | 216 | } |