summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/webrtc_settings.jsx
blob: d9453936c685ed50c71875479105f84629d8c924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import React from 'react';

import * as Utils from 'utils/utils.jsx';

import AdminSettings from './admin_settings.jsx';
import {FormattedMessage, FormattedHTMLMessage} from 'react-intl';
import SettingsGroup from './settings_group.jsx';
import BooleanSetting from './boolean_setting.jsx';
import TextSetting from './text_setting.jsx';

export default class WebrtcSettings extends AdminSettings {
    constructor(props) {
        super(props);

        this.getConfigFromState = this.getConfigFromState.bind(this);
        this.renderSettings = this.renderSettings.bind(this);
    }

    getConfigFromState(config) {
        config.WebrtcSettings.Enable = this.state.enableWebrtc;
        config.WebrtcSettings.GatewayWebsocketUrl = this.state.gatewayWebsocketUrl;
        config.WebrtcSettings.GatewayAdminUrl = this.state.gatewayAdminUrl;
        config.WebrtcSettings.GatewayAdminSecret = this.state.gatewayAdminSecret;
        config.WebrtcSettings.StunURI = this.state.stunURI;
        config.WebrtcSettings.TurnURI = this.state.turnURI;
        config.WebrtcSettings.TurnUsername = this.state.turnUsername;
        config.WebrtcSettings.TurnSharedKey = this.state.turnSharedKey;

        return config;
    }

    getStateFromConfig(config) {
        const settings = config.WebrtcSettings;

        return {
            hasErrors: false,
            enableWebrtc: settings.Enable,
            gatewayWebsocketUrl: settings.GatewayWebsocketUrl,
            gatewayAdminUrl: settings.GatewayAdminUrl,
            gatewayAdminSecret: settings.GatewayAdminSecret,
            stunURI: settings.StunURI,
            turnURI: settings.TurnURI,
            turnUsername: settings.TurnUsername,
            turnSharedKey: settings.TurnSharedKey
        };
    }

    renderTitle() {
        return (
            <FormattedMessage
                id='admin.integrations.webrtc'
                defaultMessage='Mattermost WebRTC (Beta)'
            />
        );
    }

