2017-06-05 14:53:49 -05:00
|
|
|
import * as express from 'express'
|
2017-12-28 04:16:08 -06:00
|
|
|
import { BlacklistedVideo, UserRight } from '../../../../shared'
|
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { getFormattedObjects } from '../../../helpers/utils'
|
2017-05-15 15:22:03 -05:00
|
|
|
import {
|
2018-01-18 03:53:54 -06:00
|
|
|
asyncMiddleware, authenticate, blacklistSortValidator, ensureUserHasRight, paginationValidator, setBlacklistSort, setDefaultPagination,
|
2017-12-28 04:16:08 -06:00
|
|
|
videosBlacklistAddValidator, videosBlacklistRemoveValidator
|
2017-05-15 15:22:03 -05:00
|
|
|
} from '../../../middlewares'
|
2017-12-12 10:53:50 -06:00
|
|
|
import { VideoBlacklistModel } from '../../../models/video/video-blacklist'
|
2017-05-15 15:22:03 -05:00
|
|
|
|
|
|
|
const blacklistRouter = express.Router()
|
|
|
|
|
2017-10-10 03:02:18 -05:00
|
|
|
blacklistRouter.post('/:videoId/blacklist',
|
2017-05-15 15:22:03 -05:00
|
|
|
authenticate,
|
2017-10-27 09:55:03 -05:00
|
|
|
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
|
2017-11-27 10:30:46 -06:00
|
|
|
asyncMiddleware(videosBlacklistAddValidator),
|
2017-10-25 04:55:06 -05:00
|
|
|
asyncMiddleware(addVideoToBlacklist)
|
2017-05-05 09:53:35 -05:00
|
|
|
)
|
|
|
|
|
2017-10-10 03:02:18 -05:00
|
|
|
blacklistRouter.get('/blacklist',
|
|
|
|
authenticate,
|
2017-10-27 09:55:03 -05:00
|
|
|
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
|
2017-10-10 03:02:18 -05:00
|
|
|
paginationValidator,
|
|
|
|
blacklistSortValidator,
|
|
|
|
setBlacklistSort,
|
2018-01-18 03:53:54 -06:00
|
|
|
setDefaultPagination,
|
2017-10-25 04:55:06 -05:00
|
|
|
asyncMiddleware(listBlacklist)
|
2017-10-10 03:02:18 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
blacklistRouter.delete('/:videoId/blacklist',
|
|
|
|
authenticate,
|
2017-10-27 09:55:03 -05:00
|
|
|
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
|
2017-11-27 10:30:46 -06:00
|
|
|
asyncMiddleware(videosBlacklistRemoveValidator),
|
2017-10-25 04:55:06 -05:00
|
|
|
asyncMiddleware(removeVideoFromBlacklistController)
|
2017-10-10 03:02:18 -05:00
|
|
|
)
|
|
|
|
|
2017-05-05 09:53:35 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
export {
|
|
|
|
blacklistRouter
|
|
|
|
}
|
2017-05-05 09:53:35 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-10-25 04:55:06 -05:00
|
|
|
async function addVideoToBlacklist (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-05-05 09:53:35 -05:00
|
|
|
const videoInstance = res.locals.video
|
|
|
|
|
|
|
|
const toCreate = {
|
|
|
|
videoId: videoInstance.id
|
|
|
|
}
|
|
|
|
|
2017-12-12 10:53:50 -06:00
|
|
|
await VideoBlacklistModel.create(toCreate)
|
2017-10-25 04:55:06 -05:00
|
|
|
return res.type('json').status(204).end()
|
2017-05-05 09:53:35 -05:00
|
|
|
}
|
2017-10-10 03:02:18 -05:00
|
|
|
|
2017-10-25 04:55:06 -05:00
|
|
|
async function listBlacklist (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-12-12 10:53:50 -06:00
|
|
|
const resultList = await VideoBlacklistModel.listForApi(req.query.start, req.query.count, req.query.sort)
|
2017-10-25 04:55:06 -05:00
|
|
|
|
2017-12-12 10:53:50 -06:00
|
|
|
return res.json(getFormattedObjects<BlacklistedVideo, VideoBlacklistModel>(resultList.data, resultList.total))
|
2017-10-10 03:02:18 -05:00
|
|
|
}
|
|
|
|
|
2017-10-25 04:55:06 -05:00
|
|
|
async function removeVideoFromBlacklistController (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-12-12 10:53:50 -06:00
|
|
|
const blacklistedVideo = res.locals.blacklistedVideo as VideoBlacklistModel
|
2017-10-10 03:02:18 -05:00
|
|
|
|
2017-10-25 04:55:06 -05:00
|
|
|
try {
|
|
|
|
await blacklistedVideo.destroy()
|
|
|
|
|
|
|
|
logger.info('Video %s removed from blacklist.', res.locals.video.uuid)
|
|
|
|
|
|
|
|
return res.sendStatus(204)
|
|
|
|
} catch (err) {
|
2018-03-26 08:54:13 -05:00
|
|
|
logger.error('Some error while removing video %s from blacklist.', res.locals.video.uuid, { err })
|
2017-10-25 04:55:06 -05:00
|
|
|
throw err
|
|
|
|
}
|
2017-10-10 03:02:18 -05:00
|
|
|
}
|