mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +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
50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule RCTNetworking
|
|
*/
|
|
'use strict';
|
|
|
|
// Do not require the native RCTNetworking module directly! Use this wrapper module instead.
|
|
// It will add the necessary requestId, so that you don't have to generate it yourself.
|
|
var RCTNetworkingNative = require('NativeModules').Networking;
|
|
|
|
var _requestId = 1;
|
|
var generateRequestId = function() {
|
|
return _requestId++;
|
|
};
|
|
|
|
/**
|
|
* This class is a wrapper around the native RCTNetworking module. It adds a necessary unique
|
|
* requestId to each network request that can be used to abort that request later on.
|
|
*/
|
|
class RCTNetworking {
|
|
|
|
static sendRequest(method, url, headers, data, useIncrementalUpdates) {
|
|
var requestId = generateRequestId();
|
|
RCTNetworkingNative.sendRequest(
|
|
method,
|
|
url,
|
|
requestId,
|
|
headers,
|
|
data,
|
|
useIncrementalUpdates);
|
|
return requestId;
|
|
}
|
|
|
|
static abortRequest(requestId) {
|
|
RCTNetworkingNative.abortRequest(requestId);
|
|
}
|
|
|
|
static clearCookies(callback) {
|
|
RCTNetworkingNative.clearCookies(callback);
|
|
}
|
|
}
|
|
|
|
module.exports = RCTNetworking;
|