2020-04-09 05:00:30 -04:00
|
|
|
async function register ({
|
2020-04-09 05:35:29 -04:00
|
|
|
peertubeHelpers,
|
2020-05-07 08:58:24 -04:00
|
|
|
registerHook,
|
|
|
|
getRouter
|
2020-04-09 05:00:30 -04:00
|
|
|
}) {
|
2020-04-09 05:35:29 -04:00
|
|
|
const logger = peertubeHelpers.logger
|
|
|
|
|
|
|
|
logger.info('Hello world from plugin four')
|
2020-04-09 05:00:30 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
{
|
|
|
|
const username = 'root'
|
|
|
|
const results = await peertubeHelpers.database.query(
|
|
|
|
'SELECT "email" from "user" WHERE "username" = $username',
|
|
|
|
{
|
|
|
|
type: 'SELECT',
|
|
|
|
bind: { username }
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
logger.info('root email is ' + results[0]['email'])
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
registerHook({
|
|
|
|
target: 'action:api.video.viewed',
|
|
|
|
handler: async ({ video }) => {
|
2021-02-11 04:23:52 -05:00
|
|
|
const videoFromDB1 = await peertubeHelpers.videos.loadByUrl(video.url)
|
|
|
|
const videoFromDB2 = await peertubeHelpers.videos.loadByIdOrUUID(video.id)
|
|
|
|
const videoFromDB3 = await peertubeHelpers.videos.loadByIdOrUUID(video.uuid)
|
|
|
|
|
|
|
|
if (videoFromDB1.uuid !== videoFromDB2.uuid || videoFromDB2.uuid !== videoFromDB3.uuid) return
|
|
|
|
|
|
|
|
logger.info('video from DB uuid is %s.', videoFromDB1.uuid)
|
2020-05-07 08:58:24 -04:00
|
|
|
|
|
|
|
await peertubeHelpers.videos.removeVideo(video.id)
|
2020-04-09 05:00:30 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
logger.info('Video deleted by plugin four.')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-04-09 05:35:29 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
{
|
|
|
|
const serverActor = await peertubeHelpers.server.getServerActor()
|
|
|
|
logger.info('server actor name is %s', serverActor.preferredUsername)
|
|
|
|
}
|
2020-04-09 05:35:29 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
{
|
|
|
|
logger.info('server url is %s', peertubeHelpers.config.getWebserverUrl())
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const actions = {
|
|
|
|
blockServer,
|
|
|
|
unblockServer,
|
|
|
|
blockAccount,
|
|
|
|
unblockAccount,
|
|
|
|
blacklist,
|
|
|
|
unblacklist
|
2020-04-09 05:35:29 -04:00
|
|
|
}
|
2020-05-07 08:58:24 -04:00
|
|
|
|
|
|
|
const router = getRouter()
|
|
|
|
router.post('/commander', async (req, res) => {
|
|
|
|
try {
|
|
|
|
await actions[req.body.command](peertubeHelpers, req.body)
|
|
|
|
|
|
|
|
res.sendStatus(204)
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Error in commander.', { err })
|
|
|
|
res.sendStatus(500)
|
|
|
|
}
|
|
|
|
})
|
2021-04-09 08:51:28 -04:00
|
|
|
|
|
|
|
router.get('/server-config', async (req, res) => {
|
|
|
|
const serverConfig = await peertubeHelpers.config.getServerConfig()
|
|
|
|
|
|
|
|
return res.json({ serverConfig })
|
|
|
|
})
|
|
|
|
|
|
|
|
router.get('/static-route', async (req, res) => {
|
2021-04-22 04:55:28 -04:00
|
|
|
const staticRoute = peertubeHelpers.plugin.getBaseStaticRoute()
|
2021-04-09 08:51:28 -04:00
|
|
|
|
|
|
|
return res.json({ staticRoute })
|
|
|
|
})
|
2021-04-22 04:55:28 -04:00
|
|
|
|
|
|
|
router.get('/router-route', async (req, res) => {
|
|
|
|
const routerRoute = peertubeHelpers.plugin.getBaseRouterRoute()
|
|
|
|
|
|
|
|
return res.json({ routerRoute })
|
|
|
|
})
|
|
|
|
|
2022-08-02 09:29:00 -04:00
|
|
|
router.get('/user/:id', async (req, res) => {
|
|
|
|
const user = await peertubeHelpers.user.loadById(req.params.id)
|
|
|
|
if (!user) return res.status(404).end()
|
|
|
|
|
|
|
|
return res.json({
|
|
|
|
username: user.username
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-05-05 09:26:28 -04:00
|
|
|
router.get('/user', async (req, res) => {
|
|
|
|
const user = await peertubeHelpers.user.getAuthUser(res)
|
2021-04-22 09:16:35 -04:00
|
|
|
if (!user) return res.sendStatus(404)
|
2021-04-22 04:55:28 -04:00
|
|
|
|
|
|
|
const isAdmin = user.role === 0
|
|
|
|
const isModerator = user.role === 1
|
|
|
|
const isUser = user.role === 2
|
|
|
|
|
|
|
|
return res.json({
|
2022-08-02 09:29:00 -04:00
|
|
|
id: user.id,
|
2021-04-22 04:55:28 -04:00
|
|
|
username: user.username,
|
2021-05-05 09:26:28 -04:00
|
|
|
displayName: user.Account.name,
|
2021-04-22 04:55:28 -04:00
|
|
|
isAdmin,
|
|
|
|
isModerator,
|
|
|
|
isUser
|
|
|
|
})
|
|
|
|
})
|
2021-12-16 10:49:43 -05:00
|
|
|
|
|
|
|
router.get('/video-files/:id', async (req, res) => {
|
|
|
|
const details = await peertubeHelpers.videos.getFiles(req.params.id)
|
|
|
|
if (!details) return res.sendStatus(404)
|
|
|
|
|
|
|
|
return res.json(details)
|
|
|
|
})
|
2021-12-16 11:00:46 -05:00
|
|
|
|
|
|
|
router.get('/ffprobe', async (req, res) => {
|
|
|
|
const result = await peertubeHelpers.videos.ffprobe(req.query.path)
|
|
|
|
if (!result) return res.sendStatus(404)
|
|
|
|
|
|
|
|
return res.json(result)
|
|
|
|
})
|
2022-10-10 09:18:31 -04:00
|
|
|
|
|
|
|
router.post('/send-notification', async (req, res) => {
|
|
|
|
peertubeHelpers.socket.sendNotification(req.body.userId, {
|
|
|
|
type: 1,
|
|
|
|
userId: req.body.userId
|
|
|
|
})
|
|
|
|
|
|
|
|
return res.sendStatus(201)
|
|
|
|
})
|
|
|
|
|
|
|
|
router.post('/send-video-live-new-state/:uuid', async (req, res) => {
|
|
|
|
const video = await peertubeHelpers.videos.loadByIdOrUUID(req.params.uuid)
|
|
|
|
peertubeHelpers.socket.sendVideoLiveNewState(video)
|
|
|
|
|
|
|
|
return res.sendStatus(201)
|
|
|
|
})
|
2020-05-07 08:58:24 -04:00
|
|
|
}
|
2021-04-09 08:51:28 -04:00
|
|
|
|
2020-04-09 05:00:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function unregister () {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
register,
|
|
|
|
unregister
|
|
|
|
}
|
|
|
|
|
|
|
|
// ###########################################################################
|
2020-05-07 08:58:24 -04:00
|
|
|
|
|
|
|
async function blockServer (peertubeHelpers, body) {
|
|
|
|
const serverActor = await peertubeHelpers.server.getServerActor()
|
|
|
|
|
|
|
|
await peertubeHelpers.moderation.blockServer({ byAccountId: serverActor.Account.id, hostToBlock: body.hostToBlock })
|
|
|
|
}
|
|
|
|
|
|
|
|
async function unblockServer (peertubeHelpers, body) {
|
|
|
|
const serverActor = await peertubeHelpers.server.getServerActor()
|
|
|
|
|
|
|
|
await peertubeHelpers.moderation.unblockServer({ byAccountId: serverActor.Account.id, hostToUnblock: body.hostToUnblock })
|
|
|
|
}
|
|
|
|
|
|
|
|
async function blockAccount (peertubeHelpers, body) {
|
|
|
|
const serverActor = await peertubeHelpers.server.getServerActor()
|
|
|
|
|
|
|
|
await peertubeHelpers.moderation.blockAccount({ byAccountId: serverActor.Account.id, handleToBlock: body.handleToBlock })
|
|
|
|
}
|
|
|
|
|
|
|
|
async function unblockAccount (peertubeHelpers, body) {
|
|
|
|
const serverActor = await peertubeHelpers.server.getServerActor()
|
|
|
|
|
|
|
|
await peertubeHelpers.moderation.unblockAccount({ byAccountId: serverActor.Account.id, handleToUnblock: body.handleToUnblock })
|
|
|
|
}
|
|
|
|
|
|
|
|
async function blacklist (peertubeHelpers, body) {
|
|
|
|
await peertubeHelpers.moderation.blacklistVideo({
|
|
|
|
videoIdOrUUID: body.videoUUID,
|
|
|
|
createOptions: body
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async function unblacklist (peertubeHelpers, body) {
|
|
|
|
await peertubeHelpers.moderation.unblacklistVideo({ videoIdOrUUID: body.videoUUID })
|
|
|
|
}
|