1
0
Fork 0
peertube/server/controllers/api/videos/blacklist.ts

143 lines
4.4 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as express from 'express'
2019-08-15 09:53:26 +00:00
import { UserRight, VideoBlacklistCreate, VideoBlacklistType } from '../../../../shared'
2017-12-28 10:16:08 +00:00
import { logger } from '../../../helpers/logger'
import { getFormattedObjects } from '../../../helpers/utils'
2017-05-15 20:22:03 +00:00
import {
2018-08-13 14:57:13 +00:00
asyncMiddleware,
authenticate,
blacklistSortValidator,
ensureUserHasRight,
paginationValidator,
setBlacklistSort,
setDefaultPagination,
videosBlacklistAddValidator,
2019-08-15 09:53:26 +00:00
videosBlacklistFiltersValidator,
2018-08-13 14:57:13 +00:00
videosBlacklistRemoveValidator,
2019-08-15 09:53:26 +00:00
videosBlacklistUpdateValidator
2017-05-15 20:22:03 +00:00
} from '../../../middlewares'
2017-12-12 16:53:50 +00:00
import { VideoBlacklistModel } from '../../../models/video/video-blacklist'
2018-08-13 14:57:13 +00:00
import { sequelizeTypescript } from '../../../initializers'
2018-12-26 09:36:24 +00:00
import { Notifier } from '../../../lib/notifier'
2019-02-26 09:55:40 +00:00
import { sendDeleteVideo } from '../../../lib/activitypub/send'
import { federateVideoIfNeeded } from '../../../lib/activitypub'
2019-08-15 09:53:26 +00:00
import { MVideoBlacklistVideo } from '@server/typings/models'
2017-05-15 20:22:03 +00:00
const blacklistRouter = express.Router()
2017-10-10 08:02:18 +00:00
blacklistRouter.post('/:videoId/blacklist',
2017-05-15 20:22:03 +00:00
authenticate,
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
2017-11-27 16:30:46 +00:00
asyncMiddleware(videosBlacklistAddValidator),
2017-10-25 09:55:06 +00:00
asyncMiddleware(addVideoToBlacklist)
2017-05-05 14:53:35 +00:00
)
2017-10-10 08:02:18 +00:00
blacklistRouter.get('/blacklist',
authenticate,
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
2017-10-10 08:02:18 +00:00
paginationValidator,
blacklistSortValidator,
setBlacklistSort,
setDefaultPagination,
videosBlacklistFiltersValidator,
2017-10-25 09:55:06 +00:00
asyncMiddleware(listBlacklist)
2017-10-10 08:02:18 +00:00
)
2018-08-13 14:57:13 +00:00
blacklistRouter.put('/:videoId/blacklist',
authenticate,
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
asyncMiddleware(videosBlacklistUpdateValidator),
asyncMiddleware(updateVideoBlacklistController)
)
2017-10-10 08:02:18 +00:00
blacklistRouter.delete('/:videoId/blacklist',
authenticate,
ensureUserHasRight(UserRight.MANAGE_VIDEO_BLACKLIST),
2017-11-27 16:30:46 +00:00
asyncMiddleware(videosBlacklistRemoveValidator),
2017-10-25 09:55:06 +00:00
asyncMiddleware(removeVideoFromBlacklistController)
2017-10-10 08:02:18 +00:00
)
2017-05-05 14:53:35 +00:00
// ---------------------------------------------------------------------------
2017-05-15 20:22:03 +00:00
export {
blacklistRouter
}
2017-05-05 14:53:35 +00:00
// ---------------------------------------------------------------------------
2018-08-13 14:57:13 +00:00
async function addVideoToBlacklist (req: express.Request, res: express.Response) {
2019-08-15 09:53:26 +00:00
const videoInstance = res.locals.videoAll
2018-08-13 14:57:13 +00:00
const body: VideoBlacklistCreate = req.body
2017-05-05 14:53:35 +00:00
const toCreate = {
2018-08-13 14:57:13 +00:00
videoId: videoInstance.id,
unfederated: body.unfederate === true,
reason: body.reason,
type: VideoBlacklistType.MANUAL
2017-05-05 14:53:35 +00:00
}
2019-08-15 09:53:26 +00:00
const blacklist: MVideoBlacklistVideo = await VideoBlacklistModel.create(toCreate)
2018-12-26 09:36:24 +00:00
blacklist.Video = videoInstance
if (body.unfederate === true) {
await sendDeleteVideo(videoInstance, undefined)
}
2018-12-26 09:36:24 +00:00
Notifier.Instance.notifyOnVideoBlacklist(blacklist)
2019-08-15 09:53:26 +00:00
logger.info('Video %s blacklisted.', videoInstance.uuid)
2018-12-26 09:36:24 +00:00
2017-10-25 09:55:06 +00:00
return res.type('json').status(204).end()
2017-05-05 14:53:35 +00:00
}
2017-10-10 08:02:18 +00:00
2018-08-13 14:57:13 +00:00
async function updateVideoBlacklistController (req: express.Request, res: express.Response) {
2019-03-19 09:35:15 +00:00
const videoBlacklist = res.locals.videoBlacklist
2018-08-13 14:57:13 +00:00
if (req.body.reason !== undefined) videoBlacklist.reason = req.body.reason
await sequelizeTypescript.transaction(t => {
return videoBlacklist.save({ transaction: t })
})
return res.type('json').status(204).end()
}
2019-07-23 07:48:48 +00:00
async function listBlacklist (req: express.Request, res: express.Response) {
const resultList = await VideoBlacklistModel.listForApi(req.query.start, req.query.count, req.query.sort, req.query.type)
2017-10-25 09:55:06 +00:00
2019-07-23 07:48:48 +00:00
return res.json(getFormattedObjects(resultList.data, resultList.total))
2017-10-10 08:02:18 +00:00
}
2019-07-23 07:48:48 +00:00
async function removeVideoFromBlacklistController (req: express.Request, res: express.Response) {
2019-03-19 09:35:15 +00:00
const videoBlacklist = res.locals.videoBlacklist
2019-08-15 09:53:26 +00:00
const video = res.locals.videoAll
2017-10-10 08:02:18 +00:00
const videoBlacklistType = await sequelizeTypescript.transaction(async t => {
const unfederated = videoBlacklist.unfederated
const videoBlacklistType = videoBlacklist.type
await videoBlacklist.destroy({ transaction: t })
2019-07-23 10:04:15 +00:00
video.VideoBlacklist = undefined
// Re federate the video
if (unfederated === true) {
await federateVideoIfNeeded(video, true, t)
}
return videoBlacklistType
2018-08-13 14:57:13 +00:00
})
2017-10-25 09:55:06 +00:00
2018-12-26 09:36:24 +00:00
Notifier.Instance.notifyOnVideoUnblacklist(video)
if (videoBlacklistType === VideoBlacklistType.AUTO_BEFORE_PUBLISHED) {
Notifier.Instance.notifyOnVideoPublishedAfterRemovedFromAutoBlacklist(video)
// Delete on object so new video notifications will send
delete video.VideoBlacklist
2019-07-23 10:04:15 +00:00
Notifier.Instance.notifyOnNewVideoIfNeeded(video)
}
2019-08-15 09:53:26 +00:00
logger.info('Video %s removed from blacklist.', video.uuid)
2017-10-25 09:55:06 +00:00
2018-08-13 14:57:13 +00:00
return res.type('json').status(204).end()
2017-10-10 08:02:18 +00:00
}