2024-06-14 11:03:14 +00:00
|
|
|
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import type { Video } from '@peertube/peertube-types'
|
|
|
|
import type { LiveChatSettings } from '../../lib/contexts/peertube'
|
2024-06-17 12:54:29 +00:00
|
|
|
import type { LivechatTokenListElement } from '../../lib/elements/token-list'
|
2024-06-14 11:03:14 +00:00
|
|
|
import { html, PropertyValues, TemplateResult } from 'lit'
|
|
|
|
import { customElement, property } from 'lit/decorators.js'
|
|
|
|
import { LivechatElement } from '../../lib/elements/livechat'
|
|
|
|
import { tplShareChatCopy, tplShareChatTips, tplShareChatTabs, tplShareChatOptions } from './templates/share-chat'
|
|
|
|
import { isAutoColorsAvailable } from 'shared/lib/autocolors'
|
|
|
|
import { getIframeUri, getXMPPAddr, UriOptions } from '../uri'
|
2024-06-16 17:48:02 +00:00
|
|
|
import { isAnonymousUser } from '../../../utils/user'
|
2024-06-14 11:03:14 +00:00
|
|
|
|
2024-06-19 09:31:22 +00:00
|
|
|
// First is default tab.
|
|
|
|
const validTabNames = ['embed', 'dock', 'peertube', 'xmpp'] as const
|
2024-06-14 13:07:15 +00:00
|
|
|
|
|
|
|
type ValidTabNames = typeof validTabNames[number]
|
|
|
|
|
2024-06-14 11:03:14 +00:00
|
|
|
/**
|
|
|
|
* Results of the ShareChatElement.computeUrl method.
|
|
|
|
*/
|
|
|
|
interface ComputedUrl {
|
|
|
|
/**
|
|
|
|
* The string to share.
|
|
|
|
*/
|
|
|
|
shareString: string
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The url to open in a browser window, if relevant (http:// or xmpp://).
|
|
|
|
* Undefined when not a standard uri (for iframes for exemple).
|
|
|
|
* This will be the url used by the "open" button.
|
|
|
|
*/
|
|
|
|
openUrl: string | undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
@customElement('livechat-share-chat')
|
|
|
|
export class ShareChatElement extends LivechatElement {
|
|
|
|
/**
|
|
|
|
* The associated video.
|
|
|
|
* Must be given when calling this custom element.
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
|
|
|
protected _video!: Video
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The settings.
|
|
|
|
* Must be given when calling this custom element.
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
|
|
|
protected _settings!: LiveChatSettings
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The current tab.
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
2024-06-19 09:31:22 +00:00
|
|
|
public currentTab: ValidTabNames = validTabNames[0]
|
2024-06-14 11:03:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Should we render the XMPP tab?
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
|
|
|
public xmppUriEnabled: boolean = false
|
|
|
|
|
2024-06-16 17:48:02 +00:00
|
|
|
/**
|
|
|
|
* Should we render the Dock tab?
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
|
|
|
public dockEnabled: boolean = false
|
|
|
|
|
2024-06-14 11:03:14 +00:00
|
|
|
/**
|
|
|
|
* Can we use autocolors?
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
|
|
|
public autocolorsAvailable: boolean = false
|
|
|
|
|
|
|
|
/**
|
|
|
|
* In the Embed tab, should we generated an iframe link.
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
|
|
|
public embedIFrame: boolean = false
|
|
|
|
|
|
|
|
/**
|
|
|
|
* In the Embed tab, should we generated a read-only chat link.
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
|
|
|
public embedReadOnly: boolean = false
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read-only, with scrollbar?
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
|
|
|
public embedReadOnlyScrollbar: boolean = false
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read-only, transparent background?
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
|
|
|
public embedReadOnlyTransparentBackground: boolean = false
|
|
|
|
|
|
|
|
/**
|
|
|
|
* In the Embed tab, should we use current theme color?
|
|
|
|
*/
|
|
|
|
@property({ attribute: false })
|
|
|
|
public embedAutocolors: boolean = false
|
|
|
|
|
|
|
|
protected override firstUpdated (changedProperties: PropertyValues): void {
|
|
|
|
super.firstUpdated(changedProperties)
|
|
|
|
const settings = this._settings
|
|
|
|
this.xmppUriEnabled = !!settings['prosody-room-allow-s2s']
|
2024-06-16 17:48:02 +00:00
|
|
|
// Note: for dockEnabled, we check:
|
|
|
|
// * that the user is logged in
|
|
|
|
// * that the video is local (for remote video, tests case are too complicated, and it's not the main use case, so…)
|
2024-06-17 13:21:22 +00:00
|
|
|
// * settings is not disabled
|
|
|
|
this.dockEnabled = (
|
|
|
|
!isAnonymousUser(this.ptContext.ptOptions) &&
|
|
|
|
this._video.isLocal &&
|
|
|
|
!settings['livechat-token-disabled']
|
|
|
|
)
|
2024-06-14 11:03:14 +00:00
|
|
|
this.autocolorsAvailable = isAutoColorsAvailable(settings['converse-theme'])
|
|
|
|
|
|
|
|
this._restorePreviousState()
|
|
|
|
}
|
|
|
|
|
2024-06-14 12:48:27 +00:00
|
|
|
protected override updated (changedProperties: PropertyValues): void {
|
|
|
|
super.updated(changedProperties)
|
2024-06-14 13:07:15 +00:00
|
|
|
this.logger.log('Updated was triggered, saving current state.')
|
|
|
|
this._saveCurrentState()
|
2024-06-14 12:48:27 +00:00
|
|
|
}
|
|
|
|
|
2024-06-14 11:03:14 +00:00
|
|
|
protected override render = (): TemplateResult => {
|
|
|
|
return html`
|
|
|
|
${tplShareChatTabs(this)}
|
|
|
|
${tplShareChatCopy(this)}
|
|
|
|
<div class="livechat-shareurl-block">
|
|
|
|
${tplShareChatTips(this)}
|
|
|
|
${tplShareChatOptions(this)}
|
|
|
|
</div>
|
|
|
|
`
|
|
|
|
}
|
|
|
|
|
|
|
|
protected _restorePreviousState (): void {
|
2024-06-14 13:07:15 +00:00
|
|
|
if (!window.localStorage) {
|
|
|
|
this.logger.warn('No localStorage, can\'t restore state.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const s = window.localStorage.getItem('peertube-plugin-livechat-shareurl')
|
|
|
|
if (!s) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
const v = JSON.parse(s)
|
|
|
|
if (!v || (typeof v !== 'object') || v.version !== 2) {
|
|
|
|
this.logger.warn('Stored information are invalid, dropping')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.logger.log('Restoring previous state')
|
|
|
|
if (validTabNames.includes(v.currentTab)) {
|
|
|
|
this.currentTab = v.currentTab
|
|
|
|
}
|
|
|
|
this.embedIFrame = !!v.embedIFrame
|
|
|
|
this.embedReadOnly = !!v.embedReadOnly
|
|
|
|
this.embedReadOnlyScrollbar = !!v.embedReadOnlyScrollbar
|
|
|
|
this.embedReadOnlyTransparentBackground = !!v.embedReadOnlyTransparentBackground
|
|
|
|
this.embedAutocolors = !!v.embedAutocolors
|
|
|
|
} catch (err) {
|
|
|
|
this.logger.error(err as string)
|
|
|
|
}
|
2024-06-14 11:03:14 +00:00
|
|
|
|
|
|
|
// Some sanity checks, to not be in an impossible state.
|
|
|
|
if (!this.xmppUriEnabled && this.currentTab === 'xmpp') {
|
2024-06-19 09:31:22 +00:00
|
|
|
this.currentTab = validTabNames[0]
|
2024-06-14 11:03:14 +00:00
|
|
|
}
|
2024-06-16 17:48:02 +00:00
|
|
|
if (!this.dockEnabled && this.currentTab === 'dock') {
|
2024-06-19 09:31:22 +00:00
|
|
|
this.currentTab = validTabNames[0]
|
2024-06-16 17:48:02 +00:00
|
|
|
}
|
2024-06-14 11:03:14 +00:00
|
|
|
}
|
|
|
|
|
2024-06-14 13:07:15 +00:00
|
|
|
protected _saveCurrentState (): void {
|
|
|
|
if (!window.localStorage) {
|
|
|
|
this.logger.warn('No localStorage, can\'t save state.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const v = {
|
|
|
|
version: 2, // in case we add incompatible values in a near feature
|
|
|
|
currentTab: this.currentTab,
|
|
|
|
embedIFrame: this.embedIFrame,
|
|
|
|
embedReadOnly: this.embedReadOnly,
|
|
|
|
embedReadOnlyScrollbar: this.embedReadOnlyScrollbar,
|
|
|
|
embedReadOnlyTransparentBackground: this.embedReadOnlyTransparentBackground,
|
|
|
|
embedAutocolors: this.embedAutocolors
|
|
|
|
}
|
|
|
|
window.localStorage.setItem('peertube-plugin-livechat-shareurl', JSON.stringify(v))
|
|
|
|
}
|
|
|
|
|
2024-06-14 11:03:14 +00:00
|
|
|
public computeUrl (): ComputedUrl {
|
|
|
|
switch (this.currentTab) {
|
|
|
|
case 'embed': return this._computeUrlEmbed()
|
2024-06-16 17:48:02 +00:00
|
|
|
case 'dock': return this._computeUrlDock()
|
2024-06-19 09:31:22 +00:00
|
|
|
case 'peertube': return this._computeUrlPeertube()
|
2024-06-14 11:03:14 +00:00
|
|
|
case 'xmpp': return this._computeUrlXMPP()
|
|
|
|
default:
|
|
|
|
return {
|
|
|
|
shareString: '',
|
|
|
|
openUrl: undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected _computeUrlPeertube (): ComputedUrl {
|
|
|
|
const url = window.location.protocol +
|
|
|
|
'//' +
|
|
|
|
window.location.host +
|
|
|
|
'/p/livechat/room?room=' +
|
|
|
|
encodeURIComponent(this._video.uuid)
|
|
|
|
return {
|
|
|
|
shareString: url,
|
|
|
|
openUrl: url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected _computeUrlXMPP (): ComputedUrl {
|
|
|
|
const addr = getXMPPAddr(this.ptContext.ptOptions, this._settings, this._video)
|
|
|
|
return {
|
|
|
|
shareString: addr?.jid ?? '',
|
|
|
|
openUrl: addr?.uri
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-16 17:48:02 +00:00
|
|
|
protected _computeUrlDock (): ComputedUrl {
|
2024-06-17 12:54:29 +00:00
|
|
|
const tokenList: LivechatTokenListElement | null = this.querySelector('livechat-token-list')
|
|
|
|
const token = tokenList?.currentSelectedToken
|
|
|
|
if (!token) {
|
|
|
|
return {
|
|
|
|
shareString: '',
|
|
|
|
openUrl: undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const uriOptions: UriOptions = {
|
|
|
|
ignoreAutoColors: true,
|
|
|
|
permanent: true
|
|
|
|
}
|
|
|
|
|
|
|
|
let url = getIframeUri(this.ptContext.ptOptions, this._settings, this._video, uriOptions)
|
|
|
|
if (!url) {
|
|
|
|
return {
|
|
|
|
shareString: '',
|
|
|
|
openUrl: undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
url += '#?p=' + encodeURIComponent(token.password)
|
|
|
|
url += '&j=' + encodeURIComponent(token.jid)
|
|
|
|
if (token.nickname) {
|
|
|
|
url += '&n=' + encodeURIComponent(token.nickname)
|
|
|
|
}
|
|
|
|
|
2024-06-16 17:48:02 +00:00
|
|
|
return {
|
2024-06-17 12:54:29 +00:00
|
|
|
shareString: url,
|
|
|
|
openUrl: url
|
2024-06-16 17:48:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-14 11:03:14 +00:00
|
|
|
protected _computeUrlEmbed (): ComputedUrl {
|
|
|
|
const uriOptions: UriOptions = {
|
|
|
|
ignoreAutoColors: this.autocolorsAvailable ? !this.embedAutocolors : true,
|
|
|
|
permanent: true
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.embedReadOnly) {
|
|
|
|
uriOptions.readonly = this.embedReadOnlyScrollbar ? true : 'noscroll'
|
|
|
|
if (this.embedReadOnlyTransparentBackground) {
|
|
|
|
uriOptions.transparent = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note: for the "embed" case, the url is always the same as the iframe.
|
|
|
|
// So we use getIframeUri to compte, and just change the finale result if we really want the iframe.
|
|
|
|
const url = getIframeUri(this.ptContext.ptOptions, this._settings, this._video, uriOptions)
|
|
|
|
if (!url) {
|
|
|
|
return {
|
|
|
|
shareString: '',
|
|
|
|
openUrl: undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.embedIFrame) {
|
|
|
|
return {
|
|
|
|
shareString: url,
|
|
|
|
openUrl: url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Actually building the iframe:
|
|
|
|
const iframe = document.createElement('iframe')
|
|
|
|
iframe.setAttribute('src', url)
|
|
|
|
iframe.setAttribute('title', this._video.name)
|
|
|
|
iframe.setAttribute('sandbox', 'allow-same-origin allow-scripts allow-popups allow-forms')
|
|
|
|
iframe.setAttribute('width', '560')
|
|
|
|
iframe.setAttribute('height', '315')
|
|
|
|
iframe.setAttribute('frameborder', '0')
|
|
|
|
const iframeHTML = iframe.outerHTML
|
|
|
|
iframe.remove()
|
|
|
|
return {
|
|
|
|
shareString: iframeHTML,
|
|
|
|
openUrl: undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy the current url in the clipboard.
|
|
|
|
*/
|
|
|
|
public async copyUrl (): Promise<void> {
|
|
|
|
await navigator.clipboard.writeText(this.computeUrl().shareString)
|
|
|
|
this.ptNotifier.success(await this.ptTranslate(LOC_COPIED))
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens the url.
|
|
|
|
*/
|
|
|
|
public openUrl (): void {
|
|
|
|
const url = this.computeUrl().openUrl
|
|
|
|
if (!url) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
window.open(url)
|
|
|
|
}
|
|
|
|
|
|
|
|
public switchTab (tab: ShareChatElement['currentTab']): void {
|
|
|
|
this.currentTab = tab
|
|
|
|
}
|
|
|
|
}
|