mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Move CasLogin logic to controller class and logic object in react-sdk
This commit is contained in:
parent
a8d51cdf58
commit
353af6c647
@ -20,25 +20,11 @@ var React = require('react');
|
||||
|
||||
var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg');
|
||||
|
||||
var CasLoginController = require('matrix-react-sdk/lib/controllers/organisms/CasLogin');
|
||||
|
||||
module.exports = React.createClass({
|
||||
displayName: 'CasLogin',
|
||||
|
||||
getInitialState: function() {
|
||||
var splitLocation = window.location.href.split('/');
|
||||
return {serviceUrl: splitLocation[0] + "//" + splitLocation[2]};
|
||||
},
|
||||
|
||||
onCasClicked: function(ev) {
|
||||
var serviceRedirectUrl = this.state.serviceUrl + "/#/login/cas";
|
||||
var self = this;
|
||||
MatrixClientPeg.get().getCasServer().done(function(data) {
|
||||
var serverUrl = data.serverUrl + "/login?service=" + encodeURIComponent(serviceRedirectUrl);
|
||||
window.location.href=serverUrl
|
||||
}, function(error) {
|
||||
self.setStep("stage_m.login.cas");
|
||||
self.setState({errorText: 'Login failed.'});
|
||||
});
|
||||
},
|
||||
mixins: [CasLoginController],
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
@ -47,4 +33,5 @@ module.exports = React.createClass({
|
||||
</div>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user