mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
274c5c78c4
Summary: This adds a persistent cookie store that shares cookies with WebView. Add a `ForwardingCookieHandler` to OkHttp that uses the underlying Android webkit `CookieManager`. Use a `LazyCookieHandler` to defer initialization of `CookieManager` as this will in turn trigger initialization of the Chromium stack in KitKat+ which takes some time. This was we will incur this cost on a background network thread instead of during startup. Also add a `clearCookies()` method to the network module. Add a cookies example to the XHR example. This example should also work for iOS (except for the clear cookies part). They are for now just scoped to Android. Closes #2792. public Reviewed By: andreicoman11 Differential Revision: D2615550 fb-gh-sync-id: ff726a35f0fc3c7124d2f755448fe24c9d1caf21
129 lines
3.3 KiB
JavaScript
129 lines
3.3 KiB
JavaScript
/**
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
* evaluation purposes only.
|
|
*
|
|
* Facebook reserves all rights not expressly granted.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
|
|
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var React = require('react-native');
|
|
var {
|
|
StyleSheet,
|
|
Text,
|
|
TouchableHighlight,
|
|
View,
|
|
} = React;
|
|
|
|
var RCTNetworking = require('RCTNetworking');
|
|
|
|
class XHRExampleCookies extends React.Component {
|
|
constructor(props: any) {
|
|
super(props);
|
|
this.cancelled = false;
|
|
this.state = {
|
|
status: '',
|
|
a: 1,
|
|
b: 2,
|
|
};
|
|
}
|
|
|
|
setCookie(domain: string) {
|
|
var {a, b} = this.state;
|
|
var url = `https://${domain}/cookies/set?a=${a}&b=${b}`;
|
|
fetch(url).then((response) => {
|
|
this.setStatus(`Cookies a=${a}, b=${b} set`);
|
|
});
|
|
|
|
this.setState({
|
|
status: 'Setting cookies...',
|
|
a: a + 1,
|
|
b: b + 2,
|
|
});
|
|
}
|
|
|
|
getCookies(domain: string) {
|
|
fetch(`https://${domain}/cookies`).then((response) => {
|
|
return response.json();
|
|
}).then((data) => {
|
|
this.setStatus(`Got cookies ${JSON.stringify(data.cookies)} from server`);
|
|
});
|
|
|
|
this.setStatus('Getting cookies...');
|
|
}
|
|
|
|
clearCookies() {
|
|
RCTNetworking.clearCookies((cleared) => {
|
|
this.setStatus('Cookies cleared, had cookies=' + cleared);
|
|
});
|
|
}
|
|
|
|
setStatus(status: string) {
|
|
this.setState({status});
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<View>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this.setCookie.bind(this, 'httpbin.org')}>
|
|
<View style={styles.button}>
|
|
<Text>Set cookie</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this.setCookie.bind(this, 'eu.httpbin.org')}>
|
|
<View style={styles.button}>
|
|
<Text>Set cookie (EU)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this.getCookies.bind(this, 'httpbin.org')}>
|
|
<View style={styles.button}>
|
|
<Text>Get cookies</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this.getCookies.bind(this, 'eu.httpbin.org')}>
|
|
<View style={styles.button}>
|
|
<Text>Get cookies (EU)</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<TouchableHighlight
|
|
style={styles.wrapper}
|
|
onPress={this.clearCookies.bind(this)}>
|
|
<View style={styles.button}>
|
|
<Text>Clear cookies</Text>
|
|
</View>
|
|
</TouchableHighlight>
|
|
<Text>{this.state.status}</Text>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
var styles = StyleSheet.create({
|
|
wrapper: {
|
|
borderRadius: 5,
|
|
marginBottom: 5,
|
|
},
|
|
button: {
|
|
backgroundColor: '#eeeeee',
|
|
padding: 8,
|
|
},
|
|
});
|
|
|
|
module.exports = XHRExampleCookies;
|