aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/activitypub/videos.ts
blob: a9b31bf753f2b94b13669a73575e097a6ca0342f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
// import * as express from 'express'
// import * as Bluebird from 'bluebird'
// import * as Sequelize from 'sequelize'
//
// import { database as db } from '../../../initializers/database'
// import {
//   REQUEST_ENDPOINT_ACTIONS,
//   REQUEST_ENDPOINTS,
//   REQUEST_VIDEO_EVENT_TYPES,
//   REQUEST_VIDEO_QADU_TYPES
// } from '../../../initializers'
// import {
//   checkSignature,
//   signatureValidator,
//   remoteVideosValidator,
//   remoteQaduVideosValidator,
//   remoteEventsVideosValidator
// } from '../../../middlewares'
// import { logger, retryTransactionWrapper, resetSequelizeInstance } from '../../../helpers'
// import { quickAndDirtyUpdatesVideoToFriends, fetchVideoChannelByHostAndUUID } from '../../../lib'
// import { PodInstance, VideoFileInstance } from '../../../models'
// import {
//   RemoteVideoRequest,
//   RemoteVideoCreateData,
//   RemoteVideoUpdateData,
//   RemoteVideoRemoveData,
//   RemoteVideoReportAbuseData,
//   RemoteQaduVideoRequest,
//   RemoteQaduVideoData,
//   RemoteVideoEventRequest,
//   RemoteVideoEventData,
//   RemoteVideoChannelCreateData,
//   RemoteVideoChannelUpdateData,
//   RemoteVideoChannelRemoveData,
//   RemoteVideoAccountRemoveData,
//   RemoteVideoAccountCreateData
// } from '../../../../shared'
// import { VideoInstance } from '../../../models/video/video-interface'
//
// const ENDPOINT_ACTIONS = REQUEST_ENDPOINT_ACTIONS[REQUEST_ENDPOINTS.VIDEOS]
//
// // Functions to call when processing a remote request
// // FIXME: use RemoteVideoRequestType as id type
// const functionsHash: { [ id: string ]: (...args) => Promise<any> } = {}
// functionsHash[ENDPOINT_ACTIONS.ADD_VIDEO] = addRemoteVideoRetryWrapper
// functionsHash[ENDPOINT_ACTIONS.UPDATE_VIDEO] = updateRemoteVideoRetryWrapper
// functionsHash[ENDPOINT_ACTIONS.REMOVE_VIDEO] = removeRemoteVideoRetryWrapper
// functionsHash[ENDPOINT_ACTIONS.ADD_CHANNEL] = addRemoteVideoChannelRetryWrapper
// functionsHash[ENDPOINT_ACTIONS.UPDATE_CHANNEL] = updateRemoteVideoChannelRetryWrapper
// functionsHash[ENDPOINT_ACTIONS.REMOVE_CHANNEL] = removeRemoteVideoChannelRetryWrapper
// functionsHash[ENDPOINT_ACTIONS.REPORT_ABUSE] = reportAbuseRemoteVideoRetryWrapper
// functionsHash[ENDPOINT_ACTIONS.ADD_ACCOUNT] = addRemoteVideoAccountRetryWrapper
// functionsHash[ENDPOINT_ACTIONS.REMOVE_ACCOUNT] = removeRemoteVideoAccountRetryWrapper
//
// const remoteVideosRouter = express.Router()
//
// remoteVideosRouter.post('/',
//   signatureValidator,
//   checkSignature,
//   remoteVideosValidator,
//   remoteVideos
// )
//
// remoteVideosRouter.post('/qadu',
//   signatureValidator,
//   checkSignature,
//   remoteQaduVideosValidator,
//   remoteVideosQadu
// )
//
// remoteVideosRouter.post('/events',
//   signatureValidator,
//   checkSignature,
//   remoteEventsVideosValidator,
//   remoteVideosEvents
// )
//
// // ---------------------------------------------------------------------------
//
// export {
//   remoteVideosRouter
// }
//
// // ---------------------------------------------------------------------------
//
// function remoteVideos (req: express.Request, res: express.Response, next: express.NextFunction) {
//   const requests: RemoteVideoRequest[] = req.body.data
//   const fromPod = res.locals.secure.pod
//
//   // We need to process in the same order to keep consistency
//   Bluebird.each(requests, request => {
//     const data = request.data
//
//     // Get the function we need to call in order to process the request
//     const fun = functionsHash[request.type]
//     if (fun === undefined) {
//       logger.error('Unknown remote request type %s.', request.type)
//       return
//     }
//
//     return fun.call(this, data, fromPod)
//   })
//   .catch(err => logger.error('Error managing remote videos.', err))
//
//   // Don't block the other pod
//   return res.type('json').status(204).end()
// }
//
// function remoteVideosQadu (req: express.Request, res: express.Response, next: express.NextFunction) {
//   const requests: RemoteQaduVideoRequest[] = req.body.data
//   const fromPod = res.locals.secure.pod
//
//   Bluebird.each(requests, request => {
//     const videoData = request.data
//
//     return quickAndDirtyUpdateVideoRetryWrapper(videoData, fromPod)
//   })
//   .catch(err => logger.error('Error managing remote videos.', err))
//
//   return res.type('json').status(204).end()
// }
//
// function remoteVideosEvents (req: express.Request, res: express.Response, next: express.NextFunction) {
//   const requests: RemoteVideoEventRequest[] = req.body.data
//   const fromPod = res.locals.secure.pod
//
//   Bluebird.each(requests, request => {
//     const eventData = request.data
//
//     return processVideosEventsRetryWrapper(eventData, fromPod)
//   })
//   .catch(err => logger.error('Error managing remote videos.', err))
//
//   return res.type('json').status(204).end()
// }
//
// async function processVideosEventsRetryWrapper (eventData: RemoteVideoEventData, fromPod: PodInstance) {
//   const options = {
//     arguments: [ eventData, fromPod ],
//     errorMessage: 'Cannot process videos events with many retries.'
//   }
//
//   await retryTransactionWrapper(processVideosEvents, options)
// }
//
// async function processVideosEvents (eventData: RemoteVideoEventData, fromPod: PodInstance) {
//   await db.sequelize.transaction(async t => {
//     const sequelizeOptions = { transaction: t }
//     const videoInstance = await fetchLocalVideoByUUID(eventData.uuid, t)
//
//     let columnToUpdate
//     let qaduType
//
//     switch (eventData.eventType) {
//     case REQUEST_VIDEO_EVENT_TYPES.VIEWS:
//       columnToUpdate = 'views'
//       qaduType = REQUEST_VIDEO_QADU_TYPES.VIEWS
//       break
//
//     case REQUEST_VIDEO_EVENT_TYPES.LIKES:
//       columnToUpdate = 'likes'
//       qaduType = REQUEST_VIDEO_QADU_TYPES.LIKES
//       break
//
//     case REQUEST_VIDEO_EVENT_TYPES.DISLIKES:
//       columnToUpdate = 'dislikes'
//       qaduType = REQUEST_VIDEO_QADU_TYPES.DISLIKES
//       break
//
//     default:
//       throw new Error('Unknown video event type.')
//     }
//
//     const query = {}
//     query[columnToUpdate] = eventData.count
//
//     await videoInstance.increment(query, sequelizeOptions)
//
//     const qadusParams = [
//       {
//         videoId: videoInstance.id,
//         type: qaduType
//       }
//     ]
//     await quickAndDirtyUpdatesVideoToFriends(qadusParams, t)
//   })
//
//   logger.info('Remote video event processed for video with uuid %s.', eventData.uuid)
// }
//
// async function quickAndDirtyUpdateVideoRetryWrapper (videoData: RemoteQaduVideoData, fromPod: PodInstance) {
//   const options = {
//     arguments: [ videoData, fromPod ],
//     errorMessage: 'Cannot update quick and dirty the remote video with many retries.'
//   }
//
//   await retryTransactionWrapper(quickAndDirtyUpdateVideo, options)
// }
//
// async function quickAndDirtyUpdateVideo (videoData: RemoteQaduVideoData, fromPod: PodInstance) {
//   let videoUUID = ''
//
//   await db.sequelize.transaction(async t => {
//     const videoInstance = await fetchVideoByHostAndUUID(fromPod.host, videoData.uuid, t)
//     const sequelizeOptions = { transaction: t }
//
//     videoUUID = videoInstance.uuid
//
//     if (videoData.views) {
//       videoInstance.set('views', videoData.views)
//     }
//
//     if (videoData.likes) {
//       videoInstance.set('likes', videoData.likes)
//     }
//
//     if (videoData.dislikes) {
//       videoInstance.set('dislikes', videoData.dislikes)
//     }
//
//     await videoInstance.save(sequelizeOptions)
//   })
//
//   logger.info('Remote video with uuid %s quick and dirty updated', videoUUID)
// }
//
// async function removeRemoteVideoRetryWrapper (videoToRemoveData: RemoteVideoRemoveData, fromPod: PodInstance) {
//   const options = {
//     arguments: [ videoToRemoveData, fromPod ],
//     errorMessage: 'Cannot remove the remote video channel with many retries.'
//   }
//
//   await retryTransactionWrapper(removeRemoteVideo, options)
// }
//
// async function removeRemoteVideo (videoToRemoveData: RemoteVideoRemoveData, fromPod: PodInstance) {
//   logger.debug('Removing remote video "%s".', videoToRemoveData.uuid)
//
//   await db.sequelize.transaction(async t => {
//     // We need the instance because we have to remove some other stuffs (thumbnail etc)
//     const videoInstance = await fetchVideoByHostAndUUID(fromPod.host, videoToRemoveData.uuid, t)
//     await videoInstance.destroy({ transaction: t })
//   })
//
//   logger.info('Remote video with uuid %s removed.', videoToRemoveData.uuid)
// }
//
// async function removeRemoteVideoAccountRetryWrapper (accountAttributesToRemove: RemoteVideoAccountRemoveData, fromPod: PodInstance) {
//   const options = {
//     arguments: [ accountAttributesToRemove, fromPod ],
//     errorMessage: 'Cannot remove the remote video account with many retries.'
//   }
//
//   await retryTransactionWrapper(removeRemoteVideoAccount, options)
// }
//
// async function removeRemoteVideoAccount (accountAttributesToRemove: RemoteVideoAccountRemoveData, fromPod: PodInstance) {
//   logger.debug('Removing remote video account "%s".', accountAttributesToRemove.uuid)
//
//   await db.sequelize.transaction(async t => {
//     const videoAccount = await db.Account.loadAccountByPodAndUUID(accountAttributesToRemove.uuid, fromPod.id, t)
//     await videoAccount.destroy({ transaction: t })
//   })
//
//   logger.info('Remote video account with uuid %s removed.', accountAttributesToRemove.uuid)
// }
//
// async function removeRemoteVideoChannelRetryWrapper (videoChannelAttributesToRemove: RemoteVideoChannelRemoveData, fromPod: PodInstance) {
//   const options = {
//     arguments: [ videoChannelAttributesToRemove, fromPod ],
//     errorMessage: 'Cannot remove the remote video channel with many retries.'
//   }
//
//   await retryTransactionWrapper(removeRemoteVideoChannel, options)
// }
//
// async function removeRemoteVideoChannel (videoChannelAttributesToRemove: RemoteVideoChannelRemoveData, fromPod: PodInstance) {
//   logger.debug('Removing remote video channel "%s".', videoChannelAttributesToRemove.uuid)
//
//   await db.sequelize.transaction(async t => {
//     const videoChannel = await fetchVideoChannelByHostAndUUID(fromPod.host, videoChannelAttributesToRemove.uuid, t)
//     await videoChannel.destroy({ transaction: t })
//   })
//
//   logger.info('Remote video channel with uuid %s removed.', videoChannelAttributesToRemove.uuid)
// }
//
// async function reportAbuseRemoteVideoRetryWrapper (reportData: RemoteVideoReportAbuseData, fromPod: PodInstance) {
//   const options = {
//     arguments: [ reportData, fromPod ],
//     errorMessage: 'Cannot create remote abuse video with many retries.'
//   }
//
//   await retryTransactionWrapper(reportAbuseRemoteVideo, options)
// }
//
// async function reportAbuseRemoteVideo (reportData: RemoteVideoReportAbuseData, fromPod: PodInstance) {
//   logger.debug('Reporting remote abuse for video %s.', reportData.videoUUID)
//
//   await db.sequelize.transaction(async t => {
//     const videoInstance = await fetchLocalVideoByUUID(reportData.videoUUID, t)
//     const videoAbuseData = {
//       reporterUsername: reportData.reporterUsername,
//       reason: reportData.reportReason,
//       reporterPodId: fromPod.id,
//       videoId: videoInstance.id
//     }
//
//     await db.VideoAbuse.create(videoAbuseData)
//
//   })
//
//   logger.info('Remote abuse for video uuid %s created', reportData.videoUUID)
// }
//
// async function fetchLocalVideoByUUID (id: string, t: Sequelize.Transaction) {
//   try {
//     const video = await db.Video.loadLocalVideoByUUID(id, t)
//
//     if (!video) throw new Error('Video ' + id + ' not found')
//
//     return video
//   } catch (err) {
//     logger.error('Cannot load owned video from id.', { error: err.stack, id })
//     throw err
//   }
// }
//
// async function fetchVideoByHostAndUUID (podHost: string, uuid: string, t: Sequelize.Transaction) {
//   try {
//     const video = await db.Video.loadByHostAndUUID(podHost, uuid, t)
//     if (!video) throw new Error('Video not found')
//
//     return video
//   } catch (err) {
//     logger.error('Cannot load video from host and uuid.', { error: err.stack, podHost, uuid })
//     throw err
//   }
// }