-
Notifications
You must be signed in to change notification settings - Fork 13
/
request.ts
76 lines (73 loc) · 1.69 KB
/
request.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import { IHubRequestOptions } from "./types";
import { buildUrl } from "./urls/build-url";
/**
* remote server error
*/
export class RemoteServerError extends Error {
status: number;
url: string;
constructor(message: string, url: string, status: number) {
super(message);
this.status = status;
this.url = url;
}
}
/**
* ```js
* import { hubApiRequest } from "@esri/hub-common";
* //
* hubApiRequest(
* "/datasets",
* requestOptions
* })
* .then(response);
* ```
* make a request to the Hub API
* @param route API route
* @param requestOptions request options
*/
export function hubApiRequest(
route: string,
requestOptions?: IHubRequestOptions
) {
// merge in default request options
const options: IHubRequestOptions = {
hubApiUrl: "https://opendata.arcgis.com/api/v3/",
httpMethod: "GET",
...requestOptions
};
// use fetch override if any
const _fetch = options.fetch || fetch;
// merge in default headers
const headers = {
"Content-Type": "application/json",
...options.headers
};
// build query params/body based on requestOptions.params
let query;
let body;
if (options.httpMethod === "GET") {
// pass params in query string
query = options.params;
} else {
// pass params in request body
body = JSON.stringify(options.params);
}
// build Hub API URL
const url = buildUrl({
host: options.hubApiUrl,
path: `/api/v3/${route}`.replace(/\/\//g, "/"),
query
});
return _fetch(url, {
method: options.httpMethod,
headers,
body
}).then(resp => {
if (resp.ok) {
return resp.json();
} else {
throw new RemoteServerError(resp.statusText, url, resp.status);
}
});
}