2015-01-29 17:10:49 -08:00
|
|
|
/**
|
2015-03-23 15:07:33 -07:00
|
|
|
* 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.
|
2015-01-29 17:10:49 -08:00
|
|
|
*
|
|
|
|
* @providesModule XMLHttpRequest
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2015-03-18 15:57:49 -07:00
|
|
|
var RCTDataManager = require('NativeModules').DataManager;
|
2015-06-05 15:23:30 -07:00
|
|
|
var RCTDeviceEventEmitter = require('RCTDeviceEventEmitter');
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2015-03-24 19:34:12 -07:00
|
|
|
var XMLHttpRequestBase = require('XMLHttpRequestBase');
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2015-03-24 19:34:12 -07:00
|
|
|
class XMLHttpRequest extends XMLHttpRequestBase {
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2015-06-05 15:23:30 -07:00
|
|
|
_requestId: ?number;
|
|
|
|
_subscriptions: [any];
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this._requestId = null;
|
|
|
|
this._subscriptions = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
_didCreateRequest(requestId: number): void {
|
|
|
|
this._requestId = requestId;
|
|
|
|
this._subscriptions.push(RCTDeviceEventEmitter.addListener(
|
|
|
|
'didReceiveNetworkResponse',
|
|
|
|
(args) => this._didReceiveResponse.call(this, args[0], args[1], args[2])
|
|
|
|
));
|
|
|
|
this._subscriptions.push(RCTDeviceEventEmitter.addListener(
|
|
|
|
'didReceiveNetworkData',
|
|
|
|
(args) => this._didReceiveData.call(this, args[0], args[1])
|
|
|
|
));
|
|
|
|
this._subscriptions.push(RCTDeviceEventEmitter.addListener(
|
|
|
|
'didCompleteNetworkResponse',
|
2015-06-05 18:47:32 -07:00
|
|
|
(args) => this._didCompleteResponse.call(this, args[0], args[1])
|
2015-06-05 15:23:30 -07:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
_didReceiveResponse(requestId: number, status: number, responseHeaders: ?Object): void {
|
|
|
|
if (requestId === this._requestId) {
|
|
|
|
this.status = status;
|
|
|
|
this.setResponseHeaders(responseHeaders);
|
|
|
|
this.setReadyState(this.HEADERS_RECEIVED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_didReceiveData(requestId: number, responseText: string): void {
|
|
|
|
if (requestId === this._requestId) {
|
|
|
|
if (!this.responseText) {
|
|
|
|
this.responseText = responseText;
|
|
|
|
} else {
|
|
|
|
this.responseText += responseText;
|
|
|
|
}
|
|
|
|
this.setReadyState(this.LOADING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_didCompleteResponse(requestId: number, error: string): void {
|
|
|
|
if (requestId === this._requestId) {
|
2015-06-06 16:44:58 -07:00
|
|
|
if (error) {
|
|
|
|
this.responseText = error;
|
|
|
|
}
|
2015-06-05 15:23:30 -07:00
|
|
|
this._clearSubscriptions();
|
|
|
|
this._requestId = null;
|
|
|
|
this.setReadyState(this.DONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_clearSubscriptions(): void {
|
|
|
|
for (var i = 0; i < this._subscriptions.length; i++) {
|
|
|
|
var sub = this._subscriptions[i];
|
|
|
|
sub.remove();
|
|
|
|
}
|
|
|
|
this._subscriptions = [];
|
|
|
|
}
|
|
|
|
|
2015-03-24 19:34:12 -07:00
|
|
|
sendImpl(method: ?string, url: ?string, headers: Object, data: any): void {
|
2015-03-17 13:42:44 -07:00
|
|
|
RCTDataManager.queryData(
|
2015-01-29 17:10:49 -08:00
|
|
|
'http',
|
2015-04-10 01:33:10 -07:00
|
|
|
{
|
2015-05-26 13:29:41 -07:00
|
|
|
method: method,
|
|
|
|
url: url,
|
|
|
|
data: data,
|
|
|
|
headers: headers,
|
2015-04-10 01:33:10 -07:00
|
|
|
},
|
2015-06-05 15:23:30 -07:00
|
|
|
this.onreadystatechange ? true : false,
|
|
|
|
this._didCreateRequest.bind(this)
|
2015-01-29 17:10:49 -08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-03-24 19:34:12 -07:00
|
|
|
abortImpl(): void {
|
2015-06-05 15:23:30 -07:00
|
|
|
if (this._requestId) {
|
|
|
|
this._clearSubscriptions();
|
|
|
|
this._requestId = null;
|
|
|
|
}
|
2015-01-29 17:10:49 -08:00
|
|
|
console.warn(
|
|
|
|
'XMLHttpRequest: abort() cancels JS callbacks ' +
|
|
|
|
'but not native HTTP request.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = XMLHttpRequest;
|