2023-04-21 10:02:52 +00:00
|
|
|
import type { RegisterServerOptions, MVideoFullLight, MVideoAP, Video, MVideoThumbnail } from '@peertube/peertube-types'
|
2023-05-24 14:09:55 +00:00
|
|
|
import type { LiveChatJSONLDAttribute, LiveChatJSONLDAttributeV1, PeertubeXMPPServerInfos } from './types'
|
|
|
|
import { sanitizePeertubeLiveChatInfos, sanitizeXMPPHostFromInstanceUrl } from './sanitize'
|
2023-04-20 16:28:08 +00:00
|
|
|
import { URL } from 'url'
|
|
|
|
import * as fs from 'fs'
|
|
|
|
import * as path from 'path'
|
|
|
|
|
|
|
|
/*
|
|
|
|
Important Note: we could store these data in database. For example by using storageManager.storeData.
|
|
|
|
But I'm afraid there might be write concurrency issues, or performance issues.
|
|
|
|
Indeed, Peertube storageManager stores everything in one JSON attribute on the plugin tuple.
|
|
|
|
|
|
|
|
Moreover, remote instance can create many data, that will not be cleaned.
|
|
|
|
|
|
|
|
So, instead of using storageManager, or using a custom DB table, we will store data in files.
|
|
|
|
If a file exists, it means the video has a chat.
|
|
|
|
The file itself contains the JSON LiveChatInfos object.
|
|
|
|
*/
|
|
|
|
|
2023-05-24 13:09:56 +00:00
|
|
|
const cache: Map<string, LiveChatJSONLDAttributeV1> = new Map<string, LiveChatJSONLDAttributeV1>()
|
2023-04-21 10:25:00 +00:00
|
|
|
|
2023-04-20 16:28:08 +00:00
|
|
|
/**
|
|
|
|
* This function stores remote LiveChat infos that are contained in ActivityPub objects.
|
|
|
|
* We store these data for remotes videos.
|
|
|
|
*
|
|
|
|
* But we also store the data for local videos, so we can know what data we send to other Peertube instances.
|
|
|
|
* This is not really used for now, but can help if we want, one day, to know which videos we must refresh on remote
|
|
|
|
* instances.
|
|
|
|
* @param options server options
|
|
|
|
* @param video video object
|
|
|
|
* @param liveChatInfos video ActivityPub data to read
|
|
|
|
* @returns void
|
|
|
|
*/
|
|
|
|
async function storeVideoLiveChatInfos (
|
|
|
|
options: RegisterServerOptions,
|
|
|
|
video: MVideoFullLight | MVideoAP,
|
|
|
|
liveChatInfos: LiveChatJSONLDAttribute
|
|
|
|
): Promise<void> {
|
|
|
|
const logger = options.peertubeHelpers.logger
|
|
|
|
|
2023-04-21 10:25:00 +00:00
|
|
|
cache.delete(video.url)
|
|
|
|
|
2023-04-20 16:28:08 +00:00
|
|
|
const remote = video.remote
|
|
|
|
const filePath = await _getFilePath(options, remote, video.uuid, video.url)
|
|
|
|
if (!filePath) {
|
|
|
|
logger.error('Cant compute the file path for storing liveChat infos for video ' + video.uuid)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.debug(`Video ${video.uuid} data should be stored in ${filePath}`)
|
|
|
|
|
|
|
|
if (!liveChatInfos) {
|
|
|
|
logger.debug(`${remote ? 'Remote' : 'Local'} video ${video.uuid} has no chat infos, removing if necessary`)
|
|
|
|
await _del(options, filePath)
|
2023-04-21 10:25:00 +00:00
|
|
|
// Delete the cache again, just in case.
|
|
|
|
cache.delete(video.url)
|
2023-04-20 16:28:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-21 10:02:52 +00:00
|
|
|
logger.debug(`${remote ? 'Remote' : 'Local'} video ${video.uuid} has chat infos to store`)
|
2023-04-20 16:28:08 +00:00
|
|
|
await _store(options, filePath, liveChatInfos)
|
2023-04-21 10:25:00 +00:00
|
|
|
// Delete the cache again... in case a read failed because we were writing at the same time.
|
|
|
|
cache.delete(video.url)
|
2023-04-20 16:28:08 +00:00
|
|
|
}
|
|
|
|
|
2023-04-21 10:02:52 +00:00
|
|
|
/**
|
|
|
|
* Gets the stored livechat information (if any).
|
|
|
|
* @param options server options
|
|
|
|
* @param video video object
|
|
|
|
* @returns livechat stored data
|
|
|
|
*/
|
|
|
|
async function getVideoLiveChatInfos (
|
|
|
|
options: RegisterServerOptions,
|
|
|
|
video: MVideoFullLight | MVideoAP | Video | MVideoThumbnail
|
2023-05-24 13:09:56 +00:00
|
|
|
): Promise<LiveChatJSONLDAttributeV1> {
|
2023-04-21 10:02:52 +00:00
|
|
|
const logger = options.peertubeHelpers.logger
|
2023-04-21 10:25:00 +00:00
|
|
|
|
|
|
|
const cached = cache.get(video.url)
|
|
|
|
if (cached !== undefined) { return cached }
|
|
|
|
|
2023-04-21 10:02:52 +00:00
|
|
|
const remote = ('remote' in video) ? video.remote : !video.isLocal
|
|
|
|
const filePath = await _getFilePath(options, remote, video.uuid, video.url)
|
|
|
|
if (!filePath) {
|
|
|
|
logger.error('Cant compute the file path for storing liveChat infos for video ' + video.uuid)
|
2023-04-21 10:25:00 +00:00
|
|
|
cache.set(video.url, false)
|
2023-04-21 10:02:52 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
const content = await _get(options, filePath)
|
2023-04-21 10:25:00 +00:00
|
|
|
if (content === null) {
|
|
|
|
cache.set(video.url, false)
|
|
|
|
return false
|
|
|
|
}
|
2023-04-21 10:02:52 +00:00
|
|
|
// We must sanitize here, in case a previous plugin version did not sanitize enougth.
|
2023-05-24 13:09:56 +00:00
|
|
|
const r = sanitizePeertubeLiveChatInfos(options, content)
|
2023-04-21 10:25:00 +00:00
|
|
|
cache.set(video.url, r)
|
|
|
|
return r
|
2023-04-21 10:02:52 +00:00
|
|
|
}
|
|
|
|
|
2023-05-19 10:52:52 +00:00
|
|
|
/**
|
|
|
|
* When receiving livechat information for remote servers, we store some information
|
|
|
|
* about remote server capatibilities: has it s2s enabled? can it proxify s2s in Peertube?
|
|
|
|
* These information can then be read by Prosody module mod_s2s_peertubelivechat.
|
|
|
|
*
|
|
|
|
* We simply store the more recent informations. Indeed, it should be consistent between videos.
|
2023-05-24 13:09:56 +00:00
|
|
|
*
|
|
|
|
* Note: XMPP actively uses subdomains to seperate components.
|
|
|
|
* Peertube chats are on the domain `room.your_instance.tld`. But the server will
|
|
|
|
* be contacted using `your_instance.tld`.
|
|
|
|
* We must make sure that the Prosody module mod_s2s_peertubelivechat finds both
|
|
|
|
* kind of urls.
|
|
|
|
*
|
2023-05-19 10:52:52 +00:00
|
|
|
* @param options server optiosn
|
2023-05-24 14:09:55 +00:00
|
|
|
* @param xmppserver remote server informations
|
2023-05-19 10:52:52 +00:00
|
|
|
*/
|
|
|
|
async function storeRemoteServerInfos (
|
|
|
|
options: RegisterServerOptions,
|
2023-05-24 14:09:55 +00:00
|
|
|
xmppserver: PeertubeXMPPServerInfos
|
2023-05-19 10:52:52 +00:00
|
|
|
): Promise<void> {
|
|
|
|
const logger = options.peertubeHelpers.logger
|
|
|
|
|
2023-05-24 14:09:55 +00:00
|
|
|
const mainHost = xmppserver.host
|
2023-05-24 13:09:56 +00:00
|
|
|
const hosts = [
|
2023-05-24 14:09:55 +00:00
|
|
|
xmppserver.host,
|
|
|
|
xmppserver.muc
|
2023-05-24 13:09:56 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
for (const host of hosts) {
|
|
|
|
if (!host) { continue }
|
|
|
|
|
|
|
|
// Some security check, just in case.
|
|
|
|
if (host.includes('..')) {
|
|
|
|
logger.error(`Host seems not correct, contains ..: ${host}`)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
const dir = path.resolve(
|
|
|
|
options.peertubeHelpers.plugin.getDataDirectoryPath(),
|
|
|
|
'serverInfos',
|
|
|
|
host
|
|
|
|
)
|
|
|
|
const s2sFilePath = path.resolve(dir, 's2s')
|
|
|
|
const wsS2SFilePath = path.resolve(dir, 'ws-s2s')
|
2023-05-24 14:09:55 +00:00
|
|
|
const timestampFilePath = path.resolve(dir, 'last-update')
|
2023-05-24 13:09:56 +00:00
|
|
|
|
2023-05-24 14:09:55 +00:00
|
|
|
if (xmppserver.directs2s?.port) {
|
2023-05-24 13:09:56 +00:00
|
|
|
await _store(options, s2sFilePath, {
|
|
|
|
host: mainHost,
|
2023-05-24 14:09:55 +00:00
|
|
|
port: xmppserver.directs2s.port
|
2023-05-24 13:09:56 +00:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
await _del(options, s2sFilePath)
|
|
|
|
}
|
|
|
|
|
2023-05-24 14:09:55 +00:00
|
|
|
if (xmppserver.websockets2s?.url) {
|
2023-05-24 13:09:56 +00:00
|
|
|
await _store(options, wsS2SFilePath, {
|
|
|
|
host: mainHost,
|
2023-05-24 14:09:55 +00:00
|
|
|
url: xmppserver.websockets2s.url
|
2023-05-24 13:09:56 +00:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
await _del(options, wsS2SFilePath)
|
|
|
|
}
|
2023-05-24 14:09:55 +00:00
|
|
|
|
|
|
|
await _store(options, timestampFilePath, {
|
|
|
|
timestamp: (new Date()).getTime()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicate if we have the remote hosts informations.
|
|
|
|
* @param options server options
|
|
|
|
* @param host host domain
|
2023-05-24 14:26:57 +00:00
|
|
|
* @param maxAge if given, the max age (in milliseconds) allowed for remote server informations
|
2023-05-24 14:09:55 +00:00
|
|
|
*/
|
2023-05-24 14:26:57 +00:00
|
|
|
async function hasRemoteServerInfos (
|
|
|
|
options: RegisterServerOptions,
|
|
|
|
hostParam: any,
|
|
|
|
maxAge?: number
|
|
|
|
): Promise<boolean> {
|
2023-05-24 14:09:55 +00:00
|
|
|
const host = sanitizeXMPPHostFromInstanceUrl(options, hostParam)
|
|
|
|
if (!host) {
|
|
|
|
return false
|
2023-05-19 10:52:52 +00:00
|
|
|
}
|
2023-05-24 14:09:55 +00:00
|
|
|
if (host.includes('..')) {
|
|
|
|
options.peertubeHelpers.logger.error(`Host seems not correct, contains ..: ${host}`)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
const filePath = path.resolve(
|
|
|
|
options.peertubeHelpers.plugin.getDataDirectoryPath(),
|
|
|
|
'serverInfos',
|
|
|
|
host,
|
|
|
|
'last-update'
|
|
|
|
)
|
2023-05-24 14:26:57 +00:00
|
|
|
if (!fs.existsSync(filePath)) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if (maxAge === undefined) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// We must check the 'last-update' to be newer than maxAge
|
|
|
|
try {
|
|
|
|
const content = await fs.promises.readFile(filePath, {
|
|
|
|
encoding: 'utf-8'
|
|
|
|
})
|
|
|
|
const json = JSON.parse(content)
|
|
|
|
if (!json) { return false }
|
|
|
|
if (typeof json !== 'object') { return false }
|
|
|
|
if (!json.timestamp) { return false }
|
|
|
|
if ((typeof json.timestamp) !== 'number') { return false }
|
|
|
|
const now = (new Date()).getTime()
|
|
|
|
if (now - (json.timestamp as number) > maxAge) {
|
|
|
|
options.peertubeHelpers.logger.info(
|
|
|
|
`Remote informations for server ${host} are outdated.`
|
|
|
|
)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
options.peertubeHelpers.logger.error('Failed reading the last-update file:', err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
2023-05-19 10:52:52 +00:00
|
|
|
}
|
|
|
|
|
2023-04-20 16:28:08 +00:00
|
|
|
async function _getFilePath (
|
|
|
|
options: RegisterServerOptions,
|
|
|
|
remote: boolean,
|
|
|
|
uuid: string,
|
|
|
|
videoUrl: string
|
|
|
|
): Promise<string | null> {
|
|
|
|
const logger = options.peertubeHelpers.logger
|
|
|
|
try {
|
|
|
|
// some sanitization, just in case...
|
|
|
|
if (!/^(\w|-)+$/.test(uuid)) {
|
|
|
|
logger.error(`Video uuid seems not correct: ${uuid}`)
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
let subFolders: string[]
|
|
|
|
if (remote) {
|
|
|
|
const u = new URL(videoUrl)
|
|
|
|
const host = u.hostname
|
|
|
|
|
|
|
|
if (host.includes('..')) {
|
|
|
|
// to prevent exploits that could go outside the plugin data dir.
|
|
|
|
logger.error(`Video host seems not correct, contains ..: ${host}`)
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
subFolders = ['remote', host]
|
|
|
|
} else {
|
|
|
|
subFolders = ['local']
|
|
|
|
}
|
|
|
|
|
|
|
|
return path.resolve(
|
|
|
|
options.peertubeHelpers.plugin.getDataDirectoryPath(),
|
|
|
|
'videoInfos',
|
|
|
|
...subFolders,
|
|
|
|
uuid + '.json'
|
|
|
|
)
|
|
|
|
} catch (err) {
|
|
|
|
logger.error(err)
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function _del (options: RegisterServerOptions, filePath: string): Promise<void> {
|
|
|
|
const logger = options.peertubeHelpers.logger
|
|
|
|
try {
|
|
|
|
if (!fs.existsSync(filePath)) { return }
|
|
|
|
logger.info('Deleting file ' + filePath)
|
|
|
|
fs.rmSync(filePath)
|
|
|
|
} catch (err) {
|
|
|
|
logger.error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function _store (options: RegisterServerOptions, filePath: string, content: any): Promise<void> {
|
|
|
|
const logger = options.peertubeHelpers.logger
|
|
|
|
try {
|
2023-05-19 10:52:52 +00:00
|
|
|
const jsonContent = JSON.stringify(content)
|
2023-04-20 16:28:08 +00:00
|
|
|
if (!fs.existsSync(filePath)) {
|
|
|
|
const dir = path.dirname(filePath)
|
|
|
|
if (!fs.existsSync(dir)) {
|
|
|
|
fs.mkdirSync(dir, { recursive: true })
|
|
|
|
}
|
2023-05-19 10:52:52 +00:00
|
|
|
} else {
|
|
|
|
// only write if the content is different
|
|
|
|
try {
|
|
|
|
const currentJSONContent = await fs.promises.readFile(filePath, {
|
|
|
|
encoding: 'utf-8'
|
|
|
|
})
|
|
|
|
if (currentJSONContent === jsonContent) { return }
|
|
|
|
} catch (_err) {}
|
2023-04-20 16:28:08 +00:00
|
|
|
}
|
2023-05-19 10:52:52 +00:00
|
|
|
await fs.promises.writeFile(filePath, jsonContent, {
|
2023-04-20 16:28:08 +00:00
|
|
|
encoding: 'utf-8'
|
|
|
|
})
|
|
|
|
} catch (err) {
|
|
|
|
logger.error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-21 10:02:52 +00:00
|
|
|
async function _get (options: RegisterServerOptions, filePath: string): Promise<any | null> {
|
|
|
|
const logger = options.peertubeHelpers.logger
|
|
|
|
try {
|
|
|
|
if (!fs.existsSync(filePath)) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
const content = await fs.promises.readFile(filePath, {
|
|
|
|
encoding: 'utf-8'
|
|
|
|
})
|
|
|
|
return JSON.parse(content)
|
|
|
|
} catch (err) {
|
|
|
|
logger.error(err)
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-19 10:52:52 +00:00
|
|
|
function getRemoteServerInfosDir (options: RegisterServerOptions): string {
|
|
|
|
return path.resolve(
|
|
|
|
options.peertubeHelpers.plugin.getDataDirectoryPath(),
|
|
|
|
'serverInfos'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-04-20 16:28:08 +00:00
|
|
|
export {
|
2023-04-21 10:02:52 +00:00
|
|
|
storeVideoLiveChatInfos,
|
2023-05-19 10:52:52 +00:00
|
|
|
storeRemoteServerInfos,
|
2023-05-24 14:09:55 +00:00
|
|
|
hasRemoteServerInfos,
|
2023-05-19 10:52:52 +00:00
|
|
|
getVideoLiveChatInfos,
|
|
|
|
getRemoteServerInfosDir
|
2023-04-20 16:28:08 +00:00
|
|
|
}
|