]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/videos.ts
Refactor video creation
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / videos.ts
CommitLineData
7acee6f1 1import * as Bluebird from 'bluebird'
30bc55c8 2import { maxBy, minBy } from 'lodash'
2ccaeeb3 3import * as magnetUtil from 'magnet-uri'
30bc55c8 4import { join } from 'path'
892211e8 5import * as request from 'request'
30bc55c8 6import * as sequelize from 'sequelize'
09209296 7import {
d7a25329
C
8 ActivityHashTagObject,
9 ActivityMagnetUrlObject,
09209296 10 ActivityPlaylistSegmentHashesObject,
30bc55c8
C
11 ActivityPlaylistUrlObject,
12 ActivitypubHttpFetcherPayload,
ca6d3622 13 ActivityTagObject,
09209296 14 ActivityUrlObject,
1735c825 15 ActivityVideoUrlObject,
7b81edc8 16 VideoState
09209296 17} from '../../../shared/index'
2ccaeeb3 18import { VideoTorrentObject } from '../../../shared/models/activitypub/objects'
1297eb5d 19import { VideoPrivacy } from '../../../shared/models/videos'
30bc55c8
C
20import { ThumbnailType } from '../../../shared/models/videos/thumbnail.type'
21import { VideoStreamingPlaylistType } from '../../../shared/models/videos/video-streaming-playlist.type'
22import { buildRemoteVideoBaseUrl, checkUrlsSameHost, getAPId } from '../../helpers/activitypub'
ac940348 23import { isAPVideoFileMetadataObject, sanitizeAndCheckVideoTorrentObject } from '../../helpers/custom-validators/activitypub/videos'
30bc55c8 24import { isArray } from '../../helpers/custom-validators/misc'
2ccaeeb3 25import { isVideoFileInfoHashValid } from '../../helpers/custom-validators/videos'
d7a25329 26import { deleteNonExistingModels, resetSequelizeInstance, retryTransactionWrapper } from '../../helpers/database-utils'
2ccaeeb3 27import { logger } from '../../helpers/logger'
ca6d3622 28import { doRequest } from '../../helpers/requests'
30bc55c8 29import { fetchVideoByUrl, getExtFromMimetype, VideoFetchByUrlType } from '../../helpers/video'
e8bafea3
C
30import {
31 ACTIVITY_PUB,
32 MIMETYPES,
33 P2P_MEDIA_LOADER_PEER_VERSION,
34 PREVIEWS_SIZE,
35 REMOTE_SCHEME,
7b81edc8
C
36 STATIC_PATHS,
37 THUMBNAILS_SIZE
e8bafea3 38} from '../../initializers/constants'
30bc55c8
C
39import { sequelizeTypescript } from '../../initializers/database'
40import { AccountVideoRateModel } from '../../models/account/account-video-rate'
2ccaeeb3 41import { TagModel } from '../../models/video/tag'
3fd3ab2d 42import { VideoModel } from '../../models/video/video'
40e87e9e 43import { VideoCaptionModel } from '../../models/video/video-caption'
2ba92871 44import { VideoCommentModel } from '../../models/video/video-comment'
30bc55c8
C
45import { VideoFileModel } from '../../models/video/video-file'
46import { VideoShareModel } from '../../models/video/video-share'
47import { VideoStreamingPlaylistModel } from '../../models/video/video-streaming-playlist'
453e83ea 48import {
f92e7f76 49 MAccountIdActor,
453e83ea
C
50 MChannelAccountLight,
51 MChannelDefault,
52 MChannelId,
d7a25329 53 MStreamingPlaylist,
453e83ea 54 MVideo,
453e83ea 55 MVideoAccountLight,
f92e7f76 56 MVideoAccountLightBlacklistAllFiles,
453e83ea
C
57 MVideoAP,
58 MVideoAPWithoutCaption,
59 MVideoFile,
60 MVideoFullLight,
7b81edc8
C
61 MVideoId,
62 MVideoImmutable,
96ca24f0 63 MVideoThumbnail
26d6bf65
C
64} from '../../types/models'
65import { MThumbnail } from '../../types/models/video/thumbnail'
30bc55c8
C
66import { FilteredModelAttributes } from '../../types/sequelize'
67import { ActorFollowScoreCache } from '../files-cache'
68import { JobQueue } from '../job-queue'
69import { Notifier } from '../notifier'
70import { createPlaceholderThumbnail, createVideoMiniatureFromUrl } from '../thumbnail'
1ef65f4c 71import { setVideoTags } from '../video'
30bc55c8
C
72import { autoBlacklistVideoIfNeeded } from '../video-blacklist'
73import { getOrCreateActorAndServerAndModel } from './actor'
74import { crawlCollectionPage } from './crawl'
75import { sendCreateVideo, sendUpdateVideo } from './send'
76import { addVideoShares, shareVideoByServerAndChannel } from './share'
77import { addVideoComments } from './video-comments'
78import { createRates } from './video-rates'
453e83ea
C
79
80async function federateVideoIfNeeded (videoArg: MVideoAPWithoutCaption, isNewVideo: boolean, transaction?: sequelize.Transaction) {
81 const video = videoArg as MVideoAP
2186386c 82
5b77537c
C
83 if (
84 // Check this is not a blacklisted video, or unfederated blacklisted video
85 (video.isBlacklisted() === false || (isNewVideo === false && video.VideoBlacklist.unfederated === false)) &&
86 // Check the video is public/unlisted and published
22a73cb8 87 video.hasPrivacyForFederation() && video.state === VideoState.PUBLISHED
5b77537c 88 ) {
40e87e9e
C
89 // Fetch more attributes that we will need to serialize in AP object
90 if (isArray(video.VideoCaptions) === false) {
91 video.VideoCaptions = await video.$get('VideoCaptions', {
92 attributes: [ 'language' ],
93 transaction
e6122097 94 })
40e87e9e
C
95 }
96
2cebd797 97 if (isNewVideo) {
2186386c
C
98 // Now we'll add the video's meta data to our followers
99 await sendCreateVideo(video, transaction)
100 await shareVideoByServerAndChannel(video, transaction)
101 } else {
102 await sendUpdateVideo(video, transaction)
103 }
104 }
105}
892211e8 106
4157cdb1
C
107async function fetchRemoteVideo (videoUrl: string): Promise<{ response: request.RequestResponse, videoObject: VideoTorrentObject }> {
108 const options = {
109 uri: videoUrl,
110 method: 'GET',
111 json: true,
112 activityPub: true
113 }
892211e8 114
4157cdb1
C
115 logger.info('Fetching remote video %s.', videoUrl)
116
bdd428a6 117 const { response, body } = await doRequest<any>(options)
4157cdb1 118
5c6d985f 119 if (sanitizeAndCheckVideoTorrentObject(body) === false || checkUrlsSameHost(body.id, videoUrl) !== true) {
4157cdb1
C
120 logger.debug('Remote video JSON is not valid.', { body })
121 return { response, videoObject: undefined }
122 }
123
124 return { response, videoObject: body }
892211e8
C
125}
126
453e83ea 127async function fetchRemoteVideoDescription (video: MVideoAccountLight) {
50d6de9c 128 const host = video.VideoChannel.Account.Actor.Server.host
96f29c0f 129 const path = video.getDescriptionAPIPath()
892211e8
C
130 const options = {
131 uri: REMOTE_SCHEME.HTTP + '://' + host + path,
132 json: true
133 }
134
bdd428a6 135 const { body } = await doRequest<any>(options)
892211e8
C
136 return body.description ? body.description : ''
137}
138
f37dc0dd 139function getOrCreateVideoChannelFromVideoObject (videoObject: VideoTorrentObject) {
0f320037
C
140 const channel = videoObject.attributedTo.find(a => a.type === 'Group')
141 if (!channel) throw new Error('Cannot find associated video channel to video ' + videoObject.url)
142
5c6d985f
C
143 if (checkUrlsSameHost(channel.id, videoObject.id) !== true) {
144 throw new Error(`Video channel url ${channel.id} does not have the same host than video object id ${videoObject.id}`)
145 }
146
e587e0ec 147 return getOrCreateActorAndServerAndModel(channel.id, 'all')
0f320037
C
148}
149
f6eebcb3 150type SyncParam = {
1297eb5d
C
151 likes: boolean
152 dislikes: boolean
153 shares: boolean
154 comments: boolean
f6eebcb3 155 thumbnail: boolean
04b8c3fb 156 refreshVideo?: boolean
f6eebcb3 157}
453e83ea 158async function syncVideoExternalAttributes (video: MVideo, fetchedVideo: VideoTorrentObject, syncParam: SyncParam) {
f6eebcb3 159 logger.info('Adding likes/dislikes/shares/comments of video %s.', video.uuid)
2ccaeeb3 160
f6eebcb3 161 const jobPayloads: ActivitypubHttpFetcherPayload[] = []
2ccaeeb3 162
f6eebcb3 163 if (syncParam.likes === true) {
2ba92871
C
164 const handler = items => createRates(items, video, 'like')
165 const cleaner = crawlStartDate => AccountVideoRateModel.cleanOldRatesOf(video.id, 'like' as 'like', crawlStartDate)
166
167 await crawlCollectionPage<string>(fetchedVideo.likes, handler, cleaner)
ca6d3622 168 .catch(err => logger.error('Cannot add likes of video %s.', video.uuid, { err, rootUrl: fetchedVideo.likes }))
f6eebcb3
C
169 } else {
170 jobPayloads.push({ uri: fetchedVideo.likes, videoId: video.id, type: 'video-likes' as 'video-likes' })
171 }
7acee6f1 172
f6eebcb3 173 if (syncParam.dislikes === true) {
2ba92871
C
174 const handler = items => createRates(items, video, 'dislike')
175 const cleaner = crawlStartDate => AccountVideoRateModel.cleanOldRatesOf(video.id, 'dislike' as 'dislike', crawlStartDate)
176
177 await crawlCollectionPage<string>(fetchedVideo.dislikes, handler, cleaner)
ca6d3622 178 .catch(err => logger.error('Cannot add dislikes of video %s.', video.uuid, { err, rootUrl: fetchedVideo.dislikes }))
f6eebcb3
C
179 } else {
180 jobPayloads.push({ uri: fetchedVideo.dislikes, videoId: video.id, type: 'video-dislikes' as 'video-dislikes' })
181 }
182
183 if (syncParam.shares === true) {
2ba92871
C
184 const handler = items => addVideoShares(items, video)
185 const cleaner = crawlStartDate => VideoShareModel.cleanOldSharesOf(video.id, crawlStartDate)
186
187 await crawlCollectionPage<string>(fetchedVideo.shares, handler, cleaner)
ca6d3622 188 .catch(err => logger.error('Cannot add shares of video %s.', video.uuid, { err, rootUrl: fetchedVideo.shares }))
f6eebcb3
C
189 } else {
190 jobPayloads.push({ uri: fetchedVideo.shares, videoId: video.id, type: 'video-shares' as 'video-shares' })
191 }
7acee6f1 192
f6eebcb3 193 if (syncParam.comments === true) {
6b9c966f 194 const handler = items => addVideoComments(items)
2ba92871
C
195 const cleaner = crawlStartDate => VideoCommentModel.cleanOldCommentsOf(video.id, crawlStartDate)
196
197 await crawlCollectionPage<string>(fetchedVideo.comments, handler, cleaner)
ca6d3622 198 .catch(err => logger.error('Cannot add comments of video %s.', video.uuid, { err, rootUrl: fetchedVideo.comments }))
f6eebcb3 199 } else {
2ba92871 200 jobPayloads.push({ uri: fetchedVideo.comments, videoId: video.id, type: 'video-comments' as 'video-comments' })
f6eebcb3 201 }
7acee6f1 202
a1587156 203 await Bluebird.map(jobPayloads, payload => JobQueue.Instance.createJobWithPromise({ type: 'activitypub-http-fetcher', payload }))
2ccaeeb3
C
204}
205
943e5193
C
206type GetVideoResult <T> = Promise<{
207 video: T
208 created: boolean
209 autoBlacklisted?: boolean
210}>
211
212type GetVideoParamAll = {
a1587156
C
213 videoObject: { id: string } | string
214 syncParam?: SyncParam
215 fetchType?: 'all'
453e83ea 216 allowRefresh?: boolean
943e5193
C
217}
218
219type GetVideoParamImmutable = {
a1587156
C
220 videoObject: { id: string } | string
221 syncParam?: SyncParam
943e5193
C
222 fetchType: 'only-immutable-attributes'
223 allowRefresh: false
224}
225
226type GetVideoParamOther = {
a1587156
C
227 videoObject: { id: string } | string
228 syncParam?: SyncParam
943e5193
C
229 fetchType?: 'all' | 'only-video'
230 allowRefresh?: boolean
231}
232
233function getOrCreateVideoAndAccountAndChannel (options: GetVideoParamAll): GetVideoResult<MVideoAccountLightBlacklistAllFiles>
234function getOrCreateVideoAndAccountAndChannel (options: GetVideoParamImmutable): GetVideoResult<MVideoImmutable>
235function getOrCreateVideoAndAccountAndChannel (
236 options: GetVideoParamOther
237): GetVideoResult<MVideoAccountLightBlacklistAllFiles | MVideoThumbnail>
238async function getOrCreateVideoAndAccountAndChannel (
239 options: GetVideoParamAll | GetVideoParamImmutable | GetVideoParamOther
240): GetVideoResult<MVideoAccountLightBlacklistAllFiles | MVideoThumbnail | MVideoImmutable> {
4157cdb1
C
241 // Default params
242 const syncParam = options.syncParam || { likes: true, dislikes: true, shares: true, comments: true, thumbnail: true, refreshVideo: false }
243 const fetchType = options.fetchType || 'all'
74577825 244 const allowRefresh = options.allowRefresh !== false
1297eb5d 245
4157cdb1 246 // Get video url
848f499d 247 const videoUrl = getAPId(options.videoObject)
4157cdb1 248 let videoFromDatabase = await fetchVideoByUrl(videoUrl, fetchType)
943e5193 249
4157cdb1 250 if (videoFromDatabase) {
943e5193
C
251 // If allowRefresh is true, we could not call this function using 'only-immutable-attributes' fetch type
252 if (allowRefresh === true && (videoFromDatabase as MVideoThumbnail).isOutdated()) {
74577825 253 const refreshOptions = {
943e5193 254 video: videoFromDatabase as MVideoThumbnail,
74577825
C
255 fetchedType: fetchType,
256 syncParam
257 }
258
a1587156
C
259 if (syncParam.refreshVideo === true) {
260 videoFromDatabase = await refreshVideoIfNeeded(refreshOptions)
261 } else {
262 await JobQueue.Instance.createJobWithPromise({
263 type: 'activitypub-refresher',
264 payload: { type: 'video', url: videoFromDatabase.url }
265 })
266 }
d4defe07 267 }
1297eb5d 268
cef534ed 269 return { video: videoFromDatabase, created: false }
1297eb5d
C
270 }
271
4157cdb1
C
272 const { videoObject: fetchedVideo } = await fetchRemoteVideo(videoUrl)
273 if (!fetchedVideo) throw new Error('Cannot fetch remote video with url: ' + videoUrl)
7acee6f1 274
453e83ea
C
275 const actor = await getOrCreateVideoChannelFromVideoObject(fetchedVideo)
276 const videoChannel = actor.VideoChannel
7acee6f1 277
5fb2e288
C
278 try {
279 const { autoBlacklisted, videoCreated } = await retryTransactionWrapper(createVideo, fetchedVideo, videoChannel, syncParam.thumbnail)
280
281 await syncVideoExternalAttributes(videoCreated, fetchedVideo, syncParam)
7acee6f1 282
5fb2e288
C
283 return { video: videoCreated, created: true, autoBlacklisted }
284 } catch (err) {
285 // Maybe a concurrent getOrCreateVideoAndAccountAndChannel call created this video
286 if (err.name === 'SequelizeUniqueConstraintError') {
287 const fallbackVideo = await fetchVideoByUrl(videoUrl, fetchType)
288 if (fallbackVideo) return { video: fallbackVideo, created: false }
289 }
290
291 throw err
292 }
7acee6f1
C
293}
294
d4defe07 295async function updateVideoFromAP (options: {
a1587156
C
296 video: MVideoAccountLightBlacklistAllFiles
297 videoObject: VideoTorrentObject
298 account: MAccountIdActor
299 channel: MChannelDefault
1297eb5d 300 overrideTo?: string[]
d4defe07 301}) {
b4055e1c
C
302 const { video, videoObject, account, channel, overrideTo } = options
303
453e83ea 304 logger.debug('Updating remote video "%s".', options.videoObject.uuid, { account, channel })
e8d246d5 305
1297eb5d 306 let videoFieldsSave: any
b4055e1c
C
307 const wasPrivateVideo = video.privacy === VideoPrivacy.PRIVATE
308 const wasUnlistedVideo = video.privacy === VideoPrivacy.UNLISTED
1297eb5d
C
309
310 try {
453e83ea 311 let thumbnailModel: MThumbnail
e8bafea3
C
312
313 try {
ca6d3622 314 thumbnailModel = await createVideoMiniatureFromUrl(getThumbnailFromIcons(videoObject).url, video, ThumbnailType.MINIATURE)
e8bafea3 315 } catch (err) {
b4055e1c 316 logger.warn('Cannot generate thumbnail of %s.', videoObject.id, { err })
e8bafea3
C
317 }
318
453e83ea 319 const videoUpdated = await sequelizeTypescript.transaction(async t => {
e8d246d5 320 const sequelizeOptions = { transaction: t }
2ccaeeb3 321
b4055e1c 322 videoFieldsSave = video.toJSON()
2ccaeeb3 323
1297eb5d 324 // Check actor has the right to update the video
b4055e1c
C
325 const videoChannel = video.VideoChannel
326 if (videoChannel.Account.id !== account.id) {
327 throw new Error('Account ' + account.Actor.url + ' does not own video channel ' + videoChannel.Actor.url)
f6eebcb3
C
328 }
329
a1587156 330 const to = overrideTo || videoObject.to
b4055e1c
C
331 const videoData = await videoActivityObjectToDBAttributes(channel, videoObject, to)
332 video.name = videoData.name
333 video.uuid = videoData.uuid
334 video.url = videoData.url
335 video.category = videoData.category
336 video.licence = videoData.licence
337 video.language = videoData.language
338 video.description = videoData.description
339 video.support = videoData.support
340 video.nsfw = videoData.nsfw
341 video.commentsEnabled = videoData.commentsEnabled
342 video.downloadEnabled = videoData.downloadEnabled
343 video.waitTranscoding = videoData.waitTranscoding
344 video.state = videoData.state
345 video.duration = videoData.duration
346 video.createdAt = videoData.createdAt
347 video.publishedAt = videoData.publishedAt
348 video.originallyPublishedAt = videoData.originallyPublishedAt
349 video.privacy = videoData.privacy
350 video.channelId = videoData.channelId
351 video.views = videoData.views
352
453e83ea 353 const videoUpdated = await video.save(sequelizeOptions) as MVideoFullLight
b4055e1c 354
453e83ea 355 if (thumbnailModel) await videoUpdated.addAndSaveThumbnail(thumbnailModel, t)
e8bafea3 356
6872996d
C
357 if (videoUpdated.getPreview()) {
358 const previewUrl = videoUpdated.getPreview().getFileUrl(videoUpdated)
359 const previewModel = createPlaceholderThumbnail(previewUrl, video, ThumbnailType.PREVIEW, PREVIEWS_SIZE)
360 await videoUpdated.addAndSaveThumbnail(previewModel, t)
361 }
e8bafea3 362
e5565833 363 {
d7a25329 364 const videoFileAttributes = videoFileActivityUrlToDBAttributes(videoUpdated, videoObject.url)
e5565833 365 const newVideoFiles = videoFileAttributes.map(a => new VideoFileModel(a))
0032ebe9 366
e5565833 367 // Remove video files that do not exist anymore
d7a25329 368 const destroyTasks = deleteNonExistingModels(videoUpdated.VideoFiles, newVideoFiles, t)
e5565833 369 await Promise.all(destroyTasks)
2ccaeeb3 370
e5565833 371 // Update or add other one
d7a25329 372 const upsertTasks = newVideoFiles.map(f => VideoFileModel.customUpsert(f, 'video', t))
453e83ea 373 videoUpdated.VideoFiles = await Promise.all(upsertTasks)
e5565833 374 }
2ccaeeb3 375
09209296 376 {
453e83ea 377 const streamingPlaylistAttributes = streamingPlaylistActivityUrlToDBAttributes(videoUpdated, videoObject, videoUpdated.VideoFiles)
09209296
C
378 const newStreamingPlaylists = streamingPlaylistAttributes.map(a => new VideoStreamingPlaylistModel(a))
379
d7a25329
C
380 // Remove video playlists that do not exist anymore
381 const destroyTasks = deleteNonExistingModels(videoUpdated.VideoStreamingPlaylists, newStreamingPlaylists, t)
09209296
C
382 await Promise.all(destroyTasks)
383
d7a25329
C
384 let oldStreamingPlaylistFiles: MVideoFile[] = []
385 for (const videoStreamingPlaylist of videoUpdated.VideoStreamingPlaylists) {
386 oldStreamingPlaylistFiles = oldStreamingPlaylistFiles.concat(videoStreamingPlaylist.VideoFiles)
387 }
388
389 videoUpdated.VideoStreamingPlaylists = []
390
391 for (const playlistAttributes of streamingPlaylistAttributes) {
392 const streamingPlaylistModel = await VideoStreamingPlaylistModel.upsert(playlistAttributes, { returning: true, transaction: t })
393 .then(([ streamingPlaylist ]) => streamingPlaylist)
09209296 394
d7a25329
C
395 const newVideoFiles: MVideoFile[] = videoFileActivityUrlToDBAttributes(streamingPlaylistModel, playlistAttributes.tagAPObject)
396 .map(a => new VideoFileModel(a))
397 const destroyTasks = deleteNonExistingModels(oldStreamingPlaylistFiles, newVideoFiles, t)
398 await Promise.all(destroyTasks)
399
400 // Update or add other one
401 const upsertTasks = newVideoFiles.map(f => VideoFileModel.customUpsert(f, 'streaming-playlist', t))
402 streamingPlaylistModel.VideoFiles = await Promise.all(upsertTasks)
403
404 videoUpdated.VideoStreamingPlaylists.push(streamingPlaylistModel)
405 }
09209296
C
406 }
407
e5565833
C
408 {
409 // Update Tags
d7a25329
C
410 const tags = videoObject.tag
411 .filter(isAPHashTagObject)
412 .map(tag => tag.name)
1ef65f4c 413 await setVideoTags({ video: videoUpdated, tags, transaction: t, defaultValue: videoUpdated.Tags })
e5565833 414 }
2ccaeeb3 415
e5565833
C
416 {
417 // Update captions
453e83ea 418 await VideoCaptionModel.deleteAllCaptionsOfRemoteVideo(videoUpdated.id, t)
e5565833 419
b4055e1c 420 const videoCaptionsPromises = videoObject.subtitleLanguage.map(c => {
ca6d3622 421 return VideoCaptionModel.insertOrReplaceLanguage(videoUpdated.id, c.identifier, c.url, t)
e5565833 422 })
453e83ea 423 await Promise.all(videoCaptionsPromises)
e5565833 424 }
453e83ea
C
425
426 return videoUpdated
1297eb5d
C
427 })
428
5b77537c 429 await autoBlacklistVideoIfNeeded({
453e83ea 430 video: videoUpdated,
6691c522
C
431 user: undefined,
432 isRemote: true,
433 isNew: false,
434 transaction: undefined
435 })
b4055e1c 436
453e83ea 437 if (wasPrivateVideo || wasUnlistedVideo) Notifier.Instance.notifyOnNewVideoIfNeeded(videoUpdated) // Notify our users?
e8d246d5 438
b4055e1c 439 logger.info('Remote video with uuid %s updated', videoObject.uuid)
453e83ea
C
440
441 return videoUpdated
1297eb5d 442 } catch (err) {
b4055e1c
C
443 if (video !== undefined && videoFieldsSave !== undefined) {
444 resetSequelizeInstance(video, videoFieldsSave)
1297eb5d
C
445 }
446
447 // This is just a debug because we will retry the insert
448 logger.debug('Cannot update the remote video.', { err })
449 throw err
450 }
892211e8 451}
2186386c 452
04b8c3fb 453async function refreshVideoIfNeeded (options: {
a1587156
C
454 video: MVideoThumbnail
455 fetchedType: VideoFetchByUrlType
04b8c3fb 456 syncParam: SyncParam
453e83ea 457}): Promise<MVideoThumbnail> {
04b8c3fb
C
458 if (!options.video.isOutdated()) return options.video
459
460 // We need more attributes if the argument video was fetched with not enough joints
b4055e1c 461 const video = options.fetchedType === 'all'
0283eaac 462 ? options.video as MVideoAccountLightBlacklistAllFiles
b4055e1c 463 : await VideoModel.loadByUrlAndPopulateAccount(options.video.url)
04b8c3fb
C
464
465 try {
466 const { response, videoObject } = await fetchRemoteVideo(video.url)
467 if (response.statusCode === 404) {
468 logger.info('Cannot refresh remote video %s: video does not exist anymore. Deleting it.', video.url)
469
470 // Video does not exist anymore
471 await video.destroy()
472 return undefined
473 }
474
475 if (videoObject === undefined) {
476 logger.warn('Cannot refresh remote video %s: invalid body.', video.url)
477
478 await video.setAsRefreshed()
479 return video
480 }
481
482 const channelActor = await getOrCreateVideoChannelFromVideoObject(videoObject)
04b8c3fb
C
483
484 const updateOptions = {
485 video,
486 videoObject,
453e83ea 487 account: channelActor.VideoChannel.Account,
04b8c3fb
C
488 channel: channelActor.VideoChannel
489 }
490 await retryTransactionWrapper(updateVideoFromAP, updateOptions)
491 await syncVideoExternalAttributes(video, videoObject, options.syncParam)
492
6b9c966f
C
493 ActorFollowScoreCache.Instance.addGoodServerId(video.VideoChannel.Actor.serverId)
494
04b8c3fb
C
495 return video
496 } catch (err) {
497 logger.warn('Cannot refresh video %s.', options.video.url, { err })
498
6b9c966f
C
499 ActorFollowScoreCache.Instance.addBadServerId(video.VideoChannel.Actor.serverId)
500
04b8c3fb
C
501 // Don't refresh in loop
502 await video.setAsRefreshed()
503 return video
504 }
892211e8 505}
2186386c
C
506
507export {
1297eb5d 508 updateVideoFromAP,
04b8c3fb 509 refreshVideoIfNeeded,
2186386c
C
510 federateVideoIfNeeded,
511 fetchRemoteVideo,
1297eb5d 512 getOrCreateVideoAndAccountAndChannel,
2186386c 513 fetchRemoteVideoDescription,
4157cdb1 514 getOrCreateVideoChannelFromVideoObject
2186386c 515}
c48e82b5
C
516
517// ---------------------------------------------------------------------------
518
d7a25329 519function isAPVideoUrlObject (url: any): url is ActivityVideoUrlObject {
d7a25329 520 const urlMediaType = url.mediaType
30bc55c8
C
521
522 return MIMETYPES.VIDEO.MIMETYPE_EXT[urlMediaType] && urlMediaType.startsWith('video/')
c48e82b5 523}
4157cdb1 524
09209296 525function isAPStreamingPlaylistUrlObject (url: ActivityUrlObject): url is ActivityPlaylistUrlObject {
d7a25329 526 return url && url.mediaType === 'application/x-mpegURL'
09209296
C
527}
528
529function isAPPlaylistSegmentHashesUrlObject (tag: any): tag is ActivityPlaylistSegmentHashesObject {
d7a25329
C
530 return tag && tag.name === 'sha256' && tag.type === 'Link' && tag.mediaType === 'application/json'
531}
532
533function isAPMagnetUrlObject (url: any): url is ActivityMagnetUrlObject {
534 return url && url.mediaType === 'application/x-bittorrent;x-scheme-handler/magnet'
535}
09209296 536
d7a25329
C
537function isAPHashTagObject (url: any): url is ActivityHashTagObject {
538 return url && url.type === 'Hashtag'
c48e82b5 539}
4157cdb1 540
453e83ea 541async function createVideo (videoObject: VideoTorrentObject, channel: MChannelAccountLight, waitThumbnail = false) {
4157cdb1
C
542 logger.debug('Adding remote video %s.', videoObject.id)
543
453e83ea
C
544 const videoData = await videoActivityObjectToDBAttributes(channel, videoObject, videoObject.to)
545 const video = VideoModel.build(videoData) as MVideoThumbnail
e8bafea3 546
ca6d3622 547 const promiseThumbnail = createVideoMiniatureFromUrl(getThumbnailFromIcons(videoObject).url, video, ThumbnailType.MINIATURE)
6872996d
C
548 .catch(err => {
549 logger.error('Cannot create miniature from url.', { err })
550 return undefined
551 })
e8bafea3 552
453e83ea 553 let thumbnailModel: MThumbnail
e8bafea3
C
554 if (waitThumbnail === true) {
555 thumbnailModel = await promiseThumbnail
556 }
557
6691c522 558 const { autoBlacklisted, videoCreated } = await sequelizeTypescript.transaction(async t => {
4157cdb1
C
559 const sequelizeOptions = { transaction: t }
560
453e83ea
C
561 const videoCreated = await video.save(sequelizeOptions) as MVideoFullLight
562 videoCreated.VideoChannel = channel
e8bafea3 563
3acc5084 564 if (thumbnailModel) await videoCreated.addAndSaveThumbnail(thumbnailModel, t)
e8bafea3 565
ca6d3622
C
566 const previewIcon = getPreviewFromIcons(videoObject)
567 const previewUrl = previewIcon
568 ? previewIcon.url
569 : buildRemoteVideoBaseUrl(videoCreated, join(STATIC_PATHS.PREVIEWS, video.generatePreviewName()))
570 const previewModel = createPlaceholderThumbnail(previewUrl, videoCreated, ThumbnailType.PREVIEW, PREVIEWS_SIZE)
571
3acc5084 572 if (thumbnailModel) await videoCreated.addAndSaveThumbnail(previewModel, t)
4157cdb1
C
573
574 // Process files
d7a25329 575 const videoFileAttributes = videoFileActivityUrlToDBAttributes(videoCreated, videoObject.url)
4157cdb1
C
576
577 const videoFilePromises = videoFileAttributes.map(f => VideoFileModel.create(f, { transaction: t }))
ae9bbed4 578 const videoFiles = await Promise.all(videoFilePromises)
4157cdb1 579
d7a25329
C
580 const streamingPlaylistsAttributes = streamingPlaylistActivityUrlToDBAttributes(videoCreated, videoObject, videoFiles)
581 videoCreated.VideoStreamingPlaylists = []
582
583 for (const playlistAttributes of streamingPlaylistsAttributes) {
584 const playlistModel = await VideoStreamingPlaylistModel.create(playlistAttributes, { transaction: t })
585
586 const playlistFiles = videoFileActivityUrlToDBAttributes(playlistModel, playlistAttributes.tagAPObject)
587 const videoFilePromises = playlistFiles.map(f => VideoFileModel.create(f, { transaction: t }))
588 playlistModel.VideoFiles = await Promise.all(videoFilePromises)
589
590 videoCreated.VideoStreamingPlaylists.push(playlistModel)
591 }
09209296 592
4157cdb1 593 // Process tags
09209296 594 const tags = videoObject.tag
d7a25329 595 .filter(isAPHashTagObject)
09209296 596 .map(t => t.name)
1ef65f4c 597 await setVideoTags({ video: videoCreated, tags, transaction: t })
4157cdb1
C
598
599 // Process captions
600 const videoCaptionsPromises = videoObject.subtitleLanguage.map(c => {
ca6d3622 601 return VideoCaptionModel.insertOrReplaceLanguage(videoCreated.id, c.identifier, c.url, t)
4157cdb1 602 })
453e83ea 603 await Promise.all(videoCaptionsPromises)
6b9c966f 604
453e83ea 605 videoCreated.VideoFiles = videoFiles
4157cdb1 606
6691c522 607 const autoBlacklisted = await autoBlacklistVideoIfNeeded({
453e83ea 608 video: videoCreated,
6691c522
C
609 user: undefined,
610 isRemote: true,
611 isNew: true,
612 transaction: t
613 })
614
4157cdb1
C
615 logger.info('Remote video with uuid %s inserted.', videoObject.uuid)
616
6691c522 617 return { autoBlacklisted, videoCreated }
4157cdb1
C
618 })
619
e8bafea3 620 if (waitThumbnail === false) {
6872996d
C
621 // Error is already caught above
622 // eslint-disable-next-line @typescript-eslint/no-floating-promises
e8bafea3 623 promiseThumbnail.then(thumbnailModel => {
6872996d
C
624 if (!thumbnailModel) return
625
e8bafea3 626 thumbnailModel = videoCreated.id
4157cdb1 627
e8bafea3 628 return thumbnailModel.save()
6872996d 629 })
e8bafea3 630 }
4157cdb1 631
6691c522 632 return { autoBlacklisted, videoCreated }
4157cdb1
C
633}
634
a1587156 635function videoActivityObjectToDBAttributes (videoChannel: MChannelId, videoObject: VideoTorrentObject, to: string[] = []) {
bdd428a6
C
636 const privacy = to.includes(ACTIVITY_PUB.PUBLIC)
637 ? VideoPrivacy.PUBLIC
638 : VideoPrivacy.UNLISTED
4157cdb1 639
bdd428a6 640 const duration = videoObject.duration.replace(/[^\d]+/, '')
58b6fdca 641 const language = videoObject.language?.identifier
4157cdb1 642
58b6fdca
C
643 const category = videoObject.category
644 ? parseInt(videoObject.category.identifier, 10)
645 : undefined
4157cdb1 646
58b6fdca
C
647 const licence = videoObject.licence
648 ? parseInt(videoObject.licence.identifier, 10)
649 : undefined
4157cdb1
C
650
651 const description = videoObject.content || null
652 const support = videoObject.support || null
653
654 return {
655 name: videoObject.name,
656 uuid: videoObject.uuid,
657 url: videoObject.id,
658 category,
659 licence,
660 language,
661 description,
662 support,
663 nsfw: videoObject.sensitive,
664 commentsEnabled: videoObject.commentsEnabled,
7f2cfe3a 665 downloadEnabled: videoObject.downloadEnabled,
4157cdb1
C
666 waitTranscoding: videoObject.waitTranscoding,
667 state: videoObject.state,
668 channelId: videoChannel.id,
669 duration: parseInt(duration, 10),
670 createdAt: new Date(videoObject.published),
671 publishedAt: new Date(videoObject.published),
58b6fdca
C
672
673 originallyPublishedAt: videoObject.originallyPublishedAt
674 ? new Date(videoObject.originallyPublishedAt)
675 : null,
676
4157cdb1
C
677 updatedAt: new Date(videoObject.updated),
678 views: videoObject.views,
679 likes: 0,
680 dislikes: 0,
681 remote: true,
682 privacy
683 }
684}
685
d7a25329
C
686function videoFileActivityUrlToDBAttributes (
687 videoOrPlaylist: MVideo | MStreamingPlaylist,
688 urls: (ActivityTagObject | ActivityUrlObject)[]
689) {
690 const fileUrls = urls.filter(u => isAPVideoUrlObject(u)) as ActivityVideoUrlObject[]
4157cdb1 691
d7a25329 692 if (fileUrls.length === 0) return []
4157cdb1 693
3acc5084 694 const attributes: FilteredModelAttributes<VideoFileModel>[] = []
4157cdb1
C
695 for (const fileUrl of fileUrls) {
696 // Fetch associated magnet uri
d7a25329
C
697 const magnet = urls.filter(isAPMagnetUrlObject)
698 .find(u => u.height === fileUrl.height)
4157cdb1
C
699
700 if (!magnet) throw new Error('Cannot find associated magnet uri for file ' + fileUrl.href)
701
702 const parsed = magnetUtil.decode(magnet.href)
703 if (!parsed || isVideoFileInfoHashValid(parsed.infoHash) === false) {
704 throw new Error('Cannot parse magnet URI ' + magnet.href)
705 }
706
8319d6ae
RK
707 // Fetch associated metadata url, if any
708 const metadata = urls.filter(isAPVideoFileMetadataObject)
7b81edc8
C
709 .find(u => {
710 return u.height === fileUrl.height &&
711 u.fps === fileUrl.fps &&
712 u.rel.includes(fileUrl.mediaType)
713 })
8319d6ae 714
d7a25329 715 const mediaType = fileUrl.mediaType
4157cdb1 716 const attribute = {
30bc55c8 717 extname: getExtFromMimetype(MIMETYPES.VIDEO.MIMETYPE_EXT, mediaType),
4157cdb1
C
718 infoHash: parsed.infoHash,
719 resolution: fileUrl.height,
720 size: fileUrl.size,
d7a25329 721 fps: fileUrl.fps || -1,
8319d6ae 722 metadataUrl: metadata?.href,
d7a25329
C
723
724 // This is a video file owned by a video or by a streaming playlist
725 videoId: (videoOrPlaylist as MStreamingPlaylist).playlistUrl ? null : videoOrPlaylist.id,
726 videoStreamingPlaylistId: (videoOrPlaylist as MStreamingPlaylist).playlistUrl ? videoOrPlaylist.id : null
09209296
C
727 }
728
729 attributes.push(attribute)
730 }
731
732 return attributes
733}
734
453e83ea 735function streamingPlaylistActivityUrlToDBAttributes (video: MVideoId, videoObject: VideoTorrentObject, videoFiles: MVideoFile[]) {
09209296
C
736 const playlistUrls = videoObject.url.filter(u => isAPStreamingPlaylistUrlObject(u)) as ActivityPlaylistUrlObject[]
737 if (playlistUrls.length === 0) return []
738
d7a25329 739 const attributes: (FilteredModelAttributes<VideoStreamingPlaylistModel> & { tagAPObject?: ActivityTagObject[] })[] = []
09209296 740 for (const playlistUrlObject of playlistUrls) {
d7a25329
C
741 const segmentsSha256UrlObject = playlistUrlObject.tag.find(isAPPlaylistSegmentHashesUrlObject)
742
743 let files: unknown[] = playlistUrlObject.tag.filter(u => isAPVideoUrlObject(u)) as ActivityVideoUrlObject[]
744
745 // FIXME: backward compatibility introduced in v2.1.0
746 if (files.length === 0) files = videoFiles
747
09209296
C
748 if (!segmentsSha256UrlObject) {
749 logger.warn('No segment sha256 URL found in AP playlist object.', { playlistUrl: playlistUrlObject })
750 continue
751 }
752
753 const attribute = {
754 type: VideoStreamingPlaylistType.HLS,
755 playlistUrl: playlistUrlObject.href,
756 segmentsSha256Url: segmentsSha256UrlObject.href,
d7a25329 757 p2pMediaLoaderInfohashes: VideoStreamingPlaylistModel.buildP2PMediaLoaderInfoHashes(playlistUrlObject.href, files),
594d0c6a 758 p2pMediaLoaderPeerVersion: P2P_MEDIA_LOADER_PEER_VERSION,
d7a25329
C
759 videoId: video.id,
760 tagAPObject: playlistUrlObject.tag
09209296
C
761 }
762
4157cdb1
C
763 attributes.push(attribute)
764 }
765
766 return attributes
767}
ca6d3622
C
768
769function getThumbnailFromIcons (videoObject: VideoTorrentObject) {
770 let validIcons = videoObject.icon.filter(i => i.width > THUMBNAILS_SIZE.minWidth)
771 // Fallback if there are not valid icons
772 if (validIcons.length === 0) validIcons = videoObject.icon
773
774 return minBy(validIcons, 'width')
775}
776
777function getPreviewFromIcons (videoObject: VideoTorrentObject) {
778 const validIcons = videoObject.icon.filter(i => i.width > PREVIEWS_SIZE.minWidth)
779
780 // FIXME: don't put a fallback here for compatibility with PeerTube <2.2
781
782 return maxBy(validIcons, 'width')
783}