aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/videos/comment.ts
blob: b69aa5d40f57d786bb3c9766a7fa22347e98f4a0 (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
// import * as express from 'express'
// import { logger, getFormattedObjects } from '../../../helpers'
// import {
//   authenticate,
//   ensureUserHasRight,
//   videosBlacklistAddValidator,
//   videosBlacklistRemoveValidator,
//   paginationValidator,
//   blacklistSortValidator,
//   setBlacklistSort,
//   setPagination,
//   asyncMiddleware
// } from '../../../middlewares'
// import { BlacklistedVideo, UserRight } from '../../../../shared'
// import { VideoBlacklistModel } from '../../../models/video/video-blacklist'
//
// const videoCommentRouter = express.Router()
//
// videoCommentRouter.get('/:videoId/comment',
//   authenticate,
//   ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
//   asyncMiddleware(listVideoCommentsThreadsValidator),
//   asyncMiddleware(listVideoCommentsThreads)
// )
//
// videoCommentRouter.post('/:videoId/comment',
//   authenticate,
//   ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
//   asyncMiddleware(videosBlacklistAddValidator),
//   asyncMiddleware(addVideoToBlacklist)
// )
//
// videoCommentRouter.get('/blacklist',
//   authenticate,
//   ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
//   paginationValidator,
//   blacklistSortValidator,
//   setBlacklistSort,
//   setPagination,
//   asyncMiddleware(listBlacklist)
// )
//
// videoCommentRouter.delete('/:videoId/blacklist',
//   authenticate,
//   ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
//   asyncMiddleware(videosBlacklistRemoveValidator),
//   asyncMiddleware(removeVideoFromBlacklistController)
// )
//
// // ---------------------------------------------------------------------------
//
// export {
//   videoCommentRouter
// }
//
// // ---------------------------------------------------------------------------
//
// async function addVideoToBlacklist (req: express.Request, res: express.Response, next: express.NextFunction) {
//   const videoInstance = res.locals.video
//
//   const toCreate = {
//     videoId: videoInstance.id
//   }
//
//   await VideoBlacklistModel.create(toCreate)
//   return res.type('json').status(204).end()
// }
//
// async function listBlacklist (req: express.Request, res: express.Response, next: express.NextFunction) {
//   const resultList = await VideoBlacklistModel.listForApi(req.query.start, req.query.count, req.query.sort)
//
//   return res.json(getFormattedObjects<BlacklistedVideo, VideoBlacklistModel>(resultList.data, resultList.total))
// }
//
// async function removeVideoFromBlacklistController (req: express.Request, res: express.Response, next: express.NextFunction) {
//   const blacklistedVideo = res.locals.blacklistedVideo as VideoBlacklistModel
//
//   try {
//     await blacklistedVideo.destroy()
//
//     logger.info('Video %s removed from blacklist.', res.locals.video.uuid)
//
//     return res.sendStatus(204)
//   } catch (err) {
//     logger.error('Some error while removing video %s from blacklist.', res.locals.video.uuid, err)
//     throw err
//   }
// }