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