2018-07-10 13:40:32 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2019-05-18 19:31:33 +00:00
|
|
|
import { WebView } from 'react-native-webview';
|
2018-07-10 13:40:32 +00:00
|
|
|
import { connect } from 'react-redux';
|
2019-06-20 19:02:16 +00:00
|
|
|
import { ActivityIndicator, StyleSheet } from 'react-native';
|
2018-07-10 13:40:32 +00:00
|
|
|
import RocketChat from '../lib/rocketchat';
|
2019-03-12 16:23:06 +00:00
|
|
|
import { isIOS } from '../utils/deviceInfo';
|
|
|
|
import { CloseModalButton } from '../containers/HeaderButton';
|
|
|
|
import StatusBar from '../containers/StatusBar';
|
2018-07-10 13:40:32 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
const userAgent = isIOS
|
|
|
|
? 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1'
|
|
|
|
: 'Mozilla/5.0 (Linux; Android 6.0.1; SM-G920V Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Mobile Safari/537.36';
|
2018-07-10 13:40:32 +00:00
|
|
|
|
2019-06-20 19:02:16 +00:00
|
|
|
const styles = StyleSheet.create({
|
|
|
|
loading: {
|
|
|
|
position: 'absolute',
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
top: 0,
|
|
|
|
bottom: 0,
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-08-09 17:28:46 +00:00
|
|
|
class AuthenticationWebView extends React.PureComponent {
|
|
|
|
static navigationOptions = ({ navigation }) => {
|
|
|
|
const authType = navigation.getParam('authType', 'oauth');
|
|
|
|
return {
|
|
|
|
headerLeft: <CloseModalButton navigation={navigation} />,
|
2019-08-12 18:37:42 +00:00
|
|
|
title: authType === 'saml' || authType === 'cas' ? 'SSO' : 'OAuth'
|
2019-08-09 17:28:46 +00:00
|
|
|
};
|
|
|
|
}
|
2018-07-10 13:40:32 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
2019-03-12 16:23:06 +00:00
|
|
|
navigation: PropTypes.object,
|
2018-07-10 13:40:32 +00:00
|
|
|
server: PropTypes.string
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2018-12-05 20:52:08 +00:00
|
|
|
this.state = {
|
2019-06-20 19:02:16 +00:00
|
|
|
logging: false,
|
|
|
|
loading: false
|
2018-12-05 20:52:08 +00:00
|
|
|
};
|
2019-08-09 17:28:46 +00:00
|
|
|
this.authType = props.navigation.getParam('authType', 'oauth');
|
2018-07-10 13:40:32 +00:00
|
|
|
this.redirectRegex = new RegExp(`(?=.*(${ props.server }))(?=.*(credentialToken))(?=.*(credentialSecret))`, 'g');
|
|
|
|
}
|
|
|
|
|
2018-10-23 21:39:48 +00:00
|
|
|
dismiss = () => {
|
2019-03-12 16:23:06 +00:00
|
|
|
const { navigation } = this.props;
|
|
|
|
navigation.pop();
|
2018-10-23 21:39:48 +00:00
|
|
|
}
|
|
|
|
|
2018-07-10 13:40:32 +00:00
|
|
|
login = async(params) => {
|
2018-12-05 20:52:08 +00:00
|
|
|
const { logging } = this.state;
|
|
|
|
if (logging) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ logging: true });
|
|
|
|
|
2018-07-10 13:40:32 +00:00
|
|
|
try {
|
2019-08-09 17:28:46 +00:00
|
|
|
await RocketChat.loginOAuthOrSso(params);
|
2018-07-10 13:40:32 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.warn(e);
|
|
|
|
}
|
2018-12-05 20:52:08 +00:00
|
|
|
this.setState({ logging: false });
|
|
|
|
this.dismiss();
|
2018-07-10 13:40:32 +00:00
|
|
|
}
|
|
|
|
|
2019-08-09 17:28:46 +00:00
|
|
|
onNavigationStateChange = (webViewState) => {
|
|
|
|
const url = decodeURIComponent(webViewState.url);
|
2019-08-12 18:37:42 +00:00
|
|
|
if (this.authType === 'saml' || this.authType === 'cas') {
|
2019-08-09 17:28:46 +00:00
|
|
|
const { navigation } = this.props;
|
|
|
|
const ssoToken = navigation.getParam('ssoToken');
|
|
|
|
if (url.includes('ticket') || url.includes('validate')) {
|
2019-08-12 18:37:42 +00:00
|
|
|
let payload;
|
|
|
|
const credentialToken = { credentialToken: ssoToken };
|
|
|
|
if (this.authType === 'saml') {
|
|
|
|
payload = { ...credentialToken, saml: true };
|
|
|
|
} else {
|
|
|
|
payload = { cas: credentialToken };
|
|
|
|
}
|
2019-08-09 17:28:46 +00:00
|
|
|
// We need to set a timeout when the login is done with SSO in order to make it work on our side.
|
|
|
|
// It is actually due to the SSO server processing the response.
|
|
|
|
setTimeout(() => {
|
2019-08-12 18:37:42 +00:00
|
|
|
this.login(payload);
|
2019-08-09 17:28:46 +00:00
|
|
|
}, 3000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.authType === 'oauth') {
|
|
|
|
if (this.redirectRegex.test(url)) {
|
|
|
|
const parts = url.split('#');
|
|
|
|
const credentials = JSON.parse(parts[1]);
|
|
|
|
this.login({ oauth: { ...credentials } });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-10 13:40:32 +00:00
|
|
|
render() {
|
2019-03-12 16:23:06 +00:00
|
|
|
const { navigation } = this.props;
|
2019-06-20 19:02:16 +00:00
|
|
|
const { loading } = this.state;
|
2019-08-09 17:28:46 +00:00
|
|
|
const uri = navigation.getParam('url');
|
2018-07-10 13:40:32 +00:00
|
|
|
return (
|
2019-03-12 16:23:06 +00:00
|
|
|
<React.Fragment>
|
|
|
|
<StatusBar />
|
|
|
|
<WebView
|
2019-05-20 20:43:50 +00:00
|
|
|
useWebKit
|
2019-08-09 17:28:46 +00:00
|
|
|
source={{ uri }}
|
2019-03-12 16:23:06 +00:00
|
|
|
userAgent={userAgent}
|
2019-08-09 17:28:46 +00:00
|
|
|
onNavigationStateChange={this.onNavigationStateChange}
|
2019-06-20 19:02:16 +00:00
|
|
|
onLoadStart={() => {
|
|
|
|
this.setState({ loading: true });
|
|
|
|
}}
|
|
|
|
onLoadEnd={() => {
|
|
|
|
this.setState({ loading: false });
|
|
|
|
}}
|
2019-03-12 16:23:06 +00:00
|
|
|
/>
|
2019-06-20 19:02:16 +00:00
|
|
|
{ loading ? <ActivityIndicator size='large' style={styles.loading} /> : null }
|
2019-03-12 16:23:06 +00:00
|
|
|
</React.Fragment>
|
2018-07-10 13:40:32 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
server: state.server.server
|
|
|
|
});
|
|
|
|
|
2019-08-09 17:28:46 +00:00
|
|
|
export default connect(mapStateToProps)(AuthenticationWebView);
|