]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/videos.ts
Process remaining segment hashes on live ending
[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'
053aed43 7import { VideoLiveModel } from '@server/models/video/video-live'
09209296 8import {
d7a25329
C
9 ActivityHashTagObject,
10 ActivityMagnetUrlObject,
09209296 11 ActivityPlaylistSegmentHashesObject,
30bc55c8
C
12 ActivityPlaylistUrlObject,
13 ActivitypubHttpFetcherPayload,
ca6d3622 14 ActivityTagObject,
09209296 15 ActivityUrlObject,
053aed43 16 ActivityVideoUrlObject
09209296 17} from '../../../shared/index'
de6310b2 18import { VideoObject } 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'
3fd3ab2d 41import { VideoModel } from '../../models/video/video'
40e87e9e 42import { VideoCaptionModel } from '../../models/video/video-caption'
2ba92871 43import { VideoCommentModel } from '../../models/video/video-comment'
30bc55c8
C
44import { VideoFileModel } from '../../models/video/video-file'
45import { VideoShareModel } from '../../models/video/video-share'
46import { VideoStreamingPlaylistModel } from '../../models/video/video-streaming-playlist'
453e83ea 47import {
f92e7f76 48 MAccountIdActor,
453e83ea
C
49 MChannelAccountLight,
50 MChannelDefault,
51 MChannelId,
d7a25329 52 MStreamingPlaylist,
453e83ea 53 MVideo,
453e83ea 54 MVideoAccountLight,
f92e7f76 55 MVideoAccountLightBlacklistAllFiles,
453e83ea
C
56 MVideoAP,
57 MVideoAPWithoutCaption,
58 MVideoFile,
59 MVideoFullLight,
7b81edc8
C
60 MVideoId,
61 MVideoImmutable,
96ca24f0 62 MVideoThumbnail
26d6bf65
C
63} from '../../types/models'
64import { MThumbnail } from '../../types/models/video/thumbnail'
30bc55c8
C
65import { FilteredModelAttributes } from '../../types/sequelize'
66import { ActorFollowScoreCache } from '../files-cache'
67import { JobQueue } from '../job-queue'
68import { Notifier } from '../notifier'
a5cf76af 69import { PeerTubeSocket } from '../peertube-socket'
30bc55c8 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
68e70a74 87 video.hasPrivacyForFederation() && video.hasStateForFederation()
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
de6310b2 107async function fetchRemoteVideo (videoUrl: string): Promise<{ response: request.RequestResponse, videoObject: VideoObject }> {
4157cdb1
C
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
de6310b2 139function getOrCreateVideoChannelFromVideoObject (videoObject: VideoObject) {
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}
de6310b2 158async function syncVideoExternalAttributes (video: MVideo, fetchedVideo: VideoObject, 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 296 video: MVideoAccountLightBlacklistAllFiles
de6310b2 297 videoObject: VideoObject
a1587156
C
298 account: MAccountIdActor
299 channel: MChannelDefault
1297eb5d 300 overrideTo?: string[]
d4defe07 301}) {
b4055e1c
C
302 const { video, videoObject, account, channel, overrideTo } = options
303
68e70a74 304 logger.debug('Updating remote video "%s".', options.videoObject.uuid, { videoObject: options.videoObject, 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
a5cf76af 352 video.isLive = videoData.isLive
b4055e1c 353
453e83ea 354 const videoUpdated = await video.save(sequelizeOptions) as MVideoFullLight
b4055e1c 355
453e83ea 356 if (thumbnailModel) await videoUpdated.addAndSaveThumbnail(thumbnailModel, t)
e8bafea3 357
6872996d
C
358 if (videoUpdated.getPreview()) {
359 const previewUrl = videoUpdated.getPreview().getFileUrl(videoUpdated)
360 const previewModel = createPlaceholderThumbnail(previewUrl, video, ThumbnailType.PREVIEW, PREVIEWS_SIZE)
361 await videoUpdated.addAndSaveThumbnail(previewModel, t)
362 }
e8bafea3 363
e5565833 364 {
d7a25329 365 const videoFileAttributes = videoFileActivityUrlToDBAttributes(videoUpdated, videoObject.url)
e5565833 366 const newVideoFiles = videoFileAttributes.map(a => new VideoFileModel(a))
0032ebe9 367
e5565833 368 // Remove video files that do not exist anymore
d7a25329 369 const destroyTasks = deleteNonExistingModels(videoUpdated.VideoFiles, newVideoFiles, t)
e5565833 370 await Promise.all(destroyTasks)
2ccaeeb3 371
e5565833 372 // Update or add other one
d7a25329 373 const upsertTasks = newVideoFiles.map(f => VideoFileModel.customUpsert(f, 'video', t))
453e83ea 374 videoUpdated.VideoFiles = await Promise.all(upsertTasks)
e5565833 375 }
2ccaeeb3 376
09209296 377 {
453e83ea 378 const streamingPlaylistAttributes = streamingPlaylistActivityUrlToDBAttributes(videoUpdated, videoObject, videoUpdated.VideoFiles)
09209296
C
379 const newStreamingPlaylists = streamingPlaylistAttributes.map(a => new VideoStreamingPlaylistModel(a))
380
d7a25329
C
381 // Remove video playlists that do not exist anymore
382 const destroyTasks = deleteNonExistingModels(videoUpdated.VideoStreamingPlaylists, newStreamingPlaylists, t)
09209296
C
383 await Promise.all(destroyTasks)
384
d7a25329
C
385 let oldStreamingPlaylistFiles: MVideoFile[] = []
386 for (const videoStreamingPlaylist of videoUpdated.VideoStreamingPlaylists) {
387 oldStreamingPlaylistFiles = oldStreamingPlaylistFiles.concat(videoStreamingPlaylist.VideoFiles)
388 }
389
390 videoUpdated.VideoStreamingPlaylists = []
391
392 for (const playlistAttributes of streamingPlaylistAttributes) {
393 const streamingPlaylistModel = await VideoStreamingPlaylistModel.upsert(playlistAttributes, { returning: true, transaction: t })
394 .then(([ streamingPlaylist ]) => streamingPlaylist)
09209296 395
d7a25329
C
396 const newVideoFiles: MVideoFile[] = videoFileActivityUrlToDBAttributes(streamingPlaylistModel, playlistAttributes.tagAPObject)
397 .map(a => new VideoFileModel(a))
398 const destroyTasks = deleteNonExistingModels(oldStreamingPlaylistFiles, newVideoFiles, t)
399 await Promise.all(destroyTasks)
400
401 // Update or add other one
402 const upsertTasks = newVideoFiles.map(f => VideoFileModel.customUpsert(f, 'streaming-playlist', t))
403 streamingPlaylistModel.VideoFiles = await Promise.all(upsertTasks)
404
405 videoUpdated.VideoStreamingPlaylists.push(streamingPlaylistModel)
406 }
09209296
C
407 }
408
e5565833
C
409 {
410 // Update Tags
d7a25329
C
411 const tags = videoObject.tag
412 .filter(isAPHashTagObject)
413 .map(tag => tag.name)
1ef65f4c 414 await setVideoTags({ video: videoUpdated, tags, transaction: t, defaultValue: videoUpdated.Tags })
e5565833 415 }
2ccaeeb3 416
e5565833
C
417 {
418 // Update captions
453e83ea 419 await VideoCaptionModel.deleteAllCaptionsOfRemoteVideo(videoUpdated.id, t)
e5565833 420
b4055e1c 421 const videoCaptionsPromises = videoObject.subtitleLanguage.map(c => {
ca6d3622 422 return VideoCaptionModel.insertOrReplaceLanguage(videoUpdated.id, c.identifier, c.url, t)
e5565833 423 })
453e83ea 424 await Promise.all(videoCaptionsPromises)
e5565833 425 }
453e83ea 426
af4ae64f
C
427 {
428 // Create or update existing live
429 if (video.isLive) {
430 const [ videoLive ] = await VideoLiveModel.upsert({
431 saveReplay: videoObject.liveSaveReplay,
432 videoId: video.id
433 }, { transaction: t, returning: true })
434
435 videoUpdated.VideoLive = videoLive
436 } else { // Delete existing live if it exists
437 await VideoLiveModel.destroy({
438 where: {
439 videoId: video.id
440 },
441 transaction: t
442 })
443
444 videoUpdated.VideoLive = null
445 }
446 }
447
453e83ea 448 return videoUpdated
1297eb5d
C
449 })
450
5b77537c 451 await autoBlacklistVideoIfNeeded({
453e83ea 452 video: videoUpdated,
6691c522
C
453 user: undefined,
454 isRemote: true,
455 isNew: false,
456 transaction: undefined
457 })
b4055e1c 458
453e83ea 459 if (wasPrivateVideo || wasUnlistedVideo) Notifier.Instance.notifyOnNewVideoIfNeeded(videoUpdated) // Notify our users?
af4ae64f 460 if (videoUpdated.isLive) PeerTubeSocket.Instance.sendVideoLiveNewState(videoUpdated)
e8d246d5 461
b4055e1c 462 logger.info('Remote video with uuid %s updated', videoObject.uuid)
453e83ea
C
463
464 return videoUpdated
1297eb5d 465 } catch (err) {
b4055e1c
C
466 if (video !== undefined && videoFieldsSave !== undefined) {
467 resetSequelizeInstance(video, videoFieldsSave)
1297eb5d
C
468 }
469
470 // This is just a debug because we will retry the insert
471 logger.debug('Cannot update the remote video.', { err })
472 throw err
473 }
892211e8 474}
2186386c 475
04b8c3fb 476async function refreshVideoIfNeeded (options: {
a1587156
C
477 video: MVideoThumbnail
478 fetchedType: VideoFetchByUrlType
04b8c3fb 479 syncParam: SyncParam
453e83ea 480}): Promise<MVideoThumbnail> {
04b8c3fb
C
481 if (!options.video.isOutdated()) return options.video
482
483 // We need more attributes if the argument video was fetched with not enough joints
b4055e1c 484 const video = options.fetchedType === 'all'
0283eaac 485 ? options.video as MVideoAccountLightBlacklistAllFiles
b4055e1c 486 : await VideoModel.loadByUrlAndPopulateAccount(options.video.url)
04b8c3fb
C
487
488 try {
489 const { response, videoObject } = await fetchRemoteVideo(video.url)
490 if (response.statusCode === 404) {
491 logger.info('Cannot refresh remote video %s: video does not exist anymore. Deleting it.', video.url)
492
493 // Video does not exist anymore
494 await video.destroy()
495 return undefined
496 }
497
498 if (videoObject === undefined) {
499 logger.warn('Cannot refresh remote video %s: invalid body.', video.url)
500
501 await video.setAsRefreshed()
502 return video
503 }
504
505 const channelActor = await getOrCreateVideoChannelFromVideoObject(videoObject)
04b8c3fb
C
506
507 const updateOptions = {
508 video,
509 videoObject,
453e83ea 510 account: channelActor.VideoChannel.Account,
04b8c3fb
C
511 channel: channelActor.VideoChannel
512 }
513 await retryTransactionWrapper(updateVideoFromAP, updateOptions)
514 await syncVideoExternalAttributes(video, videoObject, options.syncParam)
515
6b9c966f
C
516 ActorFollowScoreCache.Instance.addGoodServerId(video.VideoChannel.Actor.serverId)
517
04b8c3fb
C
518 return video
519 } catch (err) {
520 logger.warn('Cannot refresh video %s.', options.video.url, { err })
521
6b9c966f
C
522 ActorFollowScoreCache.Instance.addBadServerId(video.VideoChannel.Actor.serverId)
523
04b8c3fb
C
524 // Don't refresh in loop
525 await video.setAsRefreshed()
526 return video
527 }
892211e8 528}
2186386c
C
529
530export {
1297eb5d 531 updateVideoFromAP,
04b8c3fb 532 refreshVideoIfNeeded,
2186386c
C
533 federateVideoIfNeeded,
534 fetchRemoteVideo,
1297eb5d 535 getOrCreateVideoAndAccountAndChannel,
2186386c 536 fetchRemoteVideoDescription,
4157cdb1 537 getOrCreateVideoChannelFromVideoObject
2186386c 538}
c48e82b5
C
539
540// ---------------------------------------------------------------------------
541
d7a25329 542function isAPVideoUrlObject (url: any): url is ActivityVideoUrlObject {
d7a25329 543 const urlMediaType = url.mediaType
30bc55c8
C
544
545 return MIMETYPES.VIDEO.MIMETYPE_EXT[urlMediaType] && urlMediaType.startsWith('video/')
c48e82b5 546}
4157cdb1 547
09209296 548function isAPStreamingPlaylistUrlObject (url: ActivityUrlObject): url is ActivityPlaylistUrlObject {
d7a25329 549 return url && url.mediaType === 'application/x-mpegURL'
09209296
C
550}
551
552function isAPPlaylistSegmentHashesUrlObject (tag: any): tag is ActivityPlaylistSegmentHashesObject {
d7a25329
C
553 return tag && tag.name === 'sha256' && tag.type === 'Link' && tag.mediaType === 'application/json'
554}
555
556function isAPMagnetUrlObject (url: any): url is ActivityMagnetUrlObject {
557 return url && url.mediaType === 'application/x-bittorrent;x-scheme-handler/magnet'
558}
09209296 559
d7a25329
C
560function isAPHashTagObject (url: any): url is ActivityHashTagObject {
561 return url && url.type === 'Hashtag'
c48e82b5 562}
4157cdb1 563
de6310b2 564async function createVideo (videoObject: VideoObject, channel: MChannelAccountLight, waitThumbnail = false) {
4157cdb1
C
565 logger.debug('Adding remote video %s.', videoObject.id)
566
453e83ea
C
567 const videoData = await videoActivityObjectToDBAttributes(channel, videoObject, videoObject.to)
568 const video = VideoModel.build(videoData) as MVideoThumbnail
e8bafea3 569
ca6d3622 570 const promiseThumbnail = createVideoMiniatureFromUrl(getThumbnailFromIcons(videoObject).url, video, ThumbnailType.MINIATURE)
6872996d
C
571 .catch(err => {
572 logger.error('Cannot create miniature from url.', { err })
573 return undefined
574 })
e8bafea3 575
453e83ea 576 let thumbnailModel: MThumbnail
e8bafea3
C
577 if (waitThumbnail === true) {
578 thumbnailModel = await promiseThumbnail
579 }
580
6691c522 581 const { autoBlacklisted, videoCreated } = await sequelizeTypescript.transaction(async t => {
4157cdb1
C
582 const sequelizeOptions = { transaction: t }
583
453e83ea
C
584 const videoCreated = await video.save(sequelizeOptions) as MVideoFullLight
585 videoCreated.VideoChannel = channel
e8bafea3 586
3acc5084 587 if (thumbnailModel) await videoCreated.addAndSaveThumbnail(thumbnailModel, t)
e8bafea3 588
ca6d3622
C
589 const previewIcon = getPreviewFromIcons(videoObject)
590 const previewUrl = previewIcon
591 ? previewIcon.url
592 : buildRemoteVideoBaseUrl(videoCreated, join(STATIC_PATHS.PREVIEWS, video.generatePreviewName()))
593 const previewModel = createPlaceholderThumbnail(previewUrl, videoCreated, ThumbnailType.PREVIEW, PREVIEWS_SIZE)
594
3acc5084 595 if (thumbnailModel) await videoCreated.addAndSaveThumbnail(previewModel, t)
4157cdb1
C
596
597 // Process files
d7a25329 598 const videoFileAttributes = videoFileActivityUrlToDBAttributes(videoCreated, videoObject.url)
4157cdb1
C
599
600 const videoFilePromises = videoFileAttributes.map(f => VideoFileModel.create(f, { transaction: t }))
ae9bbed4 601 const videoFiles = await Promise.all(videoFilePromises)
4157cdb1 602
d7a25329
C
603 const streamingPlaylistsAttributes = streamingPlaylistActivityUrlToDBAttributes(videoCreated, videoObject, videoFiles)
604 videoCreated.VideoStreamingPlaylists = []
605
606 for (const playlistAttributes of streamingPlaylistsAttributes) {
607 const playlistModel = await VideoStreamingPlaylistModel.create(playlistAttributes, { transaction: t })
608
609 const playlistFiles = videoFileActivityUrlToDBAttributes(playlistModel, playlistAttributes.tagAPObject)
610 const videoFilePromises = playlistFiles.map(f => VideoFileModel.create(f, { transaction: t }))
611 playlistModel.VideoFiles = await Promise.all(videoFilePromises)
612
613 videoCreated.VideoStreamingPlaylists.push(playlistModel)
614 }
09209296 615
4157cdb1 616 // Process tags
09209296 617 const tags = videoObject.tag
d7a25329 618 .filter(isAPHashTagObject)
09209296 619 .map(t => t.name)
1ef65f4c 620 await setVideoTags({ video: videoCreated, tags, transaction: t })
4157cdb1
C
621
622 // Process captions
623 const videoCaptionsPromises = videoObject.subtitleLanguage.map(c => {
ca6d3622 624 return VideoCaptionModel.insertOrReplaceLanguage(videoCreated.id, c.identifier, c.url, t)
4157cdb1 625 })
453e83ea 626 await Promise.all(videoCaptionsPromises)
6b9c966f 627
453e83ea 628 videoCreated.VideoFiles = videoFiles
4157cdb1 629
af4ae64f
C
630 if (videoCreated.isLive) {
631 const videoLive = new VideoLiveModel({
632 streamKey: null,
633 saveReplay: videoObject.liveSaveReplay,
634 videoId: videoCreated.id
635 })
636
637 videoCreated.VideoLive = await videoLive.save({ transaction: t })
638 }
639
6691c522 640 const autoBlacklisted = await autoBlacklistVideoIfNeeded({
453e83ea 641 video: videoCreated,
6691c522
C
642 user: undefined,
643 isRemote: true,
644 isNew: true,
645 transaction: t
646 })
647
4157cdb1
C
648 logger.info('Remote video with uuid %s inserted.', videoObject.uuid)
649
6691c522 650 return { autoBlacklisted, videoCreated }
4157cdb1
C
651 })
652
e8bafea3 653 if (waitThumbnail === false) {
6872996d
C
654 // Error is already caught above
655 // eslint-disable-next-line @typescript-eslint/no-floating-promises
e8bafea3 656 promiseThumbnail.then(thumbnailModel => {
6872996d
C
657 if (!thumbnailModel) return
658
e8bafea3 659 thumbnailModel = videoCreated.id
4157cdb1 660
e8bafea3 661 return thumbnailModel.save()
6872996d 662 })
e8bafea3 663 }
4157cdb1 664
6691c522 665 return { autoBlacklisted, videoCreated }
4157cdb1
C
666}
667
de6310b2 668function videoActivityObjectToDBAttributes (videoChannel: MChannelId, videoObject: VideoObject, to: string[] = []) {
bdd428a6
C
669 const privacy = to.includes(ACTIVITY_PUB.PUBLIC)
670 ? VideoPrivacy.PUBLIC
671 : VideoPrivacy.UNLISTED
4157cdb1 672
bdd428a6 673 const duration = videoObject.duration.replace(/[^\d]+/, '')
58b6fdca 674 const language = videoObject.language?.identifier
4157cdb1 675
58b6fdca
C
676 const category = videoObject.category
677 ? parseInt(videoObject.category.identifier, 10)
678 : undefined
4157cdb1 679
58b6fdca
C
680 const licence = videoObject.licence
681 ? parseInt(videoObject.licence.identifier, 10)
682 : undefined
4157cdb1
C
683
684 const description = videoObject.content || null
685 const support = videoObject.support || null
686
687 return {
688 name: videoObject.name,
689 uuid: videoObject.uuid,
690 url: videoObject.id,
691 category,
692 licence,
693 language,
694 description,
695 support,
696 nsfw: videoObject.sensitive,
697 commentsEnabled: videoObject.commentsEnabled,
7f2cfe3a 698 downloadEnabled: videoObject.downloadEnabled,
4157cdb1 699 waitTranscoding: videoObject.waitTranscoding,
de6310b2 700 isLive: videoObject.isLiveBroadcast,
4157cdb1
C
701 state: videoObject.state,
702 channelId: videoChannel.id,
703 duration: parseInt(duration, 10),
704 createdAt: new Date(videoObject.published),
705 publishedAt: new Date(videoObject.published),
58b6fdca
C
706
707 originallyPublishedAt: videoObject.originallyPublishedAt
708 ? new Date(videoObject.originallyPublishedAt)
709 : null,
710
4157cdb1
C
711 updatedAt: new Date(videoObject.updated),
712 views: videoObject.views,
713 likes: 0,
714 dislikes: 0,
715 remote: true,
716 privacy
717 }
718}
719
d7a25329
C
720function videoFileActivityUrlToDBAttributes (
721 videoOrPlaylist: MVideo | MStreamingPlaylist,
722 urls: (ActivityTagObject | ActivityUrlObject)[]
723) {
724 const fileUrls = urls.filter(u => isAPVideoUrlObject(u)) as ActivityVideoUrlObject[]
4157cdb1 725
d7a25329 726 if (fileUrls.length === 0) return []
4157cdb1 727
3acc5084 728 const attributes: FilteredModelAttributes<VideoFileModel>[] = []
4157cdb1
C
729 for (const fileUrl of fileUrls) {
730 // Fetch associated magnet uri
d7a25329
C
731 const magnet = urls.filter(isAPMagnetUrlObject)
732 .find(u => u.height === fileUrl.height)
4157cdb1
C
733
734 if (!magnet) throw new Error('Cannot find associated magnet uri for file ' + fileUrl.href)
735
736 const parsed = magnetUtil.decode(magnet.href)
737 if (!parsed || isVideoFileInfoHashValid(parsed.infoHash) === false) {
738 throw new Error('Cannot parse magnet URI ' + magnet.href)
739 }
740
8319d6ae
RK
741 // Fetch associated metadata url, if any
742 const metadata = urls.filter(isAPVideoFileMetadataObject)
7b81edc8
C
743 .find(u => {
744 return u.height === fileUrl.height &&
745 u.fps === fileUrl.fps &&
746 u.rel.includes(fileUrl.mediaType)
747 })
8319d6ae 748
d7a25329 749 const mediaType = fileUrl.mediaType
4157cdb1 750 const attribute = {
30bc55c8 751 extname: getExtFromMimetype(MIMETYPES.VIDEO.MIMETYPE_EXT, mediaType),
4157cdb1
C
752 infoHash: parsed.infoHash,
753 resolution: fileUrl.height,
754 size: fileUrl.size,
d7a25329 755 fps: fileUrl.fps || -1,
8319d6ae 756 metadataUrl: metadata?.href,
d7a25329
C
757
758 // This is a video file owned by a video or by a streaming playlist
759 videoId: (videoOrPlaylist as MStreamingPlaylist).playlistUrl ? null : videoOrPlaylist.id,
760 videoStreamingPlaylistId: (videoOrPlaylist as MStreamingPlaylist).playlistUrl ? videoOrPlaylist.id : null
09209296
C
761 }
762
763 attributes.push(attribute)
764 }
765
766 return attributes
767}
768
de6310b2 769function streamingPlaylistActivityUrlToDBAttributes (video: MVideoId, videoObject: VideoObject, videoFiles: MVideoFile[]) {
09209296
C
770 const playlistUrls = videoObject.url.filter(u => isAPStreamingPlaylistUrlObject(u)) as ActivityPlaylistUrlObject[]
771 if (playlistUrls.length === 0) return []
772
d7a25329 773 const attributes: (FilteredModelAttributes<VideoStreamingPlaylistModel> & { tagAPObject?: ActivityTagObject[] })[] = []
09209296 774 for (const playlistUrlObject of playlistUrls) {
d7a25329
C
775 const segmentsSha256UrlObject = playlistUrlObject.tag.find(isAPPlaylistSegmentHashesUrlObject)
776
777 let files: unknown[] = playlistUrlObject.tag.filter(u => isAPVideoUrlObject(u)) as ActivityVideoUrlObject[]
778
779 // FIXME: backward compatibility introduced in v2.1.0
780 if (files.length === 0) files = videoFiles
781
09209296
C
782 if (!segmentsSha256UrlObject) {
783 logger.warn('No segment sha256 URL found in AP playlist object.', { playlistUrl: playlistUrlObject })
784 continue
785 }
786
787 const attribute = {
788 type: VideoStreamingPlaylistType.HLS,
789 playlistUrl: playlistUrlObject.href,
790 segmentsSha256Url: segmentsSha256UrlObject.href,
d7a25329 791 p2pMediaLoaderInfohashes: VideoStreamingPlaylistModel.buildP2PMediaLoaderInfoHashes(playlistUrlObject.href, files),
594d0c6a 792 p2pMediaLoaderPeerVersion: P2P_MEDIA_LOADER_PEER_VERSION,
d7a25329
C
793 videoId: video.id,
794 tagAPObject: playlistUrlObject.tag
09209296
C
795 }
796
4157cdb1
C
797 attributes.push(attribute)
798 }
799
800 return attributes
801}
ca6d3622 802
de6310b2 803function getThumbnailFromIcons (videoObject: VideoObject) {
ca6d3622
C
804 let validIcons = videoObject.icon.filter(i => i.width > THUMBNAILS_SIZE.minWidth)
805 // Fallback if there are not valid icons
806 if (validIcons.length === 0) validIcons = videoObject.icon
807
808 return minBy(validIcons, 'width')
809}
810
de6310b2 811function getPreviewFromIcons (videoObject: VideoObject) {
ca6d3622
C
812 const validIcons = videoObject.icon.filter(i => i.width > PREVIEWS_SIZE.minWidth)
813
814 // FIXME: don't put a fallback here for compatibility with PeerTube <2.2
815
816 return maxBy(validIcons, 'width')
817}