    renderSettings() {
        return (
            <SettingsGroup>
                <BooleanSetting
                    id='enableWebrtc'
                    label={
                        <FormattedMessage
                            id='admin.webrtc.enableTitle'
                            defaultMessage='Enable Mattermost WebRTC: '
                        />
                    }
                    helpText={
                        <FormattedHTMLMessage
                            id='admin.webrtc.enableDescription'
                            defaultMessage='When true, Mattermost allows making <strong>one-on-one</strong> video calls. WebRTC calls are available on Chrome, Firefox and Mattermost Desktop Apps.'
                        />
                    }
                    value={this.state.enableWebrtc}
                    onChange={this.handleChange}
                />
                <TextSetting
                    id='gatewayWebsocketUrl'
                    label={
                        <FormattedMessage
                            id='admin.webrtc.gatewayWebsocketUrlTitle'
                            defaultMessage='Gateway WebSocket URL:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.webrtc.gatewayWebsocketUrlExample', 'Ex "wss://webrtc.mattermost.com:8189"')}
                    helpText={
                        <FormattedMessage
                            id='admin.webrtc.gatewayWebsocketUrlDescription'
                            defaultMessage='Enter wss://<mattermost-webrtc-gateway-url>:<port>. Make sure you use WS or WSS in your URL depending on your server configuration.
                            This is the WebSocket used to signal and establish communication between the peers.'
                        />
                    }
                    value={this.state.gatewayWebsocketUrl}
                    onChange={this.handleChange}
                    disabled={!this.state.enableWebrtc}
                />
                <TextSetting
                    id='gatewayAdminUrl'
                    label={
                        <FormattedMessage
                            id='admin.webrtc.gatewayAdminUrlTitle'
                            defaultMessage='Gateway Admin URL:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.webrtc.gatewayAdminUrlExample', 'Ex "https://webrtc.mattermost.com:7089/admin"')}
                    helpText={
                        <FormattedMessage
                            id='admin.webrtc.gatewayAdminUrlDescription'
                            defaultMessage='Enter https://<mattermost-webrtc-gateway-url>:<port>/admin. Make sure you use HTTP or HTTPS in your URL depending on your server configuration.
                            Mattermost WebRTC uses this URL to obtain valid tokens for each peer to establish the connection.'
                        />
                    }
                    value={this.state.gatewayAdminUrl}
                    onChange={this.handleChange}
                    disabled={!this.state.enableWebrtc}
                />
                <TextSetting
                    id='gatewayAdminSecret'
                    label={
                        <FormattedMessage
                            id='admin.webrtc.gatewayAdminSecretTitle'
                            defaultMessage='Gateway Admin Secret:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.webrtc.gatewayAdminSecretExample', 'Ex "PVRzWNN1Tg6szn7IQWvhpAvLByScWxdy"')}
                    helpText={
                        <FormattedMessage
                            id='admin.webrtc.gatewayAdminSecretDescription'
                            defaultMessage='Enter your admin secret password to access the Gateway Admin URL.'
                        />
                    }
                    value={this.state.gatewayAdminSecret}
                    onChange={this.handleChange}
                    disabled={!this.state.enableWebrtc}
                />
                <TextSetting
                    id='stunURI'
                    label={
                        <FormattedMessage
                            id='admin.webrtc.stunUriTitle'
                            defaultMessage='STUN URI:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.webrtc.stunUriExample', 'Ex "stun:webrtc.mattermost.com:5349"')}
                    helpText={
                        <FormattedMessage
                            id='admin.webrtc.stunUriDescription'
                            defaultMessage='Enter your STUN URI as stun:<your-stun-url>:<port>. STUN is a standardized network protocol to allow an end host to assist devices to access its public IP address if it is located behind a NAT.'
                        />
                    }
                    value={this.state.stunURI}
                    onChange={this.handleChange}
                    disabled={!this.state.enableWebrtc}
                />
                <TextSetting
                    id='turnURI'
                    label={
                        <FormattedMessage
                            id='admin.webrtc.turnUriTitle'
                            defaultMessage='TURN URI:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.webrtc.turnUriExample', 'Ex "turn:webrtc.mattermost.com:5349"')}
                    helpText={
                        <FormattedMessage
                            id='admin.webrtc.turnUriDescription'
                            defaultMessage='Enter your TURN URI as turn:<your-turn-url>:<port>. TURN is a standardized network protocol to allow an end host to assist devices to establish a connection by using a relay public IP address if it is located behind a symmetric NAT.'
                        />
                    }
                    value={this.state.turnURI}
                    onChange={this.handleChange}
                    disabled={!this.state.enableWebrtc}
                />
                <TextSetting
                    id='turnUsername'
                    label={
                        <FormattedMessage
                            id='admin.webrtc.turnUsernameTitle'
                            defaultMessage='TURN Username:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.webrtc.turnUsernameExample', 'Ex "myusername"')}
                    helpText={
                        <FormattedMessage
                            id='admin.webrtc.turnUsernameDescription'
                            defaultMessage='Enter your TURN Server Username.'
                        />
                    }
                    value={this.state.turnUsername}
                    onChange={this.handleChange}
                    disabled={!this.state.enableWebrtc || !this.state.turnURI}
                />
                <TextSetting
                    id='turnSharedKey'
                    label={
                        <FormattedMessage
                            id='admin.webrtc.turnSharedKeyTitle'
                            defaultMessage='TURN Shared Key:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.webrtc.turnSharedKeyExample', 'Ex "bXdkOWQxc3d0Ynk3emY5ZmsxZ3NtazRjaWg="')}
                    helpText={
                        <FormattedMessage
                            id='admin.webrtc.turnSharedKeyDescription'
                            defaultMessage='Enter your TURN Server Shared Key. This is used to created dynamic passwords to establish the connection. Each password is valid for a short period of time.'
                        />
                    }
                    value={this.state.turnSharedKey}
                    onChange={this.handleChange}
                    disabled={!this.state.enableWebrtc || !this.state.turnURI}
                />
            </SettingsGroup>
        );
    }
}