PeerTube/server/controllers/api/videos/blacklist.ts

82 lines
2.4 KiB
TypeScript
Raw Normal View History

2017-06-05 21:53:49 +02:00
import * as express from 'express'
2017-10-10 10:02:18 +02:00
import { logger, getFormattedObjects } from '../../../helpers'
2017-05-15 22:22:03 +02:00
import {
authenticate,
ensureUserHasRight,
2017-10-10 10:02:18 +02:00
videosBlacklistAddValidator,
videosBlacklistRemoveValidator,
paginationValidator,
blacklistSortValidator,
setBlacklistSort,
2017-10-25 11:55:06 +02:00
setPagination,
asyncMiddleware
2017-05-15 22:22:03 +02:00
} from '../../../middlewares'
import { BlacklistedVideo, UserRight } from '../../../../shared'
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,
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,
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
2017-10-10 10:02:18 +02:00
paginationValidator,
blacklistSortValidator,
setBlacklistSort,
setPagination,
2017-10-25 11:55:06 +02:00
asyncMiddleware(listBlacklist)
2017-10-10 10:02:18 +02:00
)
blacklistRouter.delete('/:videoId/blacklist',
authenticate,
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) {
logger.error('Some error while removing video %s from blacklist.', res.locals.video.uuid, err)
throw err
}
2017-10-10 10:02:18 +02:00
}