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