summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/connection_security_dropdown_setting.jsx
blob: e00abf3045652b2367fdb36cc0925c9701613b05 (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
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

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

import DropdownSetting from './dropdown_setting.jsx';
import {FormattedMessage} from 'react-intl';

const CONNECTION_SECURITY_HELP_TEXT = (
    <div className='help-text'>
        <table
            className='table table-bordered'
            cellPadding='5'
        >
            <tbody>
                <tr>
                    <td className='help-text'>
                        <FormattedMessage
                            id='admin.connectionSecurityNone'
                            defaultMessage='None'
                        />
                    </td>
                    <td className='help-text'>
                        <FormattedMessage
                            id='admin.connectionSecurityNoneDescription'
                            defaultMessage='Mattermost will connect over an unsecure connection.'
                        />
                    </td>
                </tr>
                <tr>
                    <td className='help-text'>
                        <FormattedMessage
                            id='admin.connectionSecurityTls'
                            defaultMessage='TLS'
                        />
                    </td>
                    <td className='help-text'>
                        <FormattedMessage
                            id='admin.connectionSecurityTlsDescription'
                            defaultMessage='Encrypts the communication between Mattermost and your server.'
                        />
                    </td>
                </tr>
                <tr>
                    <td className='help-text'>
                        <FormattedMessage
                            id='admin.connectionSecurityStart'
                            defaultMessage='STARTTLS'
                        />
                    </td>
                    <td className='help-text'>
                        <FormattedMessage
                            id='admin.connectionSecurityStartDescription'
                            defaultMessage='Takes an existing insecure connection and attempts to upgrade it to a secure connection using TLS.'
                        />
                    </td>
                </tr>
            </tbody>
        </table>
    </div>
);

export default class ConnectionSecurityDropdownSetting extends React.Component {
    render() {
        return (
            <DropdownSetting
                values={[
                    {value: '', text: Utils.localizeMessage('admin.connectionSecurityNone', 'None')},
                    {value: 'TLS', text: Utils.localizeMessage('admin.connectionSecurityTls', 'TLS (Recommended)')},
                    {value: 'STARTTLS', text: Utils.localizeMessage('admin.connectionSecurityStart')}
                ]}
                label={
                    <FormattedMessage
                        id='admin.connectionSecurityTitle'
                        defaultMessage='Connection Security:'
                    />
                }
                currentValue={this.props.currentValue}
                handleChange={this.props.handleChange}
                isDisabled={this.props.isDisabled}
                helpText={CONNECTION_SECURITY_HELP_TEXT}
            />
        );
    }
}
ConnectionSecurityDropdownSetting.defaultProps = {
};

ConnectionSecurityDropdownSetting.propTypes = {
    currentValue: React.PropTypes.string.isRequired,
    handleChange: React.PropTypes.func.isRequired,
    isDisabled: React.PropTypes.bool.isRequired
};