2021-02-20 10:55:00 +00:00
|
|
|
'use strict'
|
2021-02-19 17:21:40 +00:00
|
|
|
|
2021-02-20 17:31:21 +00:00
|
|
|
function register ({ registerHook, peertubeHelpers }) {
|
|
|
|
const logger = {
|
|
|
|
log: (s) => console.log('[peertube-plugin-livechat] ' + s),
|
|
|
|
info: (s) => console.info('[peertube-plugin-livechat] ' + s),
|
|
|
|
error: (s) => console.error('[peertube-plugin-livechat] ' + s),
|
|
|
|
warn: (s) => console.warn('[peertube-plugin-livechat] ' + s)
|
2021-02-19 17:21:40 +00:00
|
|
|
}
|
|
|
|
|
2021-02-20 17:31:21 +00:00
|
|
|
const videoCache = {}
|
|
|
|
let lastUUID = null
|
|
|
|
let settings = {}
|
2021-02-19 17:21:40 +00:00
|
|
|
|
2021-02-20 17:31:21 +00:00
|
|
|
function parseUUIDs (s) {
|
|
|
|
if (!s) {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
let a = s.split('\n')
|
|
|
|
a = a.map(line => {
|
|
|
|
return line.replace(/#.*$/, '')
|
|
|
|
.replace(/^\s+/, '')
|
|
|
|
.replace(/\s+$/, '')
|
2021-02-19 17:21:40 +00:00
|
|
|
})
|
2021-02-20 17:31:21 +00:00
|
|
|
return a.filter(line => line !== '')
|
|
|
|
}
|
2021-02-19 17:21:40 +00:00
|
|
|
|
2021-02-20 17:31:21 +00:00
|
|
|
function getBaseRoute () {
|
|
|
|
// FIXME: should be provided by PeertubeHelpers (does not exists for now)
|
2021-02-20 19:42:41 +00:00
|
|
|
// We are guessing the route with the correct plugin version with this trick:
|
|
|
|
const staticBase = peertubeHelpers.getBaseStaticRoute()
|
|
|
|
// we can't use '/plugins/livechat/router', because the loaded html page needs correct relative paths.
|
|
|
|
return staticBase.replace(/\/static.*$/, '/router')
|
2021-02-20 17:31:21 +00:00
|
|
|
}
|
2021-02-19 17:21:40 +00:00
|
|
|
|
2021-02-20 17:31:21 +00:00
|
|
|
function getIframeUri (uuid) {
|
|
|
|
if (!settings) {
|
|
|
|
logger.error('Settings are not initialized, too soon to compute the iframeUri')
|
|
|
|
return null
|
2021-02-19 17:21:40 +00:00
|
|
|
}
|
2021-02-20 17:31:21 +00:00
|
|
|
let iframeUri = ''
|
|
|
|
if (!settings['chat-use-builtin']) {
|
|
|
|
iframeUri = settings['chat-uri'] || ''
|
2021-02-20 19:42:41 +00:00
|
|
|
iframeUri = iframeUri.replace(/{{VIDEO_UUID}}/g, uuid)
|
2021-02-20 17:31:21 +00:00
|
|
|
if (!/^https?:\/\//.test(iframeUri)) {
|
|
|
|
logger.error('The webchaturi must begin with https://')
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Using the builtin converseJS
|
|
|
|
// FIXME: with Peertube 3.0.1 there is no loadByIdOrUUID method,
|
|
|
|
// we need to pass the complete url.
|
|
|
|
const video = videoCache[uuid]
|
|
|
|
if (video) {
|
|
|
|
const url = video.originInstanceUrl + '/videos/watch/' + uuid
|
|
|
|
iframeUri = getBaseRoute() + '/webchat?url=' + encodeURIComponent(url)
|
|
|
|
}
|
2021-02-19 17:21:40 +00:00
|
|
|
}
|
2021-02-20 17:31:21 +00:00
|
|
|
if (iframeUri === '') {
|
|
|
|
logger.error('No iframe uri')
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
return iframeUri
|
|
|
|
}
|
2021-02-19 17:21:40 +00:00
|
|
|
|
2021-03-01 17:38:39 +00:00
|
|
|
function displayButton (buttonContainer, name, label, callback, icon) {
|
2021-02-20 17:31:21 +00:00
|
|
|
const button = document.createElement('button')
|
|
|
|
button.classList.add(
|
2021-03-01 17:38:39 +00:00
|
|
|
'peertube-plugin-livechat-button',
|
2021-02-20 17:31:21 +00:00
|
|
|
'peertube-plugin-livechat-button-' + name
|
2021-02-20 14:41:00 +00:00
|
|
|
)
|
2021-02-20 17:31:21 +00:00
|
|
|
button.onclick = callback
|
2021-03-01 17:38:39 +00:00
|
|
|
if (icon) {
|
|
|
|
const iconUrl = peertubeHelpers.getBaseStaticRoute() + '/images/' + icon
|
|
|
|
const iconEl = document.createElement('span')
|
|
|
|
iconEl.classList.add('peertube-plugin-livechat-button-icon')
|
|
|
|
iconEl.setAttribute('style',
|
|
|
|
'background-image: url(\'' + iconUrl + '\');'
|
|
|
|
)
|
|
|
|
button.prepend(iconEl)
|
|
|
|
button.setAttribute('title', label)
|
|
|
|
} else {
|
|
|
|
button.textContent = label
|
|
|
|
}
|
|
|
|
buttonContainer.append(button)
|
2021-02-20 17:31:21 +00:00
|
|
|
}
|
2021-02-19 17:21:40 +00:00
|
|
|
|
2021-03-01 17:38:39 +00:00
|
|
|
function insertChatDom (container, peertubeHelpers, uuid, showOpenBlank) {
|
|
|
|
logger.log('Adding livechat in the DOM...')
|
2021-02-20 17:31:21 +00:00
|
|
|
const p = new Promise((resolve, reject) => {
|
|
|
|
Promise.all([
|
|
|
|
peertubeHelpers.translate('Open chat'),
|
|
|
|
peertubeHelpers.translate('Open chat in a new window'),
|
|
|
|
peertubeHelpers.translate('Close chat')
|
|
|
|
]).then(labels => {
|
|
|
|
const labelOpen = labels[0]
|
|
|
|
const labelOpenBlank = labels[1]
|
|
|
|
const labelClose = labels[2]
|
|
|
|
|
|
|
|
const iframeUri = getIframeUri(uuid)
|
|
|
|
if (!iframeUri) {
|
|
|
|
return reject(new Error('No uri, cant display the buttons.'))
|
|
|
|
}
|
2021-03-01 17:38:39 +00:00
|
|
|
|
|
|
|
const buttonContainer = document.createElement('div')
|
|
|
|
buttonContainer.classList.add('peertube-plugin-livechat-buttons')
|
|
|
|
container.append(buttonContainer)
|
|
|
|
|
|
|
|
displayButton(buttonContainer, 'open', labelOpen, () => openChat(), 'talking.png')
|
2021-02-20 23:13:29 +00:00
|
|
|
if (showOpenBlank) {
|
2021-03-01 17:38:39 +00:00
|
|
|
displayButton(buttonContainer, 'openblank', labelOpenBlank, () => {
|
2021-02-20 23:13:29 +00:00
|
|
|
closeChat()
|
|
|
|
window.open(iframeUri)
|
2021-03-01 17:38:39 +00:00
|
|
|
}, 'talking-new-window.png')
|
2021-02-20 23:13:29 +00:00
|
|
|
}
|
2021-03-01 17:38:39 +00:00
|
|
|
displayButton(buttonContainer, 'close', labelClose, () => closeChat(), 'bye.png')
|
2021-02-20 17:31:21 +00:00
|
|
|
|
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
function openChat () {
|
|
|
|
const p = new Promise((resolve, reject) => {
|
|
|
|
const uuid = lastUUID
|
|
|
|
if (!uuid) {
|
|
|
|
logger.log('No current uuid.')
|
|
|
|
return reject(new Error('No current uuid.'))
|
|
|
|
}
|
2021-02-19 17:21:40 +00:00
|
|
|
|
2021-02-20 17:31:21 +00:00
|
|
|
logger.info('Trying to load the chat for video ' + uuid + '.')
|
|
|
|
const iframeUri = getIframeUri(uuid)
|
|
|
|
if (!iframeUri) {
|
|
|
|
logger.error('Incorrect iframe uri')
|
|
|
|
return reject(new Error('Incorrect iframe uri'))
|
|
|
|
}
|
|
|
|
const additionalStyles = settings['chat-style'] || ''
|
|
|
|
|
|
|
|
logger.info('Opening the chat...')
|
2021-03-01 17:38:39 +00:00
|
|
|
const container = document.getElementById('peertube-plugin-livechat-container')
|
|
|
|
if (!container) {
|
|
|
|
logger.error('Cant found the livechat container.')
|
|
|
|
return reject(new Error('Cant found the livechat container'))
|
|
|
|
}
|
|
|
|
|
|
|
|
if (container.querySelector('iframe')) {
|
|
|
|
logger.error('Seems that there is already an iframe in the container.')
|
|
|
|
return reject(new Error('Seems that there is already an iframe in the container.'))
|
|
|
|
}
|
2021-02-20 17:31:21 +00:00
|
|
|
|
|
|
|
// Creating the iframe...
|
|
|
|
const iframe = document.createElement('iframe')
|
|
|
|
iframe.setAttribute('src', iframeUri)
|
|
|
|
iframe.setAttribute('sandbox', 'allow-same-origin allow-scripts allow-popups allow-forms')
|
|
|
|
iframe.setAttribute('frameborder', '0')
|
|
|
|
if (additionalStyles) {
|
|
|
|
iframe.setAttribute('style', additionalStyles)
|
|
|
|
}
|
2021-03-01 17:38:39 +00:00
|
|
|
container.append(iframe)
|
|
|
|
container.setAttribute('peertube-plugin-livechat-state', 'open')
|
2021-02-19 17:21:40 +00:00
|
|
|
|
2021-02-20 17:31:21 +00:00
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
return p
|
2021-02-20 15:03:44 +00:00
|
|
|
}
|
2021-02-20 17:31:21 +00:00
|
|
|
|
|
|
|
function closeChat () {
|
2021-03-01 17:38:39 +00:00
|
|
|
const container = document.getElementById('peertube-plugin-livechat-container')
|
|
|
|
if (!container) {
|
|
|
|
logger.error('Cant close livechat, container not found.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
container.querySelectorAll('iframe')
|
2021-02-20 17:31:21 +00:00
|
|
|
.forEach(dom => dom.remove())
|
|
|
|
|
2021-03-01 17:38:39 +00:00
|
|
|
container.setAttribute('peertube-plugin-livechat-state', 'closed')
|
2021-02-20 14:41:00 +00:00
|
|
|
}
|
|
|
|
|
2021-02-20 17:31:21 +00:00
|
|
|
function initChat () {
|
2021-03-01 17:38:39 +00:00
|
|
|
const videoWrapper = document.querySelector('#video-wrapper')
|
|
|
|
if (!videoWrapper) {
|
2021-02-20 17:31:21 +00:00
|
|
|
logger.error('The required div is not present in the DOM.')
|
2021-02-20 14:41:00 +00:00
|
|
|
return
|
|
|
|
}
|
2021-03-01 17:38:39 +00:00
|
|
|
let container = videoWrapper.querySelector('#peertube-plugin-livechat-container')
|
|
|
|
if (container) {
|
2021-02-20 17:31:21 +00:00
|
|
|
logger.log('The chat seems already initialized...')
|
2021-02-20 14:41:00 +00:00
|
|
|
return
|
|
|
|
}
|
2021-03-01 17:38:39 +00:00
|
|
|
container = document.createElement('div')
|
|
|
|
container.setAttribute('id', 'peertube-plugin-livechat-container')
|
|
|
|
container.setAttribute('peertube-plugin-livechat-state', 'initializing')
|
|
|
|
videoWrapper.append(container)
|
2021-02-20 17:31:21 +00:00
|
|
|
|
|
|
|
peertubeHelpers.getSettings().then(s => {
|
|
|
|
settings = s
|
|
|
|
const liveOn = !!settings['chat-all-lives']
|
|
|
|
const nonLiveOn = !!settings['chat-all-non-lives']
|
|
|
|
const uuids = parseUUIDs(settings['chat-videos-list'])
|
|
|
|
if (!uuids.length && !liveOn && !nonLiveOn) {
|
2021-02-20 22:37:23 +00:00
|
|
|
logger.log('Feature not activated.')
|
2021-02-20 17:31:21 +00:00
|
|
|
return
|
|
|
|
}
|
2021-02-20 14:41:00 +00:00
|
|
|
|
2021-02-20 17:31:21 +00:00
|
|
|
logger.log('Checking if this video should have a chat...')
|
|
|
|
const uuid = lastUUID
|
|
|
|
const video = videoCache[uuid]
|
|
|
|
if (!video) {
|
|
|
|
logger.error('Can\'t find the video ' + uuid + ' in the videoCache')
|
|
|
|
return
|
|
|
|
}
|
2021-02-20 22:37:23 +00:00
|
|
|
if (settings['chat-only-locals' && !video.isLocal]) {
|
|
|
|
logger.log('This video is not local, and we dont want chats on non local videos.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-20 17:31:21 +00:00
|
|
|
if (uuids.indexOf(uuid) >= 0) {
|
|
|
|
logger.log('This video is in the list for chats.')
|
|
|
|
} else if (video.isLive && liveOn) {
|
|
|
|
logger.log('This video is live and we want all lives.')
|
|
|
|
} else if (!video.isLive && nonLiveOn) {
|
|
|
|
logger.log('This video is not live and we want all non-lives.')
|
2021-02-20 14:41:00 +00:00
|
|
|
} else {
|
2021-02-20 17:31:21 +00:00
|
|
|
logger.log('This video will not have a chat.')
|
|
|
|
return
|
2021-02-20 14:41:00 +00:00
|
|
|
}
|
2021-02-20 17:31:21 +00:00
|
|
|
|
2021-03-01 17:38:39 +00:00
|
|
|
insertChatDom(container, peertubeHelpers, uuid, !!settings['chat-open-blank']).then(() => {
|
2021-02-20 17:31:21 +00:00
|
|
|
if (settings['chat-auto-display']) {
|
|
|
|
openChat()
|
|
|
|
} else {
|
2021-03-01 17:38:39 +00:00
|
|
|
container.setAttribute('peertube-plugin-livechat-state', 'closed')
|
2021-02-20 17:31:21 +00:00
|
|
|
}
|
|
|
|
})
|
2021-02-20 14:41:00 +00:00
|
|
|
})
|
2021-02-20 17:31:21 +00:00
|
|
|
}
|
2021-02-20 14:41:00 +00:00
|
|
|
|
2021-02-18 17:31:12 +00:00
|
|
|
registerHook({
|
2021-02-19 17:21:40 +00:00
|
|
|
target: 'filter:api.video-watch.video.get.result',
|
|
|
|
handler: (video) => {
|
|
|
|
// For now, hooks for action:video-watch... did not receive the video object
|
|
|
|
// So we store video objects in videoCache
|
|
|
|
videoCache[video.uuid] = video
|
|
|
|
lastUUID = video.uuid
|
2021-02-20 14:41:00 +00:00
|
|
|
// FIXME: this should be made in action:video-watch.video.loaded.
|
|
|
|
// But with Peertube 3.0.1, this hook is not called for lives
|
|
|
|
// in WAITING_FOR_LIVE and LIVE_ENDED states.
|
2021-02-20 17:31:21 +00:00
|
|
|
initChat()
|
2021-02-19 17:21:40 +00:00
|
|
|
return video
|
|
|
|
}
|
|
|
|
})
|
2021-02-20 14:41:00 +00:00
|
|
|
// FIXME: this should be the correct hook for initChat...
|
|
|
|
// registerHook({
|
|
|
|
// target: 'action:video-watch.video.loaded',
|
|
|
|
// handler: () => {
|
2021-02-20 17:31:21 +00:00
|
|
|
// initChat()
|
2021-02-20 14:41:00 +00:00
|
|
|
// }
|
|
|
|
// })
|
2021-02-18 17:31:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
register
|
|
|
|
}
|