]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/lib/activitypub/share.ts
Optimize video view AP processing
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / share.ts
... / ...
CommitLineData
1import { Transaction } from 'sequelize'
2import { VideoPrivacy } from '../../../shared/models/videos'
3import { getServerActor } from '../../helpers/utils'
4import { VideoModel } from '../../models/video/video'
5import { VideoShareModel } from '../../models/video/video-share'
6import { sendUndoAnnounce, sendVideoAnnounce } from './send'
7import { getAnnounceActivityPubUrl } from './url'
8import { VideoChannelModel } from '../../models/video/video-channel'
9import * as Bluebird from 'bluebird'
10import { doRequest } from '../../helpers/requests'
11import { getOrCreateActorAndServerAndModel } from './actor'
12import { logger } from '../../helpers/logger'
13import { CRAWL_REQUEST_CONCURRENCY } from '../../initializers'
14
15async function shareVideoByServerAndChannel (video: VideoModel, t: Transaction) {
16 if (video.privacy === VideoPrivacy.PRIVATE) return undefined
17
18 return Promise.all([
19 shareByServer(video, t),
20 shareByVideoChannel(video, t)
21 ])
22}
23
24async function changeVideoChannelShare (video: VideoModel, oldVideoChannel: VideoChannelModel, t: Transaction) {
25 logger.info('Updating video channel of video %s: %s -> %s.', video.uuid, oldVideoChannel.name, video.VideoChannel.name)
26
27 await undoShareByVideoChannel(video, oldVideoChannel, t)
28
29 await shareByVideoChannel(video, t)
30}
31
32async function addVideoShares (shareUrls: string[], instance: VideoModel) {
33 await Bluebird.map(shareUrls, async shareUrl => {
34 try {
35 // Fetch url
36 const { body } = await doRequest({
37 uri: shareUrl,
38 json: true,
39 activityPub: true
40 })
41 if (!body || !body.actor) throw new Error('Body of body actor is invalid')
42
43 const actorUrl = body.actor
44 const actor = await getOrCreateActorAndServerAndModel(actorUrl)
45
46 const entry = {
47 actorId: actor.id,
48 videoId: instance.id,
49 url: shareUrl
50 }
51
52 await VideoShareModel.findOrCreate({
53 where: {
54 url: shareUrl
55 },
56 defaults: entry
57 })
58 } catch (err) {
59 logger.warn('Cannot add share %s.', shareUrl, { err })
60 }
61 }, { concurrency: CRAWL_REQUEST_CONCURRENCY })
62}
63
64export {
65 changeVideoChannelShare,
66 addVideoShares,
67 shareVideoByServerAndChannel
68}
69
70// ---------------------------------------------------------------------------
71
72async function shareByServer (video: VideoModel, t: Transaction) {
73 const serverActor = await getServerActor()
74
75 const serverShareUrl = getAnnounceActivityPubUrl(video.url, serverActor)
76 return VideoShareModel.findOrCreate({
77 defaults: {
78 actorId: serverActor.id,
79 videoId: video.id,
80 url: serverShareUrl
81 },
82 where: {
83 url: serverShareUrl
84 },
85 transaction: t
86 }).then(([ serverShare, created ]) => {
87 if (created) return sendVideoAnnounce(serverActor, serverShare, video, t)
88
89 return undefined
90 })
91}
92
93async function shareByVideoChannel (video: VideoModel, t: Transaction) {
94 const videoChannelShareUrl = getAnnounceActivityPubUrl(video.url, video.VideoChannel.Actor)
95 return VideoShareModel.findOrCreate({
96 defaults: {
97 actorId: video.VideoChannel.actorId,
98 videoId: video.id,
99 url: videoChannelShareUrl
100 },
101 where: {
102 url: videoChannelShareUrl
103 },
104 transaction: t
105 }).then(([ videoChannelShare, created ]) => {
106 if (created) return sendVideoAnnounce(video.VideoChannel.Actor, videoChannelShare, video, t)
107
108 return undefined
109 })
110}
111
112async function undoShareByVideoChannel (video: VideoModel, oldVideoChannel: VideoChannelModel, t: Transaction) {
113 // Load old share
114 const oldShare = await VideoShareModel.load(oldVideoChannel.actorId, video.id, t)
115 if (!oldShare) return new Error('Cannot find old video channel share ' + oldVideoChannel.actorId + ' for video ' + video.id)
116
117 await sendUndoAnnounce(oldVideoChannel.Actor, oldShare, video, t)
118 await oldShare.destroy({ transaction: t })
119}