PeerTube/server/lib/video-blacklist.ts

73 lines
2.2 KiB
TypeScript
Raw Normal View History

2019-07-18 14:28:37 +02:00
import { Transaction } from 'sequelize'
2019-04-11 11:33:44 +02:00
import { CONFIG } from '../initializers/config'
2019-04-15 10:49:46 +02:00
import { UserRight, VideoBlacklistType } from '../../shared/models'
import { VideoBlacklistModel } from '../models/video/video-blacklist'
import { logger } from '../helpers/logger'
2019-04-15 10:49:46 +02:00
import { UserAdminFlag } from '../../shared/models/users/user-flag.model'
2019-07-18 14:28:37 +02:00
import { Hooks } from './plugins/hooks'
2019-07-23 12:04:15 +02:00
import { Notifier } from './notifier'
2019-08-15 11:53:26 +02:00
import { MUser, MVideoBlacklist, MVideoWithBlacklistLight } from '@server/typings/models'
2019-07-22 11:14:58 +02:00
async function autoBlacklistVideoIfNeeded (parameters: {
2019-08-15 11:53:26 +02:00
video: MVideoWithBlacklistLight,
user?: MUser,
2019-07-22 11:14:58 +02:00
isRemote: boolean,
isNew: boolean,
2019-07-23 12:04:15 +02:00
notify?: boolean,
2019-07-22 11:14:58 +02:00
transaction?: Transaction
}) {
2019-07-23 12:04:15 +02:00
const { video, user, isRemote, isNew, notify = true, transaction } = parameters
2019-07-19 17:30:41 +02:00
const doAutoBlacklist = await Hooks.wrapPromiseFun(
autoBlacklistNeeded,
2019-07-22 11:14:58 +02:00
{ video, user, isRemote, isNew },
2019-07-18 14:28:37 +02:00
'filter:video.auto-blacklist.result'
)
2019-07-18 14:28:37 +02:00
if (!doAutoBlacklist) return false
const videoBlacklistToCreate = {
videoId: video.id,
unfederated: true,
reason: 'Auto-blacklisted. Moderator review required.',
type: VideoBlacklistType.AUTO_BEFORE_PUBLISHED
}
2019-08-15 11:53:26 +02:00
const [ videoBlacklist ] = await VideoBlacklistModel.findOrCreate<MVideoBlacklist>({
2019-07-22 11:14:58 +02:00
where: {
videoId: video.id
},
defaults: videoBlacklistToCreate,
transaction
})
video.VideoBlacklist = videoBlacklist
2019-04-15 10:49:46 +02:00
2019-07-23 12:04:15 +02:00
if (notify) Notifier.Instance.notifyOnVideoAutoBlacklist(video)
logger.info('Video %s auto-blacklisted.', video.uuid)
return true
}
2019-07-22 11:14:58 +02:00
async function autoBlacklistNeeded (parameters: {
2019-08-15 11:53:26 +02:00
video: MVideoWithBlacklistLight,
2019-07-22 11:14:58 +02:00
isRemote: boolean,
isNew: boolean,
2019-08-15 11:53:26 +02:00
user?: MUser
2019-07-22 11:14:58 +02:00
}) {
const { user, video, isRemote, isNew } = parameters
2019-07-18 14:28:37 +02:00
2019-07-22 11:14:58 +02:00
// Already blacklisted
if (video.VideoBlacklist) return false
2019-07-18 14:28:37 +02:00
if (!CONFIG.AUTO_BLACKLIST.VIDEOS.OF_USERS.ENABLED || !user) return false
2019-07-23 10:44:48 +02:00
if (isRemote || isNew === false) return false
2019-07-18 14:28:37 +02:00
if (user.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) || user.hasAdminFlag(UserAdminFlag.BY_PASS_VIDEO_AUTO_BLACKLIST)) return false
return true
}
// ---------------------------------------------------------------------------
export {
autoBlacklistVideoIfNeeded
}