summaryrefslogtreecommitdiffstats
path: root/web/react/components/claim/email_to_sso.jsx
blob: 3d4b9e91fce2e8dad0b23befaa80dd79abbd24ae (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
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

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

import {intlShape, injectIntl, defineMessages, FormattedMessage} from 'mm-intl';

const holders = defineMessages({
    pwdError: {
        id: 'claim.email_to_sso.pwdError',
        defaultMessage: 'Please enter your password.'
    },
    pwd: {
        id: 'claim.email_to_sso.pwd',
        defaultMessage: 'Password'
    }
});

class EmailToSSO extends React.Component {
    constructor(props) {
        super(props);

        this.submit = this.submit.bind(this);

        this.state = {};
    }
    submit(e) {
        e.preventDefault();
        var state = {};

        var password = ReactDOM.findDOMNode(this.refs.password).value.trim();
        if (!password) {
            state.error = this.props.intl.formatMessage(holders.pwdError);
            this.setState(state);
            return;
        }

        state.error = null;
        this.setState(state);

        var postData = {};
        postData.password = password;
        postData.email = this.props.email;
        postData.team_name = this.props.teamName;
        postData.service = this.props.type;

        Client.switchToSSO(postData,
            (data) => {
                if (data.follow_link) {
                    window.location.href = data.follow_link;
                }
            },
            (error) => {
                this.setState({error});
            }
        );
    }
    render() {
        var error = null;
        if (this.state.error) {
            error = <div className='form-group has-error'><label className='control-label'>{this.state.error}</label></div>;
        }

        var formClass = 'form-group';
        if (error) {
            formClass += ' has-error';
        }

        const uiType = Utils.toTitleCase(this.props.type) + ' SSO';

        return (
            <div className='col-sm-12'>
                <div className='signup-team__container'>
                    <h3>
                        <FormattedMessage
                            id='claim.email_to_sso.title'
                            defaultMessage='Switch Email/Password Account to {uiType}'
                            values={{
                                uiType: uiType
                            }}
                        />
                    </h3>
                    <form onSubmit={this.submit}>
                        <p>
                            <FormattedMessage
                                id='claim.email_to_sso.ssoType'
                                defaultMessage='Upon claiming your account, you will only be able to login with {type} SSO'
                                values={{
                                    type: Utils.toTitleCase(this.props.type)
                                }}
                            />
                        </p>
                        <p>
                            <FormattedMessage
                                id='claim.email_to_sso.enterPwd'
                                defaultMessage='Enter the password for your {team} {site} account'
                                values={{
                                    team: this.props.teamDisplayName,
                                    site: global.window.mm_config.SiteName
                                }}
                            />
                        </p>
                        <div className={formClass}>
                            <input
                                type='password'
                                className='form-control'
                                name='password'
                                ref='password'
                                placeholder={this.props.intl.formatMessage(holders.pwd)}
                                spellCheck='false'
                            />
                        </div>
                        {error}
                        <button
                            type='submit'
                            className='btn btn-primary'
                        >
                            <FormattedMessage
                                id='claim.email_to_sso.switchTo'
                                defaultMessage='Switch account to {uiType}'
                                values={{
                                    uiType: uiType
                                }}
                            />
                        </button>
                    </form>
                </div>
            </div>
        );
    }
}

EmailToSSO.defaultProps = {
};
EmailToSSO.propTypes = {
    intl: intlShape.isRequired,
    type: React.PropTypes.string.isRequired,
    email: React.PropTypes.string.isRequired,
    teamName: React.PropTypes.string.isRequired,
    teamDisplayName: React.PropTypes.string.isRequired
};

export default injectIntl(EmailToSSO);