94 lines
2.2 KiB
JavaScript
94 lines
2.2 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { WebView, Dimensions } from 'react-native';
|
|
import { connect } from 'react-redux';
|
|
import { Navigation } from 'react-native-navigation';
|
|
|
|
import RocketChat from '../lib/rocketchat';
|
|
import I18n from '../i18n';
|
|
import { DARK_HEADER } from '../constants/headerOptions';
|
|
import { isIOS, isAndroid } from '../utils/deviceInfo';
|
|
|
|
const userAgentAndroid = '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';
|
|
const userAgent = isIOS ? 'UserAgent' : userAgentAndroid;
|
|
|
|
@connect(state => ({
|
|
server: state.server.server
|
|
}))
|
|
export default class OAuthView extends React.PureComponent {
|
|
static options() {
|
|
return {
|
|
...DARK_HEADER,
|
|
topBar: {
|
|
...DARK_HEADER.topBar,
|
|
leftButtons: [{
|
|
id: 'cancel',
|
|
icon: isAndroid ? { uri: 'back', scale: Dimensions.get('window').scale } : undefined,
|
|
text: isIOS ? I18n.t('Cancel') : undefined
|
|
}]
|
|
}
|
|
};
|
|
}
|
|
|
|
static propTypes = {
|
|
componentId: PropTypes.string,
|
|
oAuthUrl: PropTypes.string,
|
|
server: PropTypes.string
|
|
}
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
logging: false
|
|
};
|
|
this.redirectRegex = new RegExp(`(?=.*(${ props.server }))(?=.*(credentialToken))(?=.*(credentialSecret))`, 'g');
|
|
Navigation.events().bindComponent(this);
|
|
}
|
|
|
|
navigationButtonPressed = ({ buttonId }) => {
|
|
if (buttonId === 'cancel') {
|
|
this.dismiss();
|
|
}
|
|
}
|
|
|
|
dismiss = () => {
|
|
const { componentId } = this.props;
|
|
Navigation.dismissModal(componentId);
|
|
}
|
|
|
|
login = async(params) => {
|
|
const { logging } = this.state;
|
|
if (logging) {
|
|
return;
|
|
}
|
|
|
|
this.setState({ logging: true });
|
|
|
|
try {
|
|
await RocketChat.loginOAuth(params);
|
|
} catch (e) {
|
|
console.warn(e);
|
|
}
|
|
this.setState({ logging: false });
|
|
this.dismiss();
|
|
}
|
|
|
|
render() {
|
|
const { oAuthUrl } = this.props;
|
|
return (
|
|
<WebView
|
|
source={{ uri: oAuthUrl }}
|
|
userAgent={userAgent}
|
|
onNavigationStateChange={(webViewState) => {
|
|
const url = decodeURIComponent(webViewState.url);
|
|
if (this.redirectRegex.test(url)) {
|
|
const parts = url.split('#');
|
|
const credentials = JSON.parse(parts[1]);
|
|
this.login({ oauth: { ...credentials } });
|
|
}
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|