2021-04-22 04:55:28 -04:00
|
|
|
import * as express from 'express'
|
|
|
|
import { join } from 'path'
|
2020-04-09 05:00:30 -04:00
|
|
|
import { buildLogger } from '@server/helpers/logger'
|
2021-04-22 04:55:28 -04:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
2020-04-30 02:46:40 -04:00
|
|
|
import { WEBSERVER } from '@server/initializers/constants'
|
2021-04-22 04:55:28 -04:00
|
|
|
import { sequelizeTypescript } from '@server/initializers/database'
|
|
|
|
import { AccountModel } from '@server/models/account/account'
|
|
|
|
import { AccountBlocklistModel } from '@server/models/account/account-blocklist'
|
2020-05-07 08:58:24 -04:00
|
|
|
import { getServerActor } from '@server/models/application/application'
|
2021-04-22 04:55:28 -04:00
|
|
|
import { ServerModel } from '@server/models/server/server'
|
2020-05-07 08:58:24 -04:00
|
|
|
import { ServerBlocklistModel } from '@server/models/server/server-blocklist'
|
2021-04-22 04:55:28 -04:00
|
|
|
import { VideoModel } from '@server/models/video/video'
|
2020-05-07 08:58:24 -04:00
|
|
|
import { VideoBlacklistModel } from '@server/models/video/video-blacklist'
|
2021-04-09 08:51:28 -04:00
|
|
|
import { MPlugin } from '@server/types/models'
|
2021-04-22 04:55:28 -04:00
|
|
|
import { PeerTubeHelpers } from '@server/types/plugins'
|
|
|
|
import { VideoBlacklistCreate } from '@shared/models'
|
|
|
|
import { addAccountInBlocklist, addServerInBlocklist, removeAccountFromBlocklist, removeServerFromBlocklist } from '../blocklist'
|
|
|
|
import { getServerConfig } from '../config'
|
|
|
|
import { blacklistVideo, unblacklistVideo } from '../video-blacklist'
|
2020-04-09 03:57:32 -04:00
|
|
|
|
2021-04-09 08:51:28 -04:00
|
|
|
function buildPluginHelpers (pluginModel: MPlugin, npmName: string): PeerTubeHelpers {
|
2020-04-09 05:00:30 -04:00
|
|
|
const logger = buildPluginLogger(npmName)
|
|
|
|
|
|
|
|
const database = buildDatabaseHelpers()
|
2020-04-09 05:35:29 -04:00
|
|
|
const videos = buildVideosHelpers()
|
2020-04-09 03:57:32 -04:00
|
|
|
|
2020-04-30 02:46:40 -04:00
|
|
|
const config = buildConfigHelpers()
|
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
const server = buildServerHelpers()
|
|
|
|
|
|
|
|
const moderation = buildModerationHelpers()
|
|
|
|
|
2021-04-22 04:55:28 -04:00
|
|
|
const plugin = buildPluginRelatedHelpers(pluginModel, npmName)
|
|
|
|
|
|
|
|
const user = buildUserHelpers()
|
2021-04-09 08:51:28 -04:00
|
|
|
|
2020-04-09 03:57:32 -04:00
|
|
|
return {
|
2020-04-09 05:00:30 -04:00
|
|
|
logger,
|
2020-04-09 05:35:29 -04:00
|
|
|
database,
|
2020-04-30 02:46:40 -04:00
|
|
|
videos,
|
2020-05-07 08:58:24 -04:00
|
|
|
config,
|
|
|
|
moderation,
|
2021-04-09 08:51:28 -04:00
|
|
|
plugin,
|
2021-04-22 04:55:28 -04:00
|
|
|
server,
|
|
|
|
user
|
2020-04-09 03:57:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
buildPluginHelpers
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2020-04-09 05:00:30 -04:00
|
|
|
function buildPluginLogger (npmName: string) {
|
2020-04-09 03:57:32 -04:00
|
|
|
return buildLogger(npmName)
|
|
|
|
}
|
2020-04-09 05:00:30 -04:00
|
|
|
|
|
|
|
function buildDatabaseHelpers () {
|
|
|
|
return {
|
|
|
|
query: sequelizeTypescript.query.bind(sequelizeTypescript)
|
|
|
|
}
|
|
|
|
}
|
2020-04-09 05:35:29 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
function buildServerHelpers () {
|
|
|
|
return {
|
|
|
|
getServerActor: () => getServerActor()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-09 05:35:29 -04:00
|
|
|
function buildVideosHelpers () {
|
|
|
|
return {
|
2020-05-07 08:58:24 -04:00
|
|
|
loadByUrl: (url: string) => {
|
|
|
|
return VideoModel.loadByUrl(url)
|
|
|
|
},
|
|
|
|
|
2021-02-11 04:23:52 -05:00
|
|
|
loadByIdOrUUID: (id: number | string) => {
|
|
|
|
return VideoModel.load(id)
|
|
|
|
},
|
|
|
|
|
2020-04-09 05:35:29 -04:00
|
|
|
removeVideo: (id: number) => {
|
|
|
|
return sequelizeTypescript.transaction(async t => {
|
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(id, t)
|
|
|
|
|
|
|
|
await video.destroy({ transaction: t })
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-30 02:46:40 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
function buildModerationHelpers () {
|
|
|
|
return {
|
|
|
|
blockServer: async (options: { byAccountId: number, hostToBlock: string }) => {
|
|
|
|
const serverToBlock = await ServerModel.loadOrCreateByHost(options.hostToBlock)
|
|
|
|
|
|
|
|
await addServerInBlocklist(options.byAccountId, serverToBlock.id)
|
|
|
|
},
|
|
|
|
|
|
|
|
unblockServer: async (options: { byAccountId: number, hostToUnblock: string }) => {
|
|
|
|
const serverBlock = await ServerBlocklistModel.loadByAccountAndHost(options.byAccountId, options.hostToUnblock)
|
|
|
|
if (!serverBlock) return
|
|
|
|
|
|
|
|
await removeServerFromBlocklist(serverBlock)
|
|
|
|
},
|
|
|
|
|
|
|
|
blockAccount: async (options: { byAccountId: number, handleToBlock: string }) => {
|
|
|
|
const accountToBlock = await AccountModel.loadByNameWithHost(options.handleToBlock)
|
|
|
|
if (!accountToBlock) return
|
|
|
|
|
|
|
|
await addAccountInBlocklist(options.byAccountId, accountToBlock.id)
|
|
|
|
},
|
|
|
|
|
|
|
|
unblockAccount: async (options: { byAccountId: number, handleToUnblock: string }) => {
|
|
|
|
const targetAccount = await AccountModel.loadByNameWithHost(options.handleToUnblock)
|
|
|
|
if (!targetAccount) return
|
|
|
|
|
|
|
|
const accountBlock = await AccountBlocklistModel.loadByAccountAndTarget(options.byAccountId, targetAccount.id)
|
|
|
|
if (!accountBlock) return
|
|
|
|
|
|
|
|
await removeAccountFromBlocklist(accountBlock)
|
|
|
|
},
|
|
|
|
|
|
|
|
blacklistVideo: async (options: { videoIdOrUUID: number | string, createOptions: VideoBlacklistCreate }) => {
|
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(options.videoIdOrUUID)
|
|
|
|
if (!video) return
|
|
|
|
|
|
|
|
await blacklistVideo(video, options.createOptions)
|
|
|
|
},
|
|
|
|
|
|
|
|
unblacklistVideo: async (options: { videoIdOrUUID: number | string }) => {
|
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(options.videoIdOrUUID)
|
|
|
|
if (!video) return
|
|
|
|
|
|
|
|
const videoBlacklist = await VideoBlacklistModel.loadByVideoId(video.id)
|
|
|
|
if (!videoBlacklist) return
|
|
|
|
|
|
|
|
await unblacklistVideo(videoBlacklist, video)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-30 02:46:40 -04:00
|
|
|
function buildConfigHelpers () {
|
|
|
|
return {
|
|
|
|
getWebserverUrl () {
|
|
|
|
return WEBSERVER.URL
|
2021-04-09 08:51:28 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
getServerConfig () {
|
|
|
|
return getServerConfig()
|
2020-04-30 02:46:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-09 08:51:28 -04:00
|
|
|
|
2021-04-22 04:55:28 -04:00
|
|
|
function buildPluginRelatedHelpers (plugin: MPlugin, npmName: string) {
|
|
|
|
return {
|
|
|
|
getBaseStaticRoute: () => `/plugins/${plugin.name}/${plugin.version}/static/`,
|
|
|
|
|
|
|
|
getBaseRouterRoute: () => `/plugins/${plugin.name}/${plugin.version}/router/`,
|
|
|
|
|
|
|
|
getDataDirectoryPath: () => join(CONFIG.STORAGE.PLUGINS_DIR, 'data', npmName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildUserHelpers () {
|
2021-04-09 08:51:28 -04:00
|
|
|
return {
|
2021-04-22 04:55:28 -04:00
|
|
|
getAuthUser: (res: express.Response) => res.locals.oauth?.token?.User
|
2021-04-09 08:51:28 -04:00
|
|
|
}
|
|
|
|
}
|