summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/session_settings.jsx
blob: 79f3c7ee5c83b7546eb874f967c80a435fcc3a8d (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
// Copyright (c) 2015 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} from 'react-intl';
import SettingsGroup from './settings_group.jsx';
import TextSetting from './text_setting.jsx';

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

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

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

        this.state = Object.assign(this.state, {
            sessionLengthWebInDays: props.config.ServiceSettings.SessionLengthWebInDays,
            sessionLengthMobileInDays: props.config.ServiceSettings.SessionLengthMobileInDays,
            sessionLengthSSOInDays: props.config.ServiceSettings.SessionLengthSSOInDays,
            sessionCacheInMinutes: props.config.ServiceSettings.SessionCacheInMinutes
        });
    }

    getConfigFromState(config) {
        config.ServiceSettings.SessionLengthWebInDays = this.parseIntNonZero(this.state.sessionLengthWebInDays);
        config.ServiceSettings.SessionLengthMobileInDays = this.parseIntNonZero(this.state.sessionLengthMobileInDays);
        config.ServiceSettings.SessionLengthSSOInDays = this.parseIntNonZero(this.state.sessionLengthSSOInDays);
        config.ServiceSettings.SessionCacheInMinutes = this.parseIntNonZero(this.state.sessionCacheInMinutes);

        return config;
    }

    renderTitle() {
        return (
            <h3>
                <FormattedMessage
                    id='admin.security.title'
                    defaultMessage='Security Settings'
                />
            </h3>
        );
    }

    renderSettings() {
        return (
            <SettingsGroup
                header={
                    <FormattedMessage
                        id='admin.security.session'
                        defaultMessage='Sessions'
                    />
                }
            >
                <TextSetting
                    id='sessionLengthWebInDays'
                    label={
                        <FormattedMessage
                            id='admin.service.webSessionDays'
                            defaultMessage='Session Length for Web in Days:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')}
                    helpText={
                        <FormattedMessage
                            id='admin.service.webSessionDaysDesc'
                            defaultMessage='The web session will expire after the number of days specified and will require a user to login again.'
                        />
                    }
                    value={this.state.sessionLengthWebInDays}
                    onChange={this.handleChange}
                />
                <TextSetting
                    id='sessionLengthMobileInDays'
                    label={
                        <FormattedMessage
                            id='admin.service.mobileSessionDays'
                            defaultMessage='Session Length for Mobile Device in Days:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')}
                    helpText={
                        <FormattedMessage
                            id='admin.service.mobileSessionDaysDesc'
                            defaultMessage='The native mobile session will expire after the number of days specified and will require a user to login again.'
                        />
                    }
                    value={this.state.sessionLengthMobileInDays}
                    onChange={this.handleChange}
                />
                <TextSetting
                    id='sessionLengthSSOInDays'
                    label={
                        <FormattedMessage
                            id='admin.service.ssoSessionDays'
                            defaultMessage='Session Length for SSO in Days:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')}
                    helpText={
                        <FormattedMessage
                            id='admin.service.ssoSessionDaysDesc'
                            defaultMessage='The SSO session will expire after the number of days specified and will require a user to login again.'
                        />
                    }
                    value={this.state.sessionLengthSSOInDays}
                    onChange={this.handleChange}
                />
                <TextSetting
                    id='sessionCacheInMinutes'
                    label={
                        <FormattedMessage
                            id='admin.service.sessionCache'
                            defaultMessage='Session Cache in Minutes:'
                        />
                    }
                    placeholder={Utils.localizeMessage('admin.service.sessionDaysEx', 'Ex "30"')}
                    helpText={
                        <FormattedMessage
                            id='admin.service.sessionCacheDesc'
                            defaultMessage='The number of minutes to cache a session in memory.'
                        />
                    }
                    value={this.state.sessionCacheInMinutes}
                    onChange={this.handleChange}
                />
            </SettingsGroup>
        );
    }
}