Merge branch 'tytan652-localhost_c2s' into release/3.2.0

This commit is contained in:
John Livingston 2021-07-14 18:27:59 +02:00
commit c30a2b6243
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
6 changed files with 65 additions and 3 deletions

View File

@ -36,3 +36,4 @@ This roadmap is given as an indication. It will be updated as we go along accord
[ ] | Builtin Prosody | Add a settings to enable the server to be accessed with XMPP clients. [ ] | Builtin Prosody | Add a settings to enable the server to be accessed with XMPP clients.
[ ] | ConverseJS | For anonymous user, automatically log in with a random nickname (and allow to change afterward) [ ] | ConverseJS | For anonymous user, automatically log in with a random nickname (and allow to change afterward)
[ ] | Common | There should be a settings to add terms & conditions in the Peertube's about page (for example if the webchat is hosted anywhere else). [ ] | Common | There should be a settings to add terms & conditions in the Peertube's about page (for example if the webchat is hosted anywhere else).
[ ] | Builtin Prosody | Add on option to limit webchat to registered users.

View File

@ -42,7 +42,11 @@ function register ({ registerHook, registerSettingsScript, peertubeHelpers }: Re
case 'prosody-port': case 'prosody-port':
case 'prosody-peertube-uri': case 'prosody-peertube-uri':
case 'chat-type-help-builtin-prosody': case 'chat-type-help-builtin-prosody':
case 'prosody-advanced':
case 'prosody-c2s':
return options.formValues['chat-type'] !== ('builtin-prosody' as ChatType) return options.formValues['chat-type'] !== ('builtin-prosody' as ChatType)
case 'prosody-c2s-port':
return options.formValues['chat-type'] !== ('builtin-prosody' as ChatType) || options.formValues['prosody-c2s'] === false
case 'chat-server': case 'chat-server':
case 'chat-room': case 'chat-room':
case 'chat-bosh-uri': case 'chat-bosh-uri':

View File

@ -68,3 +68,19 @@ If the video is local (not from a remote Peertube), the video owner will be admi
You can use [ConverseJS moderation commands](https://conversejs.org/docs/html/features.html#moderating-chatrooms) to moderate the room. You can use [ConverseJS moderation commands](https://conversejs.org/docs/html/features.html#moderating-chatrooms) to moderate the room.
When you open the chat room in full screen, there will also be a menu with dedicated commands on the top right. When you open the chat room in full screen, there will also be a menu with dedicated commands on the top right.
### Prosody advanced settings
#### Enable client to server connections
This setting enable XMPP clients to connect to the builtin Prosody server.
This option alone **only allows connections from localhost clients**.
As example, this option can allow an instance of Matterbridge (once it could use anonymous login) *on the same machine* to bridge your chat with another services like a Matrix room.
##### Prosody client to server port
The port that will be used by the c2s module of the builtin Prosody server.
XMPP clients shall use this port to connect.
Change it if this port is already in use on your server.

View File

@ -77,6 +77,11 @@ async function getProsodyConfig (options: RegisterServerOptions): Promise<Prosod
if (!/^\d+$/.test(port)) { if (!/^\d+$/.test(port)) {
throw new Error('Invalid port') throw new Error('Invalid port')
} }
const enableC2s = (await options.settingsManager.getSetting('prosody-c2s') as boolean) || false
const c2sPort = (await options.settingsManager.getSetting('prosody-c2s-port') as string) || '52822'
if (!/^\d+$/.test(c2sPort)) {
throw new Error('Invalid c2s port')
}
const prosodyDomain = await getProsodyDomain(options) const prosodyDomain = await getProsodyDomain(options)
const paths = await getProsodyFilePaths(options) const paths = await getProsodyFilePaths(options)
@ -96,7 +101,7 @@ async function getProsodyConfig (options: RegisterServerOptions): Promise<Prosod
const config = new ProsodyConfigContent(paths, prosodyDomain) const config = new ProsodyConfigContent(paths, prosodyDomain)
config.useHttpAuthentication(authApiUrl) config.useHttpAuthentication(authApiUrl)
config.usePeertubeBosh(prosodyDomain, port) config.usePeertubeBosh(prosodyDomain, port, enableC2s, c2sPort)
config.useMucHttpDefault(roomApiUrl) config.useMucHttpDefault(roomApiUrl)
// TODO: add a settings so that admin can choose? (on/off and duration) // TODO: add a settings so that admin can choose? (on/off and duration)

View File

@ -168,10 +168,14 @@ class ProsodyConfigContent {
this.authenticated.set('http_auth_url', url) this.authenticated.set('http_auth_url', url)
} }
usePeertubeBosh (prosodyDomain: string, port: string): void { usePeertubeBosh (prosodyDomain: string, port: string, enableC2s: boolean, c2sPort: string): void {
this.global.set('c2s_require_encryption', false) this.global.set('c2s_require_encryption', false)
this.global.set('interfaces', ['127.0.0.1', '::1']) this.global.set('interfaces', ['127.0.0.1', '::1'])
this.global.set('c2s_ports', []) if (enableC2s) {
this.global.set('c2s_ports', [c2sPort])
} else {
this.global.set('c2s_ports', [])
}
this.global.set('c2s_interfaces', ['127.0.0.1', '::1']) this.global.set('c2s_interfaces', ['127.0.0.1', '::1'])
this.global.set('s2s_ports', []) this.global.set('s2s_ports', [])
this.global.set('s2s_interfaces', ['127.0.0.1', '::1']) this.global.set('s2s_interfaces', ['127.0.0.1', '::1'])

View File

@ -269,6 +269,38 @@ Example: height:400px;`,
private: false private: false
}) })
// ********** Built-in Prosody advanced settings
registerSetting({
name: 'prosody-advanced',
type: 'html',
private: true,
descriptionHTML: '<h3>Prosody advanced settings</h3>'
})
registerSetting({
name: 'prosody-c2s',
label: 'Enable client to server connections',
type: 'input-checkbox',
default: false,
private: true,
descriptionHTML:
`Enable XMPP clients to connect to the builtin Prosody server.<br>
This option alone only allows connections from localhost clients.`
})
registerSetting({
name: 'prosody-c2s-port',
label: 'Prosody client to server port',
type: 'input',
default: '52822',
private: true,
descriptionHTML:
`The port that will be used by the c2s module of the builtin Prosody server.<br>
XMPP clients shall use this port to connect.<br>
Change it if this port is already in use on your server.<br>
Keep it close this port on your firewall for now, it will not be accessed from the outer world.`
})
// ********** settings changes management // ********** settings changes management
settingsManager.onSettingsChange(async (settings: any) => { settingsManager.onSettingsChange(async (settings: any) => {
if ('chat-type' in settings) { if ('chat-type' in settings) {