108 lines
3.3 KiB
TypeScript
108 lines
3.3 KiB
TypeScript
import * as express from 'express'
|
|
import { blacklistVideo, unblacklistVideo } from '@server/lib/video-blacklist'
|
|
import { UserRight, VideoBlacklistCreate } from '../../../../shared'
|
|
import { logger } from '../../../helpers/logger'
|
|
import { getFormattedObjects } from '../../../helpers/utils'
|
|
import { sequelizeTypescript } from '../../../initializers/database'
|
|
import {
|
|
asyncMiddleware,
|
|
authenticate,
|
|
blacklistSortValidator,
|
|
ensureUserHasRight,
|
|
paginationValidator,
|
|
setBlacklistSort,
|
|
setDefaultPagination,
|
|
videosBlacklistAddValidator,
|
|
videosBlacklistFiltersValidator,
|
|
videosBlacklistRemoveValidator,
|
|
videosBlacklistUpdateValidator
|
|
} from '../../../middlewares'
|
|
import { VideoBlacklistModel } from '../../../models/video/video-blacklist'
|
|
|
|
const blacklistRouter = express.Router()
|
|
|
|
blacklistRouter.post('/:videoId/blacklist',
|
|
authenticate,
|
|
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
|
|
asyncMiddleware(videosBlacklistAddValidator),
|
|
asyncMiddleware(addVideoToBlacklistController)
|
|
)
|
|
|
|
blacklistRouter.get('/blacklist',
|
|
authenticate,
|
|
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
|
|
paginationValidator,
|
|
blacklistSortValidator,
|
|
setBlacklistSort,
|
|
setDefaultPagination,
|
|
videosBlacklistFiltersValidator,
|
|
asyncMiddleware(listBlacklist)
|
|
)
|
|
|
|
blacklistRouter.put('/:videoId/blacklist',
|
|
authenticate,
|
|
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
|
|
asyncMiddleware(videosBlacklistUpdateValidator),
|
|
asyncMiddleware(updateVideoBlacklistController)
|
|
)
|
|
|
|
blacklistRouter.delete('/:videoId/blacklist',
|
|
authenticate,
|
|
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
|
|
asyncMiddleware(videosBlacklistRemoveValidator),
|
|
asyncMiddleware(removeVideoFromBlacklistController)
|
|
)
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
blacklistRouter
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
async function addVideoToBlacklistController (req: express.Request, res: express.Response) {
|
|
const videoInstance = res.locals.videoAll
|
|
const body: VideoBlacklistCreate = req.body
|
|
|
|
await blacklistVideo(videoInstance, body)
|
|
|
|
logger.info('Video %s blacklisted.', videoInstance.uuid)
|
|
|
|
return res.type('json').sendStatus(204)
|
|
}
|
|
|
|
async function updateVideoBlacklistController (req: express.Request, res: express.Response) {
|
|
const videoBlacklist = res.locals.videoBlacklist
|
|
|
|
if (req.body.reason !== undefined) videoBlacklist.reason = req.body.reason
|
|
|
|
await sequelizeTypescript.transaction(t => {
|
|
return videoBlacklist.save({ transaction: t })
|
|
})
|
|
|
|
return res.type('json').sendStatus(204)
|
|
}
|
|
|
|
async function listBlacklist (req: express.Request, res: express.Response) {
|
|
const resultList = await VideoBlacklistModel.listForApi({
|
|
start: req.query.start,
|
|
count: req.query.count,
|
|
sort: req.query.sort,
|
|
search: req.query.search,
|
|
type: req.query.type
|
|
})
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
}
|
|
|
|
async function removeVideoFromBlacklistController (req: express.Request, res: express.Response) {
|
|
const videoBlacklist = res.locals.videoBlacklist
|
|
const video = res.locals.videoAll
|
|
|
|
await unblacklistVideo(videoBlacklist, video)
|
|
|
|
logger.info('Video %s removed from blacklist.', video.uuid)
|
|
|
|
return res.type('json').sendStatus(204)
|
|
}
|