2015-07-14 19:53:04 -05:00
|
|
|
import {ConnectionBackend, Connection} from '../interfaces';
|
2015-08-26 14:26:13 +12:00
|
|
|
import {ReadyStates, RequestMethods} from '../enums';
|
2015-07-14 19:53:04 -05:00
|
|
|
import {Request} from '../static_request';
|
|
|
|
import {Response} from '../static_response';
|
|
|
|
import {ResponseOptions, BaseResponseOptions} from '../base_response_options';
|
2015-09-03 22:01:36 -07:00
|
|
|
import {Injectable} from 'angular2/src/core/di';
|
2015-07-14 19:53:04 -05:00
|
|
|
import {BrowserJsonp} from './browser_jsonp';
|
2015-08-20 14:28:25 -07:00
|
|
|
import {EventEmitter, ObservableWrapper} from 'angular2/src/core/facade/async';
|
2015-09-10 15:25:36 -07:00
|
|
|
import {makeTypeError} from 'angular2/src/core/facade/exceptions';
|
|
|
|
import {StringWrapper, isPresent} from 'angular2/src/core/facade/lang';
|
2015-10-01 16:04:20 -07:00
|
|
|
// todo(robwormald): temporary until https://github.com/angular/angular/issues/4390 decided
|
|
|
|
var Rx = require('@reactivex/rxjs/dist/cjs/Rx');
|
|
|
|
var {Observable} = Rx;
|
2015-07-14 19:53:04 -05:00
|
|
|
export class JSONPConnection implements Connection {
|
|
|
|
readyState: ReadyStates;
|
|
|
|
request: Request;
|
2015-09-25 18:53:32 -04:00
|
|
|
response: any;
|
2015-07-14 19:53:04 -05:00
|
|
|
private _id: string;
|
|
|
|
private _script: Element;
|
|
|
|
private _responseData: any;
|
|
|
|
private _finished: boolean = false;
|
|
|
|
|
2015-09-11 13:45:31 -07:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
2015-07-14 19:53:04 -05:00
|
|
|
constructor(req: Request, private _dom: BrowserJsonp,
|
|
|
|
private baseResponseOptions?: ResponseOptions) {
|
2015-08-26 13:40:12 -07:00
|
|
|
if (req.method !== RequestMethods.Get) {
|
2015-07-14 19:53:04 -05:00
|
|
|
throw makeTypeError("JSONP requests must use GET request method.");
|
|
|
|
}
|
|
|
|
this.request = req;
|
2015-09-25 18:53:32 -04:00
|
|
|
this.response = new Observable(responseObserver => {
|
2015-07-14 19:53:04 -05:00
|
|
|
|
2015-09-25 18:53:32 -04:00
|
|
|
this.readyState = ReadyStates.Loading;
|
|
|
|
let id = this._id = _dom.nextRequestID();
|
2015-07-14 19:53:04 -05:00
|
|
|
|
2015-09-25 18:53:32 -04:00
|
|
|
_dom.exposeConnection(id, this);
|
2015-07-14 19:53:04 -05:00
|
|
|
|
2015-09-25 18:53:32 -04:00
|
|
|
// Workaround Dart
|
|
|
|
// url = url.replace(/=JSONP_CALLBACK(&|$)/, `generated method`);
|
|
|
|
let callback = _dom.requestCallback(this._id);
|
|
|
|
let url: string = req.url;
|
|
|
|
if (url.indexOf('=JSONP_CALLBACK&') > -1) {
|
|
|
|
url = StringWrapper.replace(url, '=JSONP_CALLBACK&', `=${callback}&`);
|
|
|
|
} else if (url.lastIndexOf('=JSONP_CALLBACK') === url.length - '=JSONP_CALLBACK'.length) {
|
|
|
|
url =
|
|
|
|
StringWrapper.substring(url, 0, url.length - '=JSONP_CALLBACK'.length) + `=${callback}`;
|
2015-07-14 19:53:04 -05:00
|
|
|
}
|
|
|
|
|
2015-09-25 18:53:32 -04:00
|
|
|
let script = this._script = _dom.build(url);
|
2015-07-14 19:53:04 -05:00
|
|
|
|
2015-09-25 18:53:32 -04:00
|
|
|
let onLoad = event => {
|
|
|
|
if (this.readyState === ReadyStates.Cancelled) return;
|
|
|
|
this.readyState = ReadyStates.Done;
|
|
|
|
_dom.cleanup(script);
|
|
|
|
if (!this._finished) {
|
|
|
|
responseObserver.error(makeTypeError('JSONP injected script did not invoke callback.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let responseOptions = new ResponseOptions({body: this._responseData});
|
|
|
|
if (isPresent(this.baseResponseOptions)) {
|
|
|
|
responseOptions = this.baseResponseOptions.merge(responseOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
responseObserver.next(new Response(responseOptions));
|
|
|
|
responseObserver.complete();
|
|
|
|
};
|
|
|
|
|
|
|
|
let onError = error => {
|
|
|
|
if (this.readyState === ReadyStates.Cancelled) return;
|
|
|
|
this.readyState = ReadyStates.Done;
|
|
|
|
_dom.cleanup(script);
|
|
|
|
responseObserver.error(error);
|
|
|
|
};
|
|
|
|
|
|
|
|
script.addEventListener('load', onLoad);
|
|
|
|
script.addEventListener('error', onError);
|
2015-07-14 19:53:04 -05:00
|
|
|
|
2015-09-25 18:53:32 -04:00
|
|
|
_dom.send(script);
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
this.readyState = ReadyStates.Cancelled;
|
|
|
|
script.removeEventListener('load', onLoad);
|
|
|
|
script.removeEventListener('error', onError);
|
|
|
|
if (isPresent(script)) {
|
|
|
|
this._dom.cleanup(script);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
2015-07-14 19:53:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
finished(data?: any) {
|
|
|
|
// Don't leak connections
|
|
|
|
this._finished = true;
|
|
|
|
this._dom.removeConnection(this._id);
|
2015-08-26 13:40:12 -07:00
|
|
|
if (this.readyState === ReadyStates.Cancelled) return;
|
2015-07-14 19:53:04 -05:00
|
|
|
this._responseData = data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class JSONPBackend implements ConnectionBackend {
|
2015-09-11 13:45:31 -07:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
2015-07-14 19:53:04 -05:00
|
|
|
constructor(private _browserJSONP: BrowserJsonp, private _baseResponseOptions: ResponseOptions) {}
|
|
|
|
createConnection(request: Request): JSONPConnection {
|
|
|
|
return new JSONPConnection(request, this._browserJSONP, this._baseResponseOptions);
|
|
|
|
}
|
|
|
|
}
|