2022-01-11 00:29:33 +00:00
|
|
|
import type { RegisterServerOptions } from '@peertube/peertube-types'
|
2021-04-29 16:31:48 +00:00
|
|
|
import type { Router, Request, Response, NextFunction } from 'express'
|
2021-05-01 16:30:21 +00:00
|
|
|
import { videoHasWebchat } from '../../../shared/lib/video'
|
2021-05-03 18:06:36 +00:00
|
|
|
import { asyncMiddleware } from '../middlewares/async'
|
2021-05-05 15:06:19 +00:00
|
|
|
import { getCheckAPIKeyMiddleware } from '../middlewares/apikey'
|
2021-05-04 11:00:44 +00:00
|
|
|
import { prosodyCheckUserPassword, prosodyRegisterUser, prosodyUserRegistered } from '../prosody/auth'
|
2021-06-02 12:07:12 +00:00
|
|
|
import { getUserNickname } from '../helpers'
|
2021-08-05 13:41:49 +00:00
|
|
|
import { Affiliations, getVideoAffiliations, getChannelAffiliations } from '../prosody/config/affiliations'
|
2021-05-06 11:31:55 +00:00
|
|
|
import { getProsodyDomain } from '../prosody/config/domain'
|
2023-04-21 14:56:48 +00:00
|
|
|
import { fillVideoCustomFields } from '../custom-fields'
|
2021-08-05 13:41:49 +00:00
|
|
|
import { getChannelInfosById } from '../database/channel'
|
2023-05-19 10:52:52 +00:00
|
|
|
import { ensureProsodyRunning } from '../prosody/ctl'
|
2023-05-24 14:09:55 +00:00
|
|
|
import { serverBuildInfos } from '../federation/outgoing'
|
2023-05-19 10:52:52 +00:00
|
|
|
import { isDebugMode } from '../debug'
|
2021-04-29 16:31:48 +00:00
|
|
|
|
|
|
|
// See here for description: https://modules.prosody.im/mod_muc_http_defaults.html
|
|
|
|
interface RoomDefaults {
|
2021-05-01 08:22:06 +00:00
|
|
|
config: {
|
|
|
|
name: string
|
|
|
|
description: string
|
2021-05-02 12:35:58 +00:00
|
|
|
language?: string
|
|
|
|
persistent?: boolean
|
|
|
|
public?: boolean
|
|
|
|
members_only?: boolean
|
|
|
|
allow_member_invites?: boolean
|
|
|
|
public_jids?: boolean
|
2023-04-11 15:07:43 +00:00
|
|
|
// subject_from: string
|
|
|
|
// subject: string
|
2021-05-02 12:35:58 +00:00
|
|
|
changesubject?: boolean
|
|
|
|
// historylength: number
|
|
|
|
moderated?: boolean
|
|
|
|
archiving?: boolean
|
2021-05-01 08:22:06 +00:00
|
|
|
}
|
2021-05-05 13:22:37 +00:00
|
|
|
affiliations?: Affiliations
|
2021-04-29 16:31:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function initApiRouter (options: RegisterServerOptions): Promise<Router> {
|
|
|
|
const { peertubeHelpers, getRouter } = options
|
|
|
|
const router = getRouter()
|
|
|
|
const logger = peertubeHelpers.logger
|
|
|
|
|
2021-06-22 10:57:24 +00:00
|
|
|
router.get('/test', asyncMiddleware([
|
|
|
|
getCheckAPIKeyMiddleware(options),
|
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
|
|
|
logger.info('Test api call')
|
|
|
|
res.json({ ok: true })
|
|
|
|
}
|
|
|
|
]))
|
|
|
|
|
2021-05-05 15:06:19 +00:00
|
|
|
router.get('/room', asyncMiddleware([
|
|
|
|
getCheckAPIKeyMiddleware(options),
|
2021-05-03 18:06:36 +00:00
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
2021-04-30 16:03:12 +00:00
|
|
|
const jid: string = req.query.jid as string || ''
|
|
|
|
logger.info(`Requesting room information for room '${jid}'.`)
|
|
|
|
|
2021-05-01 16:30:21 +00:00
|
|
|
const settings = await options.settingsManager.getSettings([
|
2021-08-05 13:41:49 +00:00
|
|
|
'prosody-room-type'
|
2021-05-01 16:30:21 +00:00
|
|
|
])
|
2021-08-05 13:41:49 +00:00
|
|
|
// Now, we have two different room type: per video or per channel.
|
|
|
|
if (settings['prosody-room-type'] === 'channel') {
|
|
|
|
const matches = jid.match(/^channel\.(\d+)$/)
|
|
|
|
if (!matches || !matches[1]) {
|
|
|
|
logger.warn(`Invalid channel room jid '${jid}'.`)
|
|
|
|
res.sendStatus(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const channelId = parseInt(matches[1])
|
|
|
|
const channelInfos = await getChannelInfosById(options, channelId)
|
|
|
|
if (!channelInfos) {
|
|
|
|
logger.warn(`Channel ${channelId} not found`)
|
|
|
|
res.sendStatus(403)
|
|
|
|
return
|
|
|
|
}
|
2021-04-30 16:03:12 +00:00
|
|
|
|
2021-08-05 13:41:49 +00:00
|
|
|
let affiliations: Affiliations
|
|
|
|
try {
|
|
|
|
affiliations = await getChannelAffiliations(options, channelId)
|
|
|
|
} catch (error) {
|
|
|
|
logger.error(`Failed to get channel affiliations for ${channelId}:`, error)
|
|
|
|
// affiliations: should at least be {}, so that the first user will not be moderator/admin
|
|
|
|
affiliations = {}
|
|
|
|
}
|
|
|
|
|
|
|
|
const roomDefaults: RoomDefaults = {
|
|
|
|
config: {
|
|
|
|
name: channelInfos.displayName,
|
2023-04-11 15:07:43 +00:00
|
|
|
description: ''
|
|
|
|
// subject: channelInfos.displayName
|
2021-08-05 13:41:49 +00:00
|
|
|
},
|
|
|
|
affiliations: affiliations
|
|
|
|
}
|
|
|
|
res.json(roomDefaults)
|
|
|
|
} else {
|
2022-12-07 15:55:44 +00:00
|
|
|
// FIXME: @peertube/peertype-types@4.2.2: wrongly considere video as MVideoThumbnail.
|
2021-08-05 13:41:49 +00:00
|
|
|
const video = await peertubeHelpers.videos.loadByIdOrUUID(jid)
|
|
|
|
if (!video) {
|
|
|
|
logger.warn(`Video ${jid} not found`)
|
|
|
|
res.sendStatus(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-21 10:02:52 +00:00
|
|
|
// Adding the custom fields and data:
|
2021-08-05 13:41:49 +00:00
|
|
|
await fillVideoCustomFields(options, video)
|
|
|
|
|
|
|
|
// check settings (chat enabled for this video?)
|
|
|
|
const settings = await options.settingsManager.getSettings([
|
|
|
|
'chat-per-live-video',
|
|
|
|
'chat-all-lives',
|
|
|
|
'chat-all-non-lives',
|
|
|
|
'chat-videos-list'
|
|
|
|
])
|
|
|
|
if (!videoHasWebchat({
|
|
|
|
'chat-per-live-video': !!settings['chat-per-live-video'],
|
|
|
|
'chat-all-lives': !!settings['chat-all-lives'],
|
|
|
|
'chat-all-non-lives': !!settings['chat-all-non-lives'],
|
|
|
|
'chat-videos-list': settings['chat-videos-list'] as string
|
|
|
|
}, video)) {
|
|
|
|
logger.warn(`Video ${jid} has not chat activated`)
|
|
|
|
res.sendStatus(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let affiliations: Affiliations
|
|
|
|
try {
|
|
|
|
affiliations = await getVideoAffiliations(options, video)
|
|
|
|
} catch (error) {
|
|
|
|
logger.error(`Failed to get video affiliations for ${video.uuid}:`, error)
|
|
|
|
// affiliations: should at least be {}, so that the first user will not be moderator/admin
|
|
|
|
affiliations = {}
|
|
|
|
}
|
2021-05-05 13:22:37 +00:00
|
|
|
|
2021-08-05 13:41:49 +00:00
|
|
|
const roomDefaults: RoomDefaults = {
|
|
|
|
config: {
|
|
|
|
name: video.name,
|
|
|
|
description: '',
|
2023-04-11 15:07:43 +00:00
|
|
|
language: video.language
|
|
|
|
// subject: video.name
|
2021-08-05 13:41:49 +00:00
|
|
|
},
|
|
|
|
affiliations: affiliations
|
|
|
|
}
|
|
|
|
res.json(roomDefaults)
|
2021-04-30 16:03:12 +00:00
|
|
|
}
|
2021-04-29 16:31:48 +00:00
|
|
|
}
|
2021-05-05 15:06:19 +00:00
|
|
|
]))
|
2021-04-29 16:31:48 +00:00
|
|
|
|
2021-05-04 11:00:44 +00:00
|
|
|
router.get('/auth', asyncMiddleware(
|
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
2021-06-02 12:07:12 +00:00
|
|
|
const user = await peertubeHelpers.user.getAuthUser(res)
|
2021-05-04 11:00:44 +00:00
|
|
|
if (!user) {
|
|
|
|
res.sendStatus(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (user.blocked) {
|
|
|
|
res.sendStatus(403)
|
|
|
|
return
|
|
|
|
}
|
2021-08-05 09:51:16 +00:00
|
|
|
// NB 2021-08-05: Peertube usernames should be lowercase. But it seems that
|
|
|
|
// in some old installation, there can be uppercase letters in usernames.
|
|
|
|
// When Peertube checks username unicity, it does a lowercase search.
|
|
|
|
// So it feels safe to normalize usernames like so:
|
|
|
|
const normalizedUsername = user.username.toLowerCase()
|
2021-05-06 11:31:55 +00:00
|
|
|
const prosodyDomain = await getProsodyDomain(options)
|
2021-08-05 09:51:16 +00:00
|
|
|
const password: string = await prosodyRegisterUser(normalizedUsername)
|
2021-05-05 14:30:18 +00:00
|
|
|
const nickname: string | undefined = await getUserNickname(options, user)
|
2021-05-04 11:00:44 +00:00
|
|
|
res.status(200).json({
|
2021-08-05 09:51:16 +00:00
|
|
|
jid: normalizedUsername + '@' + prosodyDomain,
|
2021-05-04 14:33:32 +00:00
|
|
|
password: password,
|
|
|
|
nickname: nickname
|
2021-05-04 11:00:44 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
2021-05-03 18:37:23 +00:00
|
|
|
router.post('/user/register', asyncMiddleware(
|
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
|
|
|
res.sendStatus(501)
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
router.get('/user/check_password', asyncMiddleware(
|
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
2021-05-06 11:31:55 +00:00
|
|
|
const prosodyDomain = await getProsodyDomain(options)
|
2021-05-03 18:37:23 +00:00
|
|
|
const user = req.query.user
|
|
|
|
const server = req.query.server
|
|
|
|
const pass = req.query.pass
|
2021-05-06 11:31:55 +00:00
|
|
|
if (server !== prosodyDomain) {
|
2021-05-03 18:37:23 +00:00
|
|
|
logger.warn(`Cannot call check_password on user on server ${server as string}.`)
|
|
|
|
res.status(200).send('false')
|
|
|
|
return
|
|
|
|
}
|
2021-05-04 11:00:44 +00:00
|
|
|
if (user && pass && await prosodyCheckUserPassword(user as string, pass as string)) {
|
2021-05-03 18:37:23 +00:00
|
|
|
res.status(200).send('true')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
res.status(200).send('false')
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
router.get('/user/user_exists', asyncMiddleware(
|
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
2021-05-06 11:31:55 +00:00
|
|
|
const prosodyDomain = await getProsodyDomain(options)
|
2021-05-03 18:37:23 +00:00
|
|
|
const user = req.query.user
|
|
|
|
const server = req.query.server
|
2021-05-06 11:31:55 +00:00
|
|
|
if (server !== prosodyDomain) {
|
2021-05-03 18:37:23 +00:00
|
|
|
logger.warn(`Cannot call user_exists on user on server ${server as string}.`)
|
|
|
|
res.status(200).send('false')
|
|
|
|
return
|
|
|
|
}
|
2021-05-04 11:00:44 +00:00
|
|
|
if (user && await prosodyUserRegistered(user as string)) {
|
2021-05-03 18:37:23 +00:00
|
|
|
res.status(200).send('true')
|
2021-05-04 11:00:44 +00:00
|
|
|
return
|
2021-05-03 18:37:23 +00:00
|
|
|
}
|
|
|
|
res.status(200).send('false')
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
router.post('/user/set_password', asyncMiddleware(
|
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
|
|
|
res.sendStatus(501)
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
router.post('/user/remove_user', asyncMiddleware(
|
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
|
|
|
res.sendStatus(501)
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
2023-05-24 14:09:55 +00:00
|
|
|
router.get('/federation_server_infos', asyncMiddleware(
|
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
|
|
|
logger.info('federation_server_infos api call')
|
|
|
|
const result = await serverBuildInfos(options)
|
|
|
|
res.json(result)
|
|
|
|
}
|
|
|
|
))
|
2023-05-19 10:52:52 +00:00
|
|
|
|
|
|
|
if (isDebugMode(options)) {
|
|
|
|
// Only add this route if the debug mode is enabled at time of the server launch.
|
|
|
|
// Note: the isDebugMode will be tested again when the API is called.
|
|
|
|
// Note: we dont authenticate the user. We want this API to be callable from debug tools.
|
|
|
|
// This should not be an issue, as debug_mode should only be available on dev environments.
|
|
|
|
router.get('/restart_prosody', asyncMiddleware(
|
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
|
|
|
if (!isDebugMode(options)) {
|
|
|
|
res.json({ ok: false })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const restartProsodyInDebugMode = req.query.debugger === 'true'
|
|
|
|
await ensureProsodyRunning(options, true, restartProsodyInDebugMode)
|
|
|
|
res.json({ ok: true })
|
|
|
|
}
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2021-04-29 16:31:48 +00:00
|
|
|
return router
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
initApiRouter
|
|
|
|
}
|