delectusnon 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.prettierignore +2 -0
- package/.travis.yml +33 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/demos/ago-node-cli/README.md +29 -0
- package/demos/ago-node-cli/ago.js +32 -0
- package/demos/ago-node-cli/index.js +11 -0
- package/demos/ago-node-cli/lib/item-export-command.js +48 -0
- package/demos/ago-node-cli/lib/item-search-command.js +35 -0
- package/demos/ago-node-cli/package-lock.json +172 -0
- package/demos/ago-node-cli/package.json +30 -0
- package/demos/attachments/README.md +5 -0
- package/demos/attachments/index.html +164 -0
- package/demos/attachments/package-lock.json +182 -0
- package/demos/attachments/package.json +18 -0
- package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
- package/demos/batch-geocoder-node/README.md +15 -0
- package/demos/batch-geocoder-node/batch-geocode.js +118 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package-lock.json +116 -0
- package/demos/batch-geocoder-node/package.json +39 -0
- package/demos/express/README.md +10 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package-lock.json +473 -0
- package/demos/express/package.json +18 -0
- package/demos/express/server.js +28 -0
- package/demos/feature-service-browser/README.md +6 -0
- package/demos/feature-service-browser/index.html +122 -0
- package/demos/feature-service-browser/package-lock.json +182 -0
- package/demos/feature-service-browser/package.json +18 -0
- package/demos/geocoder-browser/README.md +10 -0
- package/demos/geocoder-browser/config.js.template +1 -0
- package/demos/geocoder-browser/index.html +131 -0
- package/demos/geocoder-browser/package-lock.json +182 -0
- package/demos/geocoder-browser/package.json +19 -0
- package/demos/geocoder-browser/post-sign-in.html +25 -0
- package/demos/jsapi-integration/README.md +8 -0
- package/demos/jsapi-integration/config.js +6 -0
- package/demos/jsapi-integration/index.html +79 -0
- package/demos/jsapi-integration/package-lock.json +184 -0
- package/demos/jsapi-integration/package.json +19 -0
- package/demos/oauth2-browser/README.md +12 -0
- package/demos/oauth2-browser/authenticate.html +32 -0
- package/demos/oauth2-browser/config.js.template +6 -0
- package/demos/oauth2-browser/index.html +202 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package-lock.json +163 -0
- package/demos/oauth2-browser/package.json +18 -0
- package/demos/oauth2-browser/style.css +36 -0
- package/demos/oauth2-browser-retry/README.md +25 -0
- package/demos/oauth2-browser-retry/authenticate.html +21 -0
- package/demos/oauth2-browser-retry/index.html +116 -0
- package/demos/oauth2-browser-retry/logo.svg +4 -0
- package/demos/vue/.env.example +11 -0
- package/demos/vue/.eslintrc.js +17 -0
- package/demos/vue/.postcssrc.js +5 -0
- package/demos/vue/README.md +17 -0
- package/demos/vue/babel.config.js +3 -0
- package/demos/vue/package-lock.json +11323 -0
- package/demos/vue/package.json +33 -0
- package/demos/vue/public/favicon.ico +0 -0
- package/demos/vue/public/index.html +24 -0
- package/demos/vue/src/assets/logo.svg +29 -0
- package/demos/vue/src/components/App.vue +308 -0
- package/demos/vue/src/components/Authenticate.vue +65 -0
- package/demos/vue/src/components/Loader.vue +230 -0
- package/demos/vue/src/main.js +92 -0
- package/docs/FAQ.md +28 -0
- package/docs/HISTORY.md +62 -0
- package/docs/acetate.config.js +223 -0
- package/docs/build-typedoc.js +301 -0
- package/docs/src/_layout.html +82 -0
- package/docs/src/api/_declaration.html +496 -0
- package/docs/src/api/_layout.html +127 -0
- package/docs/src/api/_package.html +13 -0
- package/docs/src/api/index.html +23 -0
- package/docs/src/guides/_layout.html +24 -0
- package/docs/src/guides/amd-requirejs-dojo.md +40 -0
- package/docs/src/guides/babel-and-rollup.md +30 -0
- package/docs/src/guides/babel-and-webpack.md +30 -0
- package/docs/src/guides/browser-authentication.md +31 -0
- package/docs/src/guides/browserify.md +9 -0
- package/docs/src/guides/cli-authentication.md +9 -0
- package/docs/src/guides/client-server-authentication.md +9 -0
- package/docs/src/guides/from-a-cdn.md +36 -0
- package/docs/src/guides/index.md +52 -0
- package/docs/src/guides/node.md +70 -0
- package/docs/src/guides/package-overview.md +8 -0
- package/docs/src/guides/server-authentication.md +9 -0
- package/docs/src/guides/typescript-and-webpack.md +9 -0
- package/docs/src/img/icons.png +0 -0
- package/docs/src/img/icons@2x.png +0 -0
- package/docs/src/index.html +12 -0
- package/docs/src/js/api-search.js +112 -0
- package/docs/src/js/nav-toggle.js +41 -0
- package/docs/src/sass/_highlight.scss +96 -0
- package/docs/src/sass/_icons.scss +157 -0
- package/docs/src/sass/style.scss +169 -0
- package/jasmine.json +7 -0
- package/karma.conf.js +100 -0
- package/lerna.json +8 -0
- package/notes/README.md +88 -0
- package/package.json +88 -0
- package/packages/arcgis-rest-auth/README.md +64 -0
- package/packages/arcgis-rest-auth/package-lock.json +11 -0
- package/packages/arcgis-rest-auth/package.json +51 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +109 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +873 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -0
- package/packages/arcgis-rest-auth/src/fetch-token.ts +52 -0
- package/packages/arcgis-rest-auth/src/generate-token.ts +39 -0
- package/packages/arcgis-rest-auth/src/index.ts +8 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +995 -0
- package/packages/arcgis-rest-auth/test/fetchToken.test.ts +112 -0
- package/packages/arcgis-rest-auth/test/generateToken.test.ts +130 -0
- package/packages/arcgis-rest-auth/test/utils.ts +14 -0
- package/packages/arcgis-rest-auth/tsconfig.json +6 -0
- package/packages/arcgis-rest-common-types/README.md +61 -0
- package/packages/arcgis-rest-common-types/package.json +38 -0
- package/packages/arcgis-rest-common-types/src/group.ts +54 -0
- package/packages/arcgis-rest-common-types/src/index.ts +467 -0
- package/packages/arcgis-rest-common-types/src/item.ts +45 -0
- package/packages/arcgis-rest-common-types/src/webmap.ts +1232 -0
- package/packages/arcgis-rest-common-types/tsconfig.json +11 -0
- package/packages/arcgis-rest-feature-service/README.md +70 -0
- package/packages/arcgis-rest-feature-service/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-service/package.json +50 -0
- package/packages/arcgis-rest-feature-service/src/add.ts +81 -0
- package/packages/arcgis-rest-feature-service/src/addAttachment.ts +65 -0
- package/packages/arcgis-rest-feature-service/src/delete.ts +85 -0
- package/packages/arcgis-rest-feature-service/src/deleteAttachments.ts +68 -0
- package/packages/arcgis-rest-feature-service/src/getAttachments.ts +64 -0
- package/packages/arcgis-rest-feature-service/src/helpers.ts +80 -0
- package/packages/arcgis-rest-feature-service/src/index.ts +12 -0
- package/packages/arcgis-rest-feature-service/src/query.ts +172 -0
- package/packages/arcgis-rest-feature-service/src/queryRelated.ts +91 -0
- package/packages/arcgis-rest-feature-service/src/update.ts +81 -0
- package/packages/arcgis-rest-feature-service/src/updateAttachment.ts +74 -0
- package/packages/arcgis-rest-feature-service/test/attachments.test.ts +203 -0
- package/packages/arcgis-rest-feature-service/test/features.test.ts +252 -0
- package/packages/arcgis-rest-feature-service/test/mocks/feature.ts +279 -0
- package/packages/arcgis-rest-feature-service/test/mocks/foo.txt +1 -0
- package/packages/arcgis-rest-feature-service/tsconfig.json +6 -0
- package/packages/arcgis-rest-feature-service-admin/README.md +66 -0
- package/packages/arcgis-rest-feature-service-admin/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-service-admin/package.json +53 -0
- package/packages/arcgis-rest-feature-service-admin/src/addTo.ts +70 -0
- package/packages/arcgis-rest-feature-service-admin/src/create.ts +195 -0
- package/packages/arcgis-rest-feature-service-admin/src/index.ts +2 -0
- package/packages/arcgis-rest-feature-service-admin/test/addTo.test.ts +310 -0
- package/packages/arcgis-rest-feature-service-admin/test/create.test.ts +412 -0
- package/packages/arcgis-rest-feature-service-admin/test/mocks/move.ts +14 -0
- package/packages/arcgis-rest-feature-service-admin/test/mocks/service.ts +72 -0
- package/packages/arcgis-rest-feature-service-admin/tsconfig.json +6 -0
- package/packages/arcgis-rest-geocoder/README.md +79 -0
- package/packages/arcgis-rest-geocoder/package-lock.json +11 -0
- package/packages/arcgis-rest-geocoder/package.json +52 -0
- package/packages/arcgis-rest-geocoder/src/bulk.ts +102 -0
- package/packages/arcgis-rest-geocoder/src/geocode.ts +117 -0
- package/packages/arcgis-rest-geocoder/src/helpers.ts +79 -0
- package/packages/arcgis-rest-geocoder/src/index.ts +8 -0
- package/packages/arcgis-rest-geocoder/src/reverse.ts +84 -0
- package/packages/arcgis-rest-geocoder/src/suggest.ts +72 -0
- package/packages/arcgis-rest-geocoder/test/bulk.test.ts +113 -0
- package/packages/arcgis-rest-geocoder/test/geocode.test.ts +121 -0
- package/packages/arcgis-rest-geocoder/test/helpers.test.ts +113 -0
- package/packages/arcgis-rest-geocoder/test/mocks/responses.ts +591 -0
- package/packages/arcgis-rest-geocoder/test/reverse.test.ts +126 -0
- package/packages/arcgis-rest-geocoder/test/suggest.test.ts +77 -0
- package/packages/arcgis-rest-geocoder/tsconfig.json +6 -0
- package/packages/arcgis-rest-groups/README.md +64 -0
- package/packages/arcgis-rest-groups/package-lock.json +11 -0
- package/packages/arcgis-rest-groups/package.json +52 -0
- package/packages/arcgis-rest-groups/src/create.ts +34 -0
- package/packages/arcgis-rest-groups/src/get.ts +95 -0
- package/packages/arcgis-rest-groups/src/helpers.ts +26 -0
- package/packages/arcgis-rest-groups/src/index.ts +11 -0
- package/packages/arcgis-rest-groups/src/notification.ts +77 -0
- package/packages/arcgis-rest-groups/src/protect.ts +40 -0
- package/packages/arcgis-rest-groups/src/remove.ts +23 -0
- package/packages/arcgis-rest-groups/src/search.ts +64 -0
- package/packages/arcgis-rest-groups/src/update.ts +36 -0
- package/packages/arcgis-rest-groups/test/crud.test.ts +104 -0
- package/packages/arcgis-rest-groups/test/get.test.ts +101 -0
- package/packages/arcgis-rest-groups/test/mocks/responses.ts +141 -0
- package/packages/arcgis-rest-groups/test/notification.test.ts +102 -0
- package/packages/arcgis-rest-groups/test/protect.test.ts +64 -0
- package/packages/arcgis-rest-groups/test/search.test.ts +85 -0
- package/packages/arcgis-rest-groups/tsconfig.json +6 -0
- package/packages/arcgis-rest-items/README.md +66 -0
- package/packages/arcgis-rest-items/package-lock.json +11 -0
- package/packages/arcgis-rest-items/package.json +52 -0
- package/packages/arcgis-rest-items/src/add.ts +103 -0
- package/packages/arcgis-rest-items/src/create.ts +110 -0
- package/packages/arcgis-rest-items/src/get.ts +79 -0
- package/packages/arcgis-rest-items/src/helpers.ts +147 -0
- package/packages/arcgis-rest-items/src/index.ts +11 -0
- package/packages/arcgis-rest-items/src/protect.ts +38 -0
- package/packages/arcgis-rest-items/src/remove.ts +58 -0
- package/packages/arcgis-rest-items/src/search.ts +78 -0
- package/packages/arcgis-rest-items/src/update.ts +134 -0
- package/packages/arcgis-rest-items/test/add.test.ts +256 -0
- package/packages/arcgis-rest-items/test/create.test.ts +371 -0
- package/packages/arcgis-rest-items/test/get.test.ts +181 -0
- package/packages/arcgis-rest-items/test/mocks/foo.zip +0 -0
- package/packages/arcgis-rest-items/test/mocks/item.ts +33 -0
- package/packages/arcgis-rest-items/test/mocks/resources.ts +31 -0
- package/packages/arcgis-rest-items/test/mocks/search.ts +63 -0
- package/packages/arcgis-rest-items/test/protect.test.ts +122 -0
- package/packages/arcgis-rest-items/test/remove.test.ts +161 -0
- package/packages/arcgis-rest-items/test/search.test.ts +159 -0
- package/packages/arcgis-rest-items/test/update.test.ts +450 -0
- package/packages/arcgis-rest-items/tsconfig.json +6 -0
- package/packages/arcgis-rest-request/README.md +65 -0
- package/packages/arcgis-rest-request/package-lock.json +11 -0
- package/packages/arcgis-rest-request/package.json +42 -0
- package/packages/arcgis-rest-request/src/index.ts +13 -0
- package/packages/arcgis-rest-request/src/request.ts +293 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISAuthError.ts +67 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +76 -0
- package/packages/arcgis-rest-request/src/utils/ErrorTypes.ts +29 -0
- package/packages/arcgis-rest-request/src/utils/check-for-errors.ts +65 -0
- package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +34 -0
- package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +23 -0
- package/packages/arcgis-rest-request/src/utils/get-portal-url.ts +25 -0
- package/packages/arcgis-rest-request/src/utils/get-portal.ts +45 -0
- package/packages/arcgis-rest-request/src/utils/process-params.ts +99 -0
- package/packages/arcgis-rest-request/test/mocks/errors.ts +68 -0
- package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +13 -0
- package/packages/arcgis-rest-request/test/mocks/portal.ts +112 -0
- package/packages/arcgis-rest-request/test/mocks/sharing-rest-info.ts +41 -0
- package/packages/arcgis-rest-request/test/mocks/webmap.ts +41 -0
- package/packages/arcgis-rest-request/test/request.test.ts +299 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +170 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISRequestError.test.ts +51 -0
- package/packages/arcgis-rest-request/test/utils/check-for-errors.test.ts +111 -0
- package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
- package/packages/arcgis-rest-request/test/utils/get-portal-url.test.ts +37 -0
- package/packages/arcgis-rest-request/test/utils/portal.test.ts +97 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +193 -0
- package/packages/arcgis-rest-request/tsconfig.json +6 -0
- package/packages/arcgis-rest-sharing/README.md +67 -0
- package/packages/arcgis-rest-sharing/package-lock.json +11 -0
- package/packages/arcgis-rest-sharing/package.json +57 -0
- package/packages/arcgis-rest-sharing/src/access.ts +85 -0
- package/packages/arcgis-rest-sharing/src/group-sharing.ts +211 -0
- package/packages/arcgis-rest-sharing/src/helpers.ts +82 -0
- package/packages/arcgis-rest-sharing/src/index.ts +5 -0
- package/packages/arcgis-rest-sharing/test/access.test.ts +154 -0
- package/packages/arcgis-rest-sharing/test/group-sharing.test.ts +566 -0
- package/packages/arcgis-rest-sharing/test/helpers.test.ts +55 -0
- package/packages/arcgis-rest-sharing/test/mocks/sharing.ts +18 -0
- package/packages/arcgis-rest-sharing/tsconfig.json +6 -0
- package/packages/arcgis-rest-users/README.md +71 -0
- package/packages/arcgis-rest-users/package-lock.json +11 -0
- package/packages/arcgis-rest-users/package.json +51 -0
- package/packages/arcgis-rest-users/src/get.ts +69 -0
- package/packages/arcgis-rest-users/src/index.ts +6 -0
- package/packages/arcgis-rest-users/src/invitation.ts +166 -0
- package/packages/arcgis-rest-users/src/notification.ts +73 -0
- package/packages/arcgis-rest-users/test/get.test.ts +99 -0
- package/packages/arcgis-rest-users/test/invitation.test.ts +169 -0
- package/packages/arcgis-rest-users/test/mocks/invitation.ts +70 -0
- package/packages/arcgis-rest-users/test/mocks/notification.ts +34 -0
- package/packages/arcgis-rest-users/test/mocks/user.ts +173 -0
- package/packages/arcgis-rest-users/test/notification.test.ts +83 -0
- package/packages/arcgis-rest-users/tsconfig.json +6 -0
- package/support/changelog.js +394 -0
- package/support/deploy-doc-site.js +16 -0
- package/support/publish.sh +43 -0
- package/support/test-helpers.js +8 -0
- package/tsconfig.json +69 -0
- package/tslint.json +15 -0
- package/umd-base-profile.js +82 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,293 @@
|
|
1
|
+
/* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { checkForErrors } from "./utils/check-for-errors";
|
5
|
+
import { encodeFormData } from "./utils/encode-form-data";
|
6
|
+
import { encodeQueryString } from "./utils/encode-query-string";
|
7
|
+
import { requiresFormData } from "./utils/process-params";
|
8
|
+
import { ArcGISRequestError } from "./utils/ArcGISRequestError";
|
9
|
+
|
10
|
+
export type GrantTypes =
|
11
|
+
| "authorization_code"
|
12
|
+
| "refresh_token"
|
13
|
+
| "client_credentials"
|
14
|
+
| "exchange_refresh_token";
|
15
|
+
|
16
|
+
export interface IParams {
|
17
|
+
f?: ResponseFormats;
|
18
|
+
[key: string]: any;
|
19
|
+
}
|
20
|
+
|
21
|
+
export interface IGenerateTokenParams extends IParams {
|
22
|
+
username?: string;
|
23
|
+
password?: string;
|
24
|
+
expiration?: number;
|
25
|
+
token?: string;
|
26
|
+
serverUrl?: string;
|
27
|
+
}
|
28
|
+
|
29
|
+
export interface IFetchTokenParams extends IParams {
|
30
|
+
client_id: string;
|
31
|
+
client_secret?: string;
|
32
|
+
grant_type: GrantTypes;
|
33
|
+
redirect_uri?: string;
|
34
|
+
refresh_token?: string;
|
35
|
+
code?: string;
|
36
|
+
}
|
37
|
+
|
38
|
+
export interface ITokenRequestOptions {
|
39
|
+
params?: IGenerateTokenParams | IFetchTokenParams;
|
40
|
+
httpMethod?: HTTPMethods;
|
41
|
+
fetch?: (input: RequestInfo, init?: RequestInit) => Promise<Response>;
|
42
|
+
}
|
43
|
+
|
44
|
+
/**
|
45
|
+
* Authentication can be supplied to `request` via [`UserSession`](../../auth/UserSession/) or [`ApplicationSession`](../../auth/ApplicationSession/). Both classes extend `IAuthenticationManager`.
|
46
|
+
* ```js
|
47
|
+
* const session = new UserSession({
|
48
|
+
* username: "jsmith",
|
49
|
+
* password: "123456",
|
50
|
+
* // optional
|
51
|
+
* portal: "https://[yourserver]/arcgis/sharing/rest"
|
52
|
+
* })
|
53
|
+
*
|
54
|
+
* request(url, { authentication: session })
|
55
|
+
* ```
|
56
|
+
*/
|
57
|
+
export interface IAuthenticationManager {
|
58
|
+
/**
|
59
|
+
* Defaults to 'https://www.arcgis.com/sharing/rest'.
|
60
|
+
*/
|
61
|
+
portal: string;
|
62
|
+
getToken(url: string, requestOptions?: ITokenRequestOptions): Promise<string>;
|
63
|
+
}
|
64
|
+
|
65
|
+
/**
|
66
|
+
* HTTP methods used by the ArcGIS REST API.
|
67
|
+
*/
|
68
|
+
export type HTTPMethods = "GET" | "POST";
|
69
|
+
|
70
|
+
/**
|
71
|
+
* Valid response formats for the `f` parameter.
|
72
|
+
*/
|
73
|
+
export type ResponseFormats =
|
74
|
+
| "json"
|
75
|
+
| "geojson"
|
76
|
+
| "text"
|
77
|
+
| "html"
|
78
|
+
| "image"
|
79
|
+
| "zip";
|
80
|
+
|
81
|
+
/**
|
82
|
+
* Options for the `request()` method.
|
83
|
+
*/
|
84
|
+
export interface IRequestOptions {
|
85
|
+
/**
|
86
|
+
* Additional parameters to pass in the request.
|
87
|
+
*/
|
88
|
+
params?: IParams;
|
89
|
+
|
90
|
+
/**
|
91
|
+
* The HTTP method to send the request with.
|
92
|
+
*/
|
93
|
+
httpMethod?: HTTPMethods;
|
94
|
+
|
95
|
+
/**
|
96
|
+
* The instance of `IAuthenticationManager` to use to authenticate this request.
|
97
|
+
*/
|
98
|
+
authentication?: IAuthenticationManager;
|
99
|
+
|
100
|
+
/**
|
101
|
+
* Base url for the portal you want to make the request to. Defaults to 'https://www.arcgis.com/sharing/rest'.
|
102
|
+
*/
|
103
|
+
portal?: string;
|
104
|
+
|
105
|
+
/**
|
106
|
+
* The implementation of `fetch` to use. Defaults to a global `fetch`.
|
107
|
+
*/
|
108
|
+
fetch?: (input: RequestInfo, init?: RequestInit) => Promise<Response>;
|
109
|
+
|
110
|
+
/**
|
111
|
+
* If the length of a GET request's URL exceeds `maxUrlLength` the request will use POST instead.
|
112
|
+
*/
|
113
|
+
maxUrlLength?: number;
|
114
|
+
}
|
115
|
+
|
116
|
+
/**
|
117
|
+
* Generic method for making HTTP requests to ArcGIS REST API endpoints.
|
118
|
+
*
|
119
|
+
* ```js
|
120
|
+
* import { request } from '@esri/arcgis-rest-request';
|
121
|
+
*
|
122
|
+
* request('https://www.arcgis.com/sharing/rest')
|
123
|
+
* .then((response) => {
|
124
|
+
* console.log(response.currentVersion); // => 5.2
|
125
|
+
* });
|
126
|
+
* ```
|
127
|
+
*
|
128
|
+
* ```js
|
129
|
+
* import { request, HTTPMethods } from '@esri/arcgis-rest-request';
|
130
|
+
*
|
131
|
+
* request('https://www.arcgis.com/sharing/rest', {
|
132
|
+
* httpMethod: "GET"
|
133
|
+
* }).then((response) => {
|
134
|
+
* console.log(response.currentVersion); // => 5.2
|
135
|
+
* });
|
136
|
+
* ```
|
137
|
+
*
|
138
|
+
* ```js
|
139
|
+
* import { request, HTTPMethods } from '@esri/arcgis-rest-request';
|
140
|
+
*
|
141
|
+
* request('https://www.arcgis.com/sharing/rest/search', {
|
142
|
+
* params: { q: 'parks' }
|
143
|
+
* }).then((response) => {
|
144
|
+
* console.log(response.total); // => 78379
|
145
|
+
* });
|
146
|
+
* ```
|
147
|
+
*
|
148
|
+
* @param url - The URL of the ArcGIS REST API endpoint.
|
149
|
+
* @param requestOptions - Options for the request, including parameters relevant to the endpoint.
|
150
|
+
* @returns A Promise that will resolve with the data from the response.
|
151
|
+
*/
|
152
|
+
export function request(
|
153
|
+
url: string,
|
154
|
+
requestOptions: IRequestOptions = { params: { f: "json" } }
|
155
|
+
): Promise<any> {
|
156
|
+
const options: IRequestOptions = {
|
157
|
+
httpMethod: "POST",
|
158
|
+
...requestOptions
|
159
|
+
};
|
160
|
+
|
161
|
+
const missingGlobals: string[] = [];
|
162
|
+
const recommendedPackages: string[] = [];
|
163
|
+
|
164
|
+
// don't check for a global fetch if a custom implementation was passed through
|
165
|
+
if (!options.fetch && typeof fetch !== "undefined") {
|
166
|
+
options.fetch = fetch.bind(Function("return this")());
|
167
|
+
} else {
|
168
|
+
missingGlobals.push("`fetch`");
|
169
|
+
recommendedPackages.push("`isomorphic-fetch`");
|
170
|
+
}
|
171
|
+
|
172
|
+
if (typeof Promise === "undefined") {
|
173
|
+
missingGlobals.push("`Promise`");
|
174
|
+
recommendedPackages.push("`es6-promise`");
|
175
|
+
}
|
176
|
+
|
177
|
+
if (typeof FormData === "undefined") {
|
178
|
+
missingGlobals.push("`FormData`");
|
179
|
+
recommendedPackages.push("`isomorphic-form-data`");
|
180
|
+
}
|
181
|
+
|
182
|
+
if (
|
183
|
+
!options.fetch ||
|
184
|
+
typeof Promise === "undefined" ||
|
185
|
+
typeof FormData === "undefined"
|
186
|
+
) {
|
187
|
+
throw new Error(
|
188
|
+
`\`arcgis-rest-request\` requires global variables for \`fetch\`, \`Promise\` and \`FormData\` to be present in the global scope. You are missing ${missingGlobals.join(
|
189
|
+
", "
|
190
|
+
)}. We recommend installing the ${recommendedPackages.join(
|
191
|
+
", "
|
192
|
+
)} modules at the root of your application to add these to the global scope. See https://bit.ly/2KNwWaJ for more info.`
|
193
|
+
);
|
194
|
+
}
|
195
|
+
|
196
|
+
const { httpMethod, authentication } = options;
|
197
|
+
|
198
|
+
const params: IParams = {
|
199
|
+
...{ f: "json" },
|
200
|
+
...requestOptions.params
|
201
|
+
};
|
202
|
+
|
203
|
+
const fetchOptions: RequestInit = {
|
204
|
+
method: httpMethod,
|
205
|
+
// ensures behavior mimics XMLHttpRequest. needed to support sending IWA cookies
|
206
|
+
credentials: "same-origin"
|
207
|
+
};
|
208
|
+
|
209
|
+
return (authentication
|
210
|
+
? authentication.getToken(url, {
|
211
|
+
fetch: options.fetch
|
212
|
+
})
|
213
|
+
: Promise.resolve("")
|
214
|
+
)
|
215
|
+
.then(token => {
|
216
|
+
if (token.length) {
|
217
|
+
params.token = token;
|
218
|
+
}
|
219
|
+
|
220
|
+
if (fetchOptions.method === "GET") {
|
221
|
+
// encode the parameters into the query string
|
222
|
+
const queryParams = encodeQueryString(params);
|
223
|
+
// dont append a '?' unless parameters are actually present
|
224
|
+
const urlWithQueryString =
|
225
|
+
queryParams === "" ? url : url + "?" + encodeQueryString(params);
|
226
|
+
|
227
|
+
if (
|
228
|
+
options.maxUrlLength &&
|
229
|
+
urlWithQueryString.length > options.maxUrlLength
|
230
|
+
) {
|
231
|
+
// the consumer specified a maximum length for URLs
|
232
|
+
// and this would exceed it, so use post instead
|
233
|
+
fetchOptions.method = "POST";
|
234
|
+
} else {
|
235
|
+
// just use GET
|
236
|
+
url = urlWithQueryString;
|
237
|
+
}
|
238
|
+
}
|
239
|
+
|
240
|
+
if (fetchOptions.method === "POST") {
|
241
|
+
fetchOptions.body = encodeFormData(params);
|
242
|
+
}
|
243
|
+
|
244
|
+
/* istanbul ignore else blob responses are difficult to make cross platform we will just have to trust the isomorphic fetch will do its job */
|
245
|
+
if (!requiresFormData(params)) {
|
246
|
+
fetchOptions.headers = {};
|
247
|
+
fetchOptions.headers["Content-Type"] =
|
248
|
+
"application/x-www-form-urlencoded";
|
249
|
+
}
|
250
|
+
|
251
|
+
return options.fetch(url, fetchOptions);
|
252
|
+
})
|
253
|
+
.then(response => {
|
254
|
+
if (!response.ok) {
|
255
|
+
// server responded w/ an actual error (404, 500, etc)
|
256
|
+
const { status, statusText } = response;
|
257
|
+
throw new ArcGISRequestError(
|
258
|
+
statusText,
|
259
|
+
`HTTP ${status}`,
|
260
|
+
response,
|
261
|
+
url,
|
262
|
+
options
|
263
|
+
);
|
264
|
+
}
|
265
|
+
switch (params.f) {
|
266
|
+
case "json":
|
267
|
+
return response.json();
|
268
|
+
case "geojson":
|
269
|
+
return response.json();
|
270
|
+
case "html":
|
271
|
+
return response.text();
|
272
|
+
case "text":
|
273
|
+
return response.text();
|
274
|
+
/* istanbul ignore next blob responses are difficult to make cross platform we will just have to trust the isomorphic fetch will do its job */
|
275
|
+
case "image":
|
276
|
+
return response.blob();
|
277
|
+
/* istanbul ignore next */
|
278
|
+
case "zip":
|
279
|
+
return response.blob();
|
280
|
+
/* istanbul ignore next */
|
281
|
+
default:
|
282
|
+
// hopefully we never need to handle JSON payloads when no f= parameter is set
|
283
|
+
return response.blob();
|
284
|
+
}
|
285
|
+
})
|
286
|
+
.then(data => {
|
287
|
+
if (params.f === "json" || params.f === "geojson") {
|
288
|
+
return checkForErrors(data, url, params, options);
|
289
|
+
} else {
|
290
|
+
return data;
|
291
|
+
}
|
292
|
+
});
|
293
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
/* Copyright (c) 2017 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { request, IRequestOptions, IAuthenticationManager } from "../request";
|
5
|
+
import { ArcGISRequestError } from "./ArcGISRequestError";
|
6
|
+
|
7
|
+
export type IRetryAuthError = (
|
8
|
+
url: string,
|
9
|
+
options: IRequestOptions
|
10
|
+
) => Promise<IAuthenticationManager>;
|
11
|
+
|
12
|
+
export class ArcGISAuthError extends ArcGISRequestError {
|
13
|
+
/**
|
14
|
+
* Create a new `ArcGISAuthError` object.
|
15
|
+
*
|
16
|
+
* @param message - The error message from the API
|
17
|
+
* @param code - The error code from the API
|
18
|
+
* @param response - The original response from the API that caused the error
|
19
|
+
* @param url - The original url of the request
|
20
|
+
* @param options - The original options of the request
|
21
|
+
*/
|
22
|
+
constructor(
|
23
|
+
message = "AUTHENTICATION_ERROR",
|
24
|
+
code: string | number = "AUTHENTICATION_ERROR_CODE",
|
25
|
+
response?: any,
|
26
|
+
url?: string,
|
27
|
+
options?: IRequestOptions
|
28
|
+
) {
|
29
|
+
super(message, code, response, url, options);
|
30
|
+
this.name = "ArcGISAuthError";
|
31
|
+
this.message =
|
32
|
+
code === "AUTHENTICATION_ERROR_CODE" ? message : `${code}: ${message}`;
|
33
|
+
}
|
34
|
+
|
35
|
+
retry(getSession: IRetryAuthError, retryLimit = 3) {
|
36
|
+
let tries = 0;
|
37
|
+
|
38
|
+
const retryRequest = (resolve: any, reject: any) => {
|
39
|
+
getSession(this.url, this.options)
|
40
|
+
.then(session => {
|
41
|
+
const newOptions = {
|
42
|
+
...this.options,
|
43
|
+
...{ authentication: session }
|
44
|
+
};
|
45
|
+
|
46
|
+
tries = tries + 1;
|
47
|
+
return request(this.url, newOptions);
|
48
|
+
})
|
49
|
+
.then(response => {
|
50
|
+
resolve(response);
|
51
|
+
})
|
52
|
+
.catch(e => {
|
53
|
+
if (e.name === "ArcGISAuthError" && tries < retryLimit) {
|
54
|
+
retryRequest(resolve, reject);
|
55
|
+
} else if (e.name === "ArcGISAuthError" && tries >= retryLimit) {
|
56
|
+
reject(this);
|
57
|
+
} else {
|
58
|
+
reject(e);
|
59
|
+
}
|
60
|
+
});
|
61
|
+
};
|
62
|
+
|
63
|
+
return new Promise((resolve, reject) => {
|
64
|
+
retryRequest(resolve, reject);
|
65
|
+
});
|
66
|
+
}
|
67
|
+
}
|
@@ -0,0 +1,76 @@
|
|
1
|
+
/* Copyright (c) 2017 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { IRequestOptions } from "../request";
|
5
|
+
|
6
|
+
// TypeScript 2.1 no longer allows you to extend built in types. See https://github.com/Microsoft/TypeScript/issues/12790#issuecomment-265981442
|
7
|
+
// and https://github.com/Microsoft/TypeScript-wiki/blob/master/Breaking-Changes.md#extending-built-ins-like-error-array-and-map-may-no-longer-work
|
8
|
+
//
|
9
|
+
// This code is from MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error#Custom_Error_Types.
|
10
|
+
export class ArcGISRequestError {
|
11
|
+
/**
|
12
|
+
* The name of this error. Will always be `"ArcGISRequestError"` to conform with the [`Error`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) class.
|
13
|
+
*/
|
14
|
+
name: string;
|
15
|
+
|
16
|
+
/**
|
17
|
+
* Formatted error message. See the [`Error`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) class for more details.
|
18
|
+
*/
|
19
|
+
message: string;
|
20
|
+
|
21
|
+
/**
|
22
|
+
* The errror message return from the request.
|
23
|
+
*/
|
24
|
+
originalMessage: string;
|
25
|
+
|
26
|
+
/**
|
27
|
+
* The error code returned from the request.
|
28
|
+
*/
|
29
|
+
code: string | number;
|
30
|
+
|
31
|
+
/**
|
32
|
+
* The original JSON response the caused the error.
|
33
|
+
*/
|
34
|
+
response: any;
|
35
|
+
|
36
|
+
/**
|
37
|
+
* The URL of the original request that caused the error
|
38
|
+
*/
|
39
|
+
url: string;
|
40
|
+
|
41
|
+
/**
|
42
|
+
* The options of the original request that caused the error
|
43
|
+
*/
|
44
|
+
options: IRequestOptions;
|
45
|
+
|
46
|
+
/**
|
47
|
+
* Create a new `ArcGISRequestError` object.
|
48
|
+
*
|
49
|
+
* @param message - The error message from the API
|
50
|
+
* @param code - The error code from the API
|
51
|
+
* @param response - The original response from the API that caused the error
|
52
|
+
* @param url - The original url of the request
|
53
|
+
* @param options - The original options and parameters of the request
|
54
|
+
*/
|
55
|
+
constructor(
|
56
|
+
message?: string,
|
57
|
+
code?: string | number,
|
58
|
+
response?: any,
|
59
|
+
url?: string,
|
60
|
+
options?: IRequestOptions
|
61
|
+
) {
|
62
|
+
message = message || "UNKNOWN_ERROR";
|
63
|
+
code = code || "UNKNOWN_ERROR_CODE";
|
64
|
+
|
65
|
+
this.name = "ArcGISRequestError";
|
66
|
+
this.message =
|
67
|
+
code === "UNKNOWN_ERROR_CODE" ? message : `${code}: ${message}`;
|
68
|
+
this.originalMessage = message;
|
69
|
+
this.code = code;
|
70
|
+
this.response = response;
|
71
|
+
this.url = url;
|
72
|
+
this.options = options;
|
73
|
+
}
|
74
|
+
}
|
75
|
+
ArcGISRequestError.prototype = Object.create(Error.prototype);
|
76
|
+
ArcGISRequestError.prototype.constructor = ArcGISRequestError;
|
@@ -0,0 +1,29 @@
|
|
1
|
+
/* Copyright (c) 2017 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
/**
|
5
|
+
* Enum describing the different errors that might be thrown by a request.
|
6
|
+
*
|
7
|
+
* ```ts
|
8
|
+
* import { request, ErrorTypes } from '@esri/arcgis-rest-request';
|
9
|
+
*
|
10
|
+
* request("...").catch((e) => {
|
11
|
+
* switch(e.name) {
|
12
|
+
* case ErrorType.ArcGISRequestError:
|
13
|
+
* // handle a general error from the API
|
14
|
+
* break;
|
15
|
+
*
|
16
|
+
* case ErrorType.ArcGISAuthError:
|
17
|
+
* // handle an authentication error
|
18
|
+
* break;
|
19
|
+
*
|
20
|
+
* default:
|
21
|
+
* // handle some other error (usually a network error)
|
22
|
+
* }
|
23
|
+
* });
|
24
|
+
* ```
|
25
|
+
*/
|
26
|
+
export enum ErrorTypes {
|
27
|
+
ArcGISRequestError = "ArcGISRequestError",
|
28
|
+
ArcGISAuthError = "ArcGISAuthError"
|
29
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
/* Copyright (c) 2017 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { ArcGISRequestError } from "./ArcGISRequestError";
|
5
|
+
import { ArcGISAuthError } from "./ArcGISAuthError";
|
6
|
+
import { IRequestOptions, IParams } from "../request";
|
7
|
+
/**
|
8
|
+
* Checks for errors in a JSON response from the ArcGIS REST API. If there are no errors, it will return the `data` passed in. If there is an error, it will throw an `ArcGISRequestError` or `ArcGISAuthError`.
|
9
|
+
*
|
10
|
+
* @param data The response JSON to check for errors.
|
11
|
+
* @param url The url of the original request
|
12
|
+
* @param params The parameters of the original request
|
13
|
+
* @param options The options of the original request
|
14
|
+
* @returns The data that was passed in the `data` parameter
|
15
|
+
*/
|
16
|
+
export function checkForErrors(
|
17
|
+
response: any,
|
18
|
+
url?: string,
|
19
|
+
params?: IParams,
|
20
|
+
options?: IRequestOptions
|
21
|
+
): any {
|
22
|
+
// this is an error message from billing.arcgis.com backend
|
23
|
+
if (response.code >= 400) {
|
24
|
+
const { message, code } = response;
|
25
|
+
throw new ArcGISRequestError(message, code, response, url, options);
|
26
|
+
}
|
27
|
+
|
28
|
+
// error from ArcGIS Online or an ArcGIS Portal or server instance.
|
29
|
+
if (response.error) {
|
30
|
+
const { message, code, messageCode } = response.error;
|
31
|
+
const errorCode = messageCode || code || "UNKNOWN_ERROR_CODE";
|
32
|
+
|
33
|
+
if (code === 498 || code === 499 || messageCode === "GWM_0003") {
|
34
|
+
throw new ArcGISAuthError(message, errorCode, response, url, options);
|
35
|
+
}
|
36
|
+
|
37
|
+
throw new ArcGISRequestError(message, errorCode, response, url, options);
|
38
|
+
}
|
39
|
+
|
40
|
+
// error from a status check
|
41
|
+
if (response.status === "failed" || response.status === "failure") {
|
42
|
+
let message: string;
|
43
|
+
let code: string = "UNKNOWN_ERROR_CODE";
|
44
|
+
|
45
|
+
try {
|
46
|
+
message = JSON.parse(response.statusMessage).message;
|
47
|
+
code = JSON.parse(response.statusMessage).code;
|
48
|
+
} catch (e) {
|
49
|
+
message = response.statusMessage || response.message;
|
50
|
+
}
|
51
|
+
|
52
|
+
throw new ArcGISRequestError(message, code, response, url, options);
|
53
|
+
}
|
54
|
+
|
55
|
+
return response;
|
56
|
+
}
|
57
|
+
|
58
|
+
/**
|
59
|
+
* Method used internally to surface messages to developers.
|
60
|
+
*/
|
61
|
+
export function warn(message: string) {
|
62
|
+
if (console && console.warn) {
|
63
|
+
console.warn.apply(console, [message]);
|
64
|
+
}
|
65
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
/* Copyright (c) 2017 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { processParams, requiresFormData } from "./process-params";
|
5
|
+
import { encodeQueryString } from "./encode-query-string";
|
6
|
+
/**
|
7
|
+
* Encodes parameters in a [FormData](https://developer.mozilla.org/en-US/docs/Web/API/FormData) object in browsers or in a [FormData](https://github.com/form-data/form-data) in Node.js
|
8
|
+
*
|
9
|
+
* @param params An object to be encoded.
|
10
|
+
* @returns The complete [FormData](https://developer.mozilla.org/en-US/docs/Web/API/FormData) object.
|
11
|
+
*/
|
12
|
+
export function encodeFormData(params: any): FormData | string {
|
13
|
+
const useFormData = requiresFormData(params);
|
14
|
+
const newParams = processParams(params);
|
15
|
+
if (useFormData) {
|
16
|
+
const formData = new FormData();
|
17
|
+
Object.keys(newParams).forEach((key: any) => {
|
18
|
+
if (typeof Blob !== "undefined" && newParams[key] instanceof Blob) {
|
19
|
+
/* To name the Blob:
|
20
|
+
1. look to an alternate request parameter called 'fileName'
|
21
|
+
2. see if 'name' has been tacked onto the Blob manually
|
22
|
+
3. if all else fails, use the request parameter
|
23
|
+
*/
|
24
|
+
const filename = newParams["fileName"] || newParams[key].name || key;
|
25
|
+
formData.append(key, newParams[key], filename);
|
26
|
+
} else {
|
27
|
+
formData.append(key, newParams[key]);
|
28
|
+
}
|
29
|
+
});
|
30
|
+
return formData;
|
31
|
+
} else {
|
32
|
+
return encodeQueryString(params);
|
33
|
+
}
|
34
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
/* Copyright (c) 2017 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { processParams } from "./process-params";
|
5
|
+
|
6
|
+
export function encodeParam(key: string, value: any) {
|
7
|
+
return encodeURIComponent(key) + "=" + encodeURIComponent(value);
|
8
|
+
}
|
9
|
+
|
10
|
+
/**
|
11
|
+
* Encodes the passed object as a query string.
|
12
|
+
*
|
13
|
+
* @param params An object to be encoded.
|
14
|
+
* @returns An encoded query string.
|
15
|
+
*/
|
16
|
+
export function encodeQueryString(params: any): string {
|
17
|
+
const newParams = processParams(params);
|
18
|
+
return Object.keys(newParams)
|
19
|
+
.map((key: any) => {
|
20
|
+
return encodeParam(key, newParams[key]);
|
21
|
+
})
|
22
|
+
.join("&");
|
23
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
/* Copyright (c) 2017 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
import { IRequestOptions } from "../request";
|
4
|
+
|
5
|
+
/**
|
6
|
+
* Helper that returns the appropriate portal url for a given request. `requestOptions.portal` is given
|
7
|
+
* precedence over `authentication.portal`. If neither are present, `www.arcgis.com/sharing/rest` is returned.
|
8
|
+
*
|
9
|
+
* @param requestOptions - Request options that may have authentication manager
|
10
|
+
* @returns Portal url to be used in API requests
|
11
|
+
*/
|
12
|
+
export function getPortalUrl(requestOptions: IRequestOptions = {}): string {
|
13
|
+
// use portal in options if specified
|
14
|
+
if (requestOptions.portal) {
|
15
|
+
return requestOptions.portal;
|
16
|
+
}
|
17
|
+
|
18
|
+
// if auth was passed, use that portal
|
19
|
+
if (requestOptions.authentication) {
|
20
|
+
return requestOptions.authentication.portal;
|
21
|
+
}
|
22
|
+
|
23
|
+
// default to arcgis.com
|
24
|
+
return "https://www.arcgis.com/sharing/rest";
|
25
|
+
}
|
@@ -0,0 +1,45 @@
|
|
1
|
+
/* Copyright (c) 2017 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { request, IRequestOptions } from "../request";
|
5
|
+
|
6
|
+
import { getPortalUrl } from "./get-portal-url";
|
7
|
+
|
8
|
+
export interface IPortal {
|
9
|
+
id: string;
|
10
|
+
isPortal: boolean;
|
11
|
+
name: string;
|
12
|
+
[key: string]: any;
|
13
|
+
}
|
14
|
+
|
15
|
+
/**
|
16
|
+
* Get the portal
|
17
|
+
* @param requestOptions
|
18
|
+
*/
|
19
|
+
export function getSelf(requestOptions?: IRequestOptions): Promise<IPortal> {
|
20
|
+
// just delegate to getPortal w/o an id
|
21
|
+
return getPortal(null, requestOptions);
|
22
|
+
}
|
23
|
+
|
24
|
+
/**
|
25
|
+
* Get a portal by id. If no id is passed, it will call portals/self
|
26
|
+
* @param id
|
27
|
+
* @param requestOptions
|
28
|
+
*/
|
29
|
+
export function getPortal(
|
30
|
+
id?: string,
|
31
|
+
requestOptions?: IRequestOptions
|
32
|
+
): Promise<IPortal> {
|
33
|
+
// construct the search url
|
34
|
+
const idOrSelf = id ? id : "self";
|
35
|
+
const url = `${getPortalUrl(requestOptions)}/portals/${idOrSelf}`;
|
36
|
+
|
37
|
+
// default to a GET request
|
38
|
+
const options: IRequestOptions = {
|
39
|
+
...{ httpMethod: "GET" },
|
40
|
+
...requestOptions
|
41
|
+
};
|
42
|
+
|
43
|
+
// send the request
|
44
|
+
return request(url, options);
|
45
|
+
}
|