2019-07-19 11:30:41 -04:00
|
|
|
async function register ({ registerHook, registerSetting, settingsManager, storageManager, peertubeHelpers }) {
|
|
|
|
const actionHooks = [
|
|
|
|
'action:application.listening',
|
2022-08-03 05:33:43 -04:00
|
|
|
'action:notifier.notification.created',
|
2019-07-19 11:30:41 -04:00
|
|
|
|
|
|
|
'action:api.video.updated',
|
|
|
|
'action:api.video.deleted',
|
|
|
|
'action:api.video.uploaded',
|
|
|
|
'action:api.video.viewed',
|
|
|
|
|
2022-08-03 05:17:57 -04:00
|
|
|
'action:api.video-channel.created',
|
|
|
|
'action:api.video-channel.updated',
|
|
|
|
'action:api.video-channel.deleted',
|
|
|
|
|
2020-11-06 07:59:50 -05:00
|
|
|
'action:api.live-video.created',
|
|
|
|
|
2019-07-19 11:30:41 -04:00
|
|
|
'action:api.video-thread.created',
|
|
|
|
'action:api.video-comment-reply.created',
|
2019-12-06 09:59:12 -05:00
|
|
|
'action:api.video-comment.deleted',
|
|
|
|
|
2021-12-17 10:41:01 -05:00
|
|
|
'action:api.video-caption.created',
|
|
|
|
'action:api.video-caption.deleted',
|
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
'action:api.user.blocked',
|
|
|
|
'action:api.user.unblocked',
|
|
|
|
'action:api.user.registered',
|
|
|
|
'action:api.user.created',
|
|
|
|
'action:api.user.deleted',
|
|
|
|
'action:api.user.updated',
|
2021-06-28 03:22:15 -04:00
|
|
|
'action:api.user.oauth2-got-token',
|
|
|
|
|
|
|
|
'action:api.video-playlist-element.created'
|
2019-07-19 11:30:41 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
for (const h of actionHooks) {
|
|
|
|
registerHook({
|
|
|
|
target: h,
|
|
|
|
handler: () => peertubeHelpers.logger.debug('Run hook %s.', h)
|
|
|
|
})
|
|
|
|
}
|
2019-07-19 04:37:35 -04:00
|
|
|
|
|
|
|
registerHook({
|
2019-07-19 11:30:41 -04:00
|
|
|
target: 'filter:api.videos.list.params',
|
|
|
|
handler: obj => addToCount(obj)
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
|
|
|
|
2019-07-19 11:30:41 -04:00
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.videos.list.result',
|
2019-07-22 05:14:58 -04:00
|
|
|
handler: obj => addToTotal(obj)
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
|
|
|
|
2022-02-15 02:24:22 -05:00
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-playlist.videos.list.params',
|
|
|
|
handler: obj => addToCount(obj)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-playlist.videos.list.result',
|
|
|
|
handler: obj => addToTotal(obj)
|
|
|
|
})
|
|
|
|
|
2020-12-08 04:30:33 -05:00
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.accounts.videos.list.params',
|
|
|
|
handler: obj => addToCount(obj)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.accounts.videos.list.result',
|
|
|
|
handler: obj => addToTotal(obj, 2)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-channels.videos.list.params',
|
|
|
|
handler: obj => addToCount(obj, 3)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-channels.videos.list.result',
|
|
|
|
handler: obj => addToTotal(obj, 3)
|
|
|
|
})
|
|
|
|
|
2021-01-20 09:28:34 -05:00
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.user.me.videos.list.params',
|
|
|
|
handler: obj => addToCount(obj, 4)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.user.me.videos.list.result',
|
|
|
|
handler: obj => addToTotal(obj, 4)
|
|
|
|
})
|
|
|
|
|
2019-07-19 11:30:41 -04:00
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video.get.result',
|
|
|
|
handler: video => {
|
|
|
|
video.name += ' <3'
|
2019-07-19 04:37:35 -04:00
|
|
|
|
2019-07-19 11:30:41 -04:00
|
|
|
return video
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2022-08-03 05:17:57 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-channels.list.params',
|
|
|
|
handler: obj => addToCount(obj, 1)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-channels.list.result',
|
|
|
|
handler: obj => addToTotal(obj, 1)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-channel.get.result',
|
|
|
|
handler: channel => {
|
|
|
|
channel.name += ' <3'
|
|
|
|
|
|
|
|
return channel
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2020-11-06 07:59:50 -05:00
|
|
|
for (const hook of [ 'filter:api.video.upload.accept.result', 'filter:api.live-video.create.accept.result' ]) {
|
|
|
|
registerHook({
|
|
|
|
target: hook,
|
|
|
|
handler: ({ accepted }, { videoBody, liveVideoBody }) => {
|
|
|
|
if (!accepted) return { accepted: false }
|
2020-05-14 05:10:26 -04:00
|
|
|
|
2020-11-06 07:59:50 -05:00
|
|
|
const name = videoBody
|
|
|
|
? videoBody.name
|
|
|
|
: liveVideoBody.name
|
|
|
|
|
|
|
|
if (name.indexOf('bad word') !== -1) return { accepted: false, errorMessage: 'bad word' }
|
|
|
|
|
|
|
|
return { accepted: true }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-05-14 05:10:26 -04:00
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video.pre-import-url.accept.result',
|
|
|
|
handler: ({ accepted }, { videoImportBody }) => {
|
|
|
|
if (!accepted) return { accepted: false }
|
|
|
|
if (videoImportBody.targetUrl.includes('bad')) return { accepted: false, errorMessage: 'bad target url' }
|
|
|
|
|
|
|
|
return { accepted: true }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video.pre-import-torrent.accept.result',
|
|
|
|
handler: ({ accepted }, { videoImportBody }) => {
|
|
|
|
if (!accepted) return { accepted: false }
|
|
|
|
if (videoImportBody.name.includes('bad torrent')) return { accepted: false, errorMessage: 'bad torrent' }
|
|
|
|
|
|
|
|
return { accepted: true }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video.post-import-url.accept.result',
|
|
|
|
handler: ({ accepted }, { video }) => {
|
|
|
|
if (!accepted) return { accepted: false }
|
|
|
|
if (video.name.includes('bad word')) return { accepted: false, errorMessage: 'bad word' }
|
|
|
|
|
|
|
|
return { accepted: true }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video.post-import-torrent.accept.result',
|
|
|
|
handler: ({ accepted }, { video }) => {
|
|
|
|
if (!accepted) return { accepted: false }
|
|
|
|
if (video.name.includes('bad word')) return { accepted: false, errorMessage: 'bad word' }
|
2019-07-19 11:30:41 -04:00
|
|
|
|
|
|
|
return { accepted: true }
|
|
|
|
}
|
|
|
|
})
|
2019-07-22 05:14:58 -04:00
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-thread.create.accept.result',
|
|
|
|
handler: ({ accepted }, { commentBody }) => checkCommentBadWord(accepted, commentBody)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-comment-reply.create.accept.result',
|
|
|
|
handler: ({ accepted }, { commentBody }) => checkCommentBadWord(accepted, commentBody)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-threads.list.params',
|
|
|
|
handler: obj => addToCount(obj)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-threads.list.result',
|
|
|
|
handler: obj => addToTotal(obj)
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.video-thread-comments.list.result',
|
|
|
|
handler: obj => {
|
|
|
|
obj.data.forEach(c => c.text += ' <3')
|
|
|
|
|
|
|
|
return obj
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:video.auto-blacklist.result',
|
|
|
|
handler: (blacklisted, { video }) => {
|
|
|
|
if (blacklisted) return true
|
|
|
|
if (video.name.includes('please blacklist me')) return true
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
})
|
2019-10-25 07:54:32 -04:00
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.user.signup.allowed.result',
|
|
|
|
handler: (result, params) => {
|
2022-07-13 05:26:00 -04:00
|
|
|
if (params && params.body && params.body.email && params.body.email.includes('jma')) {
|
2019-10-25 07:54:32 -04:00
|
|
|
return { allowed: false, errorMessage: 'No jma' }
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
})
|
2021-03-23 06:54:08 -04:00
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.download.torrent.allowed.result',
|
|
|
|
handler: (result, params) => {
|
|
|
|
if (params && params.downloadName.includes('bad torrent')) {
|
|
|
|
return { allowed: false, errorMessage: 'Liu Bei' }
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.download.video.allowed.result',
|
|
|
|
handler: (result, params) => {
|
|
|
|
if (params && !params.streamingPlaylist && params.video.name.includes('bad file')) {
|
|
|
|
return { allowed: false, errorMessage: 'Cao Cao' }
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params && params.streamingPlaylist && params.video.name.includes('bad playlist file')) {
|
|
|
|
return { allowed: false, errorMessage: 'Sun Jian' }
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
})
|
2021-03-23 12:18:18 -04:00
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:html.embed.video.allowed.result',
|
|
|
|
handler: (result, params) => {
|
|
|
|
return {
|
|
|
|
allowed: false,
|
|
|
|
html: 'Lu Bu'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
registerHook({
|
|
|
|
target: 'filter:html.embed.video-playlist.allowed.result',
|
|
|
|
handler: (result, params) => {
|
|
|
|
return {
|
|
|
|
allowed: false,
|
|
|
|
html: 'Diao Chan'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2021-03-24 04:16:48 -04:00
|
|
|
|
2021-12-09 08:05:21 -05:00
|
|
|
registerHook({
|
|
|
|
target: 'filter:api.server.stats.get.result',
|
|
|
|
handler: (result) => {
|
|
|
|
return { ...result, customStats: 14 }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2022-08-02 09:29:00 -04:00
|
|
|
registerHook({
|
|
|
|
target: 'filter:job-queue.process.params',
|
|
|
|
handler: (object, context) => {
|
|
|
|
if (context.type !== 'video-studio-edition') return object
|
|
|
|
|
|
|
|
object.data.tasks = [
|
|
|
|
{
|
|
|
|
name: 'cut',
|
|
|
|
options: {
|
|
|
|
start: 0,
|
|
|
|
end: 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
return object
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2022-08-02 10:05:44 -04:00
|
|
|
registerHook({
|
2022-08-05 07:40:56 -04:00
|
|
|
target: 'filter:transcoding.auto.resolutions-to-transcode.result',
|
2022-08-02 10:05:44 -04:00
|
|
|
handler: (object, context) => {
|
|
|
|
if (context.video.name.includes('transcode-filter')) {
|
|
|
|
object = [ 100 ]
|
|
|
|
}
|
|
|
|
|
|
|
|
return object
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-12-10 07:49:19 -05:00
|
|
|
// Upload/import/live attributes
|
|
|
|
for (const target of [
|
|
|
|
'filter:api.video.upload.video-attribute.result',
|
|
|
|
'filter:api.video.import-url.video-attribute.result',
|
|
|
|
'filter:api.video.import-torrent.video-attribute.result',
|
|
|
|
'filter:api.video.live.video-attribute.result'
|
|
|
|
]) {
|
|
|
|
registerHook({
|
|
|
|
target,
|
|
|
|
handler: (result) => {
|
|
|
|
return { ...result, description: result.description + ' - ' + target }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-03-24 04:16:48 -04:00
|
|
|
{
|
2021-07-21 10:13:20 -04:00
|
|
|
const filterHooks = [
|
2021-03-24 04:16:48 -04:00
|
|
|
'filter:api.search.videos.local.list.params',
|
|
|
|
'filter:api.search.videos.local.list.result',
|
|
|
|
'filter:api.search.videos.index.list.params',
|
|
|
|
'filter:api.search.videos.index.list.result',
|
|
|
|
'filter:api.search.video-channels.local.list.params',
|
|
|
|
'filter:api.search.video-channels.local.list.result',
|
|
|
|
'filter:api.search.video-channels.index.list.params',
|
|
|
|
'filter:api.search.video-channels.index.list.result',
|
2021-06-17 10:02:38 -04:00
|
|
|
'filter:api.search.video-playlists.local.list.params',
|
|
|
|
'filter:api.search.video-playlists.local.list.result',
|
|
|
|
'filter:api.search.video-playlists.index.list.params',
|
2021-07-21 10:13:20 -04:00
|
|
|
'filter:api.search.video-playlists.index.list.result',
|
|
|
|
|
|
|
|
'filter:api.overviews.videos.list.params',
|
2022-08-02 09:29:00 -04:00
|
|
|
'filter:api.overviews.videos.list.result',
|
|
|
|
|
|
|
|
'filter:job-queue.process.params',
|
|
|
|
'filter:job-queue.process.result'
|
2021-03-24 04:16:48 -04:00
|
|
|
]
|
|
|
|
|
2021-07-21 10:13:20 -04:00
|
|
|
for (const h of filterHooks) {
|
2021-03-24 04:16:48 -04:00
|
|
|
registerHook({
|
|
|
|
target: h,
|
|
|
|
handler: (obj) => {
|
|
|
|
peertubeHelpers.logger.debug('Run hook %s.', h)
|
|
|
|
|
|
|
|
return obj
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2019-07-19 04:37:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function unregister () {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
register,
|
|
|
|
unregister
|
|
|
|
}
|
|
|
|
|
|
|
|
// ############################################################################
|
|
|
|
|
2020-12-08 04:30:33 -05:00
|
|
|
function addToCount (obj, amount = 1) {
|
|
|
|
return Object.assign({}, obj, { count: obj.count + amount })
|
2019-07-19 04:37:35 -04:00
|
|
|
}
|
2019-07-22 05:14:58 -04:00
|
|
|
|
2020-12-08 04:30:33 -05:00
|
|
|
function addToTotal (result, amount = 1) {
|
2019-07-22 05:14:58 -04:00
|
|
|
return {
|
|
|
|
data: result.data,
|
2020-12-08 04:30:33 -05:00
|
|
|
total: result.total + amount
|
2019-07-22 05:14:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkCommentBadWord (accepted, commentBody) {
|
|
|
|
if (!accepted) return { accepted: false }
|
|
|
|
if (commentBody.text.indexOf('bad word') !== -1) return { accepted: false, errorMessage: 'bad word '}
|
|
|
|
|
|
|
|
return { accepted: true }
|
|
|
|
}
|