diff options
Diffstat (limited to 'server/controllers/activitypub')
-rw-r--r-- | server/controllers/activitypub/videos.ts | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/server/controllers/activitypub/videos.ts b/server/controllers/activitypub/videos.ts index 9a1868ff7..a9b31bf75 100644 --- a/server/controllers/activitypub/videos.ts +++ b/server/controllers/activitypub/videos.ts | |||
@@ -32,8 +32,8 @@ | |||
32 | // RemoteVideoChannelCreateData, | 32 | // RemoteVideoChannelCreateData, |
33 | // RemoteVideoChannelUpdateData, | 33 | // RemoteVideoChannelUpdateData, |
34 | // RemoteVideoChannelRemoveData, | 34 | // RemoteVideoChannelRemoveData, |
35 | // RemoteVideoAuthorRemoveData, | 35 | // RemoteVideoAccountRemoveData, |
36 | // RemoteVideoAuthorCreateData | 36 | // RemoteVideoAccountCreateData |
37 | // } from '../../../../shared' | 37 | // } from '../../../../shared' |
38 | // import { VideoInstance } from '../../../models/video/video-interface' | 38 | // import { VideoInstance } from '../../../models/video/video-interface' |
39 | // | 39 | // |
@@ -49,8 +49,8 @@ | |||
49 | // functionsHash[ENDPOINT_ACTIONS.UPDATE_CHANNEL] = updateRemoteVideoChannelRetryWrapper | 49 | // functionsHash[ENDPOINT_ACTIONS.UPDATE_CHANNEL] = updateRemoteVideoChannelRetryWrapper |
50 | // functionsHash[ENDPOINT_ACTIONS.REMOVE_CHANNEL] = removeRemoteVideoChannelRetryWrapper | 50 | // functionsHash[ENDPOINT_ACTIONS.REMOVE_CHANNEL] = removeRemoteVideoChannelRetryWrapper |
51 | // functionsHash[ENDPOINT_ACTIONS.REPORT_ABUSE] = reportAbuseRemoteVideoRetryWrapper | 51 | // functionsHash[ENDPOINT_ACTIONS.REPORT_ABUSE] = reportAbuseRemoteVideoRetryWrapper |
52 | // functionsHash[ENDPOINT_ACTIONS.ADD_AUTHOR] = addRemoteVideoAuthorRetryWrapper | 52 | // functionsHash[ENDPOINT_ACTIONS.ADD_ACCOUNT] = addRemoteVideoAccountRetryWrapper |
53 | // functionsHash[ENDPOINT_ACTIONS.REMOVE_AUTHOR] = removeRemoteVideoAuthorRetryWrapper | 53 | // functionsHash[ENDPOINT_ACTIONS.REMOVE_ACCOUNT] = removeRemoteVideoAccountRetryWrapper |
54 | // | 54 | // |
55 | // const remoteVideosRouter = express.Router() | 55 | // const remoteVideosRouter = express.Router() |
56 | // | 56 | // |
@@ -245,24 +245,24 @@ | |||
245 | // logger.info('Remote video with uuid %s removed.', videoToRemoveData.uuid) | 245 | // logger.info('Remote video with uuid %s removed.', videoToRemoveData.uuid) |
246 | // } | 246 | // } |
247 | // | 247 | // |
248 | // async function removeRemoteVideoAuthorRetryWrapper (authorAttributesToRemove: RemoteVideoAuthorRemoveData, fromPod: PodInstance) { | 248 | // async function removeRemoteVideoAccountRetryWrapper (accountAttributesToRemove: RemoteVideoAccountRemoveData, fromPod: PodInstance) { |
249 | // const options = { | 249 | // const options = { |
250 | // arguments: [ authorAttributesToRemove, fromPod ], | 250 | // arguments: [ accountAttributesToRemove, fromPod ], |
251 | // errorMessage: 'Cannot remove the remote video author with many retries.' | 251 | // errorMessage: 'Cannot remove the remote video account with many retries.' |
252 | // } | 252 | // } |
253 | // | 253 | // |
254 | // await retryTransactionWrapper(removeRemoteVideoAuthor, options) | 254 | // await retryTransactionWrapper(removeRemoteVideoAccount, options) |
255 | // } | 255 | // } |
256 | // | 256 | // |
257 | // async function removeRemoteVideoAuthor (authorAttributesToRemove: RemoteVideoAuthorRemoveData, fromPod: PodInstance) { | 257 | // async function removeRemoteVideoAccount (accountAttributesToRemove: RemoteVideoAccountRemoveData, fromPod: PodInstance) { |
258 | // logger.debug('Removing remote video author "%s".', authorAttributesToRemove.uuid) | 258 | // logger.debug('Removing remote video account "%s".', accountAttributesToRemove.uuid) |
259 | // | 259 | // |
260 | // await db.sequelize.transaction(async t => { | 260 | // await db.sequelize.transaction(async t => { |
261 | // const videoAuthor = await db.Author.loadAuthorByPodAndUUID(authorAttributesToRemove.uuid, fromPod.id, t) | 261 | // const videoAccount = await db.Account.loadAccountByPodAndUUID(accountAttributesToRemove.uuid, fromPod.id, t) |
262 | // await videoAuthor.destroy({ transaction: t }) | 262 | // await videoAccount.destroy({ transaction: t }) |
263 | // }) | 263 | // }) |
264 | // | 264 | // |
265 | // logger.info('Remote video author with uuid %s removed.', authorAttributesToRemove.uuid) | 265 | // logger.info('Remote video account with uuid %s removed.', accountAttributesToRemove.uuid) |
266 | // } | 266 | // } |
267 | // | 267 | // |
268 | // async function removeRemoteVideoChannelRetryWrapper (videoChannelAttributesToRemove: RemoteVideoChannelRemoveData, fromPod: PodInstance) { | 268 | // async function removeRemoteVideoChannelRetryWrapper (videoChannelAttributesToRemove: RemoteVideoChannelRemoveData, fromPod: PodInstance) { |