impeditmaiores 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 +35 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/codecov.yml +7 -0
- package/demos/ago-node-cli/README.md +29 -0
- package/demos/ago-node-cli/ago.js +33 -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 +152 -0
- package/demos/ago-node-cli/package.json +30 -0
- package/demos/attachments/README.md +5 -0
- package/demos/attachments/index.html +165 -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 +115 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package-lock.json +81 -0
- package/demos/batch-geocoder-node/package.json +37 -0
- package/demos/express/README.md +15 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package-lock.json +413 -0
- package/demos/express/package.json +18 -0
- package/demos/express/server.js +33 -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 +25 -0
- package/demos/jsapi-integration/config.js +6 -0
- package/demos/jsapi-integration/index.html +89 -0
- package/demos/jsapi-integration/package-lock.json +184 -0
- package/demos/jsapi-integration/package.json +19 -0
- package/demos/node-cli-item-management/README.md +10 -0
- package/demos/node-cli-item-management/index.js +238 -0
- package/demos/node-cli-item-management/package-lock.json +152 -0
- package/demos/node-cli-item-management/package.json +27 -0
- package/demos/node-cli-item-management/screenshot.png +0 -0
- package/demos/oauth2-browser/README.md +14 -0
- package/demos/oauth2-browser/authenticate.html +30 -0
- package/demos/oauth2-browser/config.js.template +6 -0
- package/demos/oauth2-browser/index.html +211 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package-lock.json +224 -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 +22 -0
- package/demos/oauth2-browser-retry/index.html +116 -0
- package/demos/oauth2-browser-retry/logo.svg +4 -0
- package/demos/stream-response-to-file/README.md +7 -0
- package/demos/stream-response-to-file/index.js +36 -0
- package/demos/stream-response-to-file/output/.gitkeep +0 -0
- package/demos/stream-response-to-file/package-lock.json +60 -0
- package/demos/stream-response-to-file/package.json +33 -0
- package/demos/tree-shaking-rollup/.babelrc +3 -0
- package/demos/tree-shaking-rollup/README.md +9 -0
- package/demos/tree-shaking-rollup/index.html +11 -0
- package/demos/tree-shaking-rollup/package-lock.json +2225 -0
- package/demos/tree-shaking-rollup/package.json +25 -0
- package/demos/tree-shaking-rollup/rollup.config.js +17 -0
- package/demos/tree-shaking-rollup/src/index.js +8 -0
- package/demos/tree-shaking-webpack/README.md +8 -0
- package/demos/tree-shaking-webpack/index.html +11 -0
- package/demos/tree-shaking-webpack/package-lock.json +4614 -0
- package/demos/tree-shaking-webpack/package.json +24 -0
- package/demos/tree-shaking-webpack/src/index.js +10 -0
- package/demos/tree-shaking-webpack/webpack.config.js +27 -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 +11342 -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 +305 -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/demos/webmap-checker-sapper/.env.example +5 -0
- package/demos/webmap-checker-sapper/README.md +123 -0
- package/demos/webmap-checker-sapper/appveyor.yml +18 -0
- package/demos/webmap-checker-sapper/cypress/fixtures/example.json +5 -0
- package/demos/webmap-checker-sapper/cypress/integration/spec.js +19 -0
- package/demos/webmap-checker-sapper/cypress/plugins/index.js +17 -0
- package/demos/webmap-checker-sapper/cypress/support/commands.js +25 -0
- package/demos/webmap-checker-sapper/cypress/support/index.js +20 -0
- package/demos/webmap-checker-sapper/cypress.json +4 -0
- package/demos/webmap-checker-sapper/package-lock.json +3870 -0
- package/demos/webmap-checker-sapper/package.json +50 -0
- package/demos/webmap-checker-sapper/rollup.config.js +87 -0
- package/demos/webmap-checker-sapper/src/client.js +20 -0
- package/demos/webmap-checker-sapper/src/components/LayerStatus.html +108 -0
- package/demos/webmap-checker-sapper/src/components/Nav.html +21 -0
- package/demos/webmap-checker-sapper/src/components/WebMap.html +62 -0
- package/demos/webmap-checker-sapper/src/routes/_error.html +41 -0
- package/demos/webmap-checker-sapper/src/routes/_layout.html +21 -0
- package/demos/webmap-checker-sapper/src/routes/auth/authorize.js +18 -0
- package/demos/webmap-checker-sapper/src/routes/auth/exchange-token.js +20 -0
- package/demos/webmap-checker-sapper/src/routes/auth/post-sign-in.js +24 -0
- package/demos/webmap-checker-sapper/src/routes/auth/sign-out.js +10 -0
- package/demos/webmap-checker-sapper/src/routes/index.html +20 -0
- package/demos/webmap-checker-sapper/src/routes/webmaps/[webmapId].html +83 -0
- package/demos/webmap-checker-sapper/src/routes/webmaps/index.html +59 -0
- package/demos/webmap-checker-sapper/src/server.js +101 -0
- package/demos/webmap-checker-sapper/src/service-worker.js +82 -0
- package/demos/webmap-checker-sapper/src/template.html +33 -0
- package/demos/webmap-checker-sapper/src/userInfoMiddleware.js +21 -0
- package/demos/webmap-checker-sapper/src/utils.js +33 -0
- package/demos/webmap-checker-sapper/static/favicon.png +0 -0
- package/demos/webmap-checker-sapper/static/global.css +36 -0
- package/demos/webmap-checker-sapper/static/manifest.json +20 -0
- package/demos/webmap-checker-sapper/static/svelte-logo-192.png +0 -0
- package/demos/webmap-checker-sapper/static/svelte-logo-512.png +0 -0
- package/docs/FAQ.md +48 -0
- package/docs/HISTORY.md +62 -0
- package/docs/acetate.config.js +262 -0
- package/docs/build-typedoc.js +434 -0
- package/docs/generate-srihashes.js +53 -0
- package/docs/src/_layout.html +86 -0
- package/docs/src/api/_declaration.html +600 -0
- package/docs/src/api/_layout.html +204 -0
- package/docs/src/api/_package.html +38 -0
- package/docs/src/api/index.html +16 -0
- package/docs/src/guides/_layout.html +24 -0
- package/docs/src/guides/amd-requirejs-dojo.md +40 -0
- package/docs/src/guides/browser-authentication.md +41 -0
- package/docs/src/guides/bundlers.md +52 -0
- package/docs/src/guides/cli-authentication.md +9 -0
- package/docs/src/guides/client-server-authentication.md +9 -0
- package/docs/src/guides/embedded-apps.md +93 -0
- package/docs/src/guides/from-a-cdn.md +38 -0
- package/docs/src/guides/index.md +59 -0
- package/docs/src/guides/node.md +87 -0
- package/docs/src/guides/package-overview.md +111 -0
- package/docs/src/guides/server-authentication.md +9 -0
- package/docs/src/guides/whats-new-v2-0.md +305 -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 +242 -0
- package/docs/src/srihashes.json +12 -0
- package/jasmine.json +7 -0
- package/karma.conf.js +106 -0
- package/lerna.json +8 -0
- package/notes/README.md +68 -0
- package/package.json +87 -0
- package/packages/arcgis-rest-auth/README.md +71 -0
- package/packages/arcgis-rest-auth/package-lock.json +11 -0
- package/packages/arcgis-rest-auth/package.json +69 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +122 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +1206 -0
- package/packages/arcgis-rest-auth/src/app-tokens.ts +91 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -0
- package/packages/arcgis-rest-auth/src/federation-utils.ts +85 -0
- package/packages/arcgis-rest-auth/src/fetch-token.ts +50 -0
- package/packages/arcgis-rest-auth/src/generate-token.ts +35 -0
- package/packages/arcgis-rest-auth/src/index.ts +9 -0
- package/packages/arcgis-rest-auth/src/validate-app-access.ts +68 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +1807 -0
- package/packages/arcgis-rest-auth/test/app-tokens.test.ts +91 -0
- package/packages/arcgis-rest-auth/test/federation-utils.test.ts +323 -0
- package/packages/arcgis-rest-auth/test/fetchToken.test.ts +112 -0
- package/packages/arcgis-rest-auth/test/generateToken.test.ts +102 -0
- package/packages/arcgis-rest-auth/test/utils.ts +14 -0
- package/packages/arcgis-rest-auth/test/validate-app-access.test.ts +46 -0
- package/packages/arcgis-rest-auth/tsconfig.json +6 -0
- package/packages/arcgis-rest-feature-layer/README.md +77 -0
- package/packages/arcgis-rest-feature-layer/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-layer/package.json +64 -0
- package/packages/arcgis-rest-feature-layer/src/add.ts +56 -0
- package/packages/arcgis-rest-feature-layer/src/addAttachment.ts +53 -0
- package/packages/arcgis-rest-feature-layer/src/applyEdits.ts +90 -0
- package/packages/arcgis-rest-feature-layer/src/decodeValues.ts +124 -0
- package/packages/arcgis-rest-feature-layer/src/delete.ts +61 -0
- package/packages/arcgis-rest-feature-layer/src/deleteAttachments.ts +52 -0
- package/packages/arcgis-rest-feature-layer/src/getAttachments.ts +55 -0
- package/packages/arcgis-rest-feature-layer/src/getLayer.ts +24 -0
- package/packages/arcgis-rest-feature-layer/src/getService.ts +26 -0
- package/packages/arcgis-rest-feature-layer/src/helpers.ts +79 -0
- package/packages/arcgis-rest-feature-layer/src/index.ts +31 -0
- package/packages/arcgis-rest-feature-layer/src/query.ts +204 -0
- package/packages/arcgis-rest-feature-layer/src/queryRelated.ts +89 -0
- package/packages/arcgis-rest-feature-layer/src/update.ts +56 -0
- package/packages/arcgis-rest-feature-layer/src/updateAttachment.ts +59 -0
- package/packages/arcgis-rest-feature-layer/test/attachments.test.ts +200 -0
- package/packages/arcgis-rest-feature-layer/test/crud.test.ts +195 -0
- package/packages/arcgis-rest-feature-layer/test/decodeValues.test.ts +67 -0
- package/packages/arcgis-rest-feature-layer/test/getLayer.test.ts +31 -0
- package/packages/arcgis-rest-feature-layer/test/getService.test.ts +31 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/cvdQueryResponse.ts +225 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/feature.ts +302 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/fields.ts +779 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/foo.txt +1 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/service.ts +398 -0
- package/packages/arcgis-rest-feature-layer/test/query.test.ts +167 -0
- package/packages/arcgis-rest-feature-layer/tsconfig.json +6 -0
- package/packages/arcgis-rest-geocoding/README.md +86 -0
- package/packages/arcgis-rest-geocoding/package-lock.json +11 -0
- package/packages/arcgis-rest-geocoding/package.json +64 -0
- package/packages/arcgis-rest-geocoding/src/bulk.ts +104 -0
- package/packages/arcgis-rest-geocoding/src/geocode.ts +133 -0
- package/packages/arcgis-rest-geocoding/src/helpers.ts +54 -0
- package/packages/arcgis-rest-geocoding/src/index.ts +15 -0
- package/packages/arcgis-rest-geocoding/src/reverse.ts +84 -0
- package/packages/arcgis-rest-geocoding/src/suggest.ts +45 -0
- package/packages/arcgis-rest-geocoding/test/bulk.test.ts +194 -0
- package/packages/arcgis-rest-geocoding/test/geocode.test.ts +249 -0
- package/packages/arcgis-rest-geocoding/test/helpers.test.ts +85 -0
- package/packages/arcgis-rest-geocoding/test/mocks/responses.ts +637 -0
- package/packages/arcgis-rest-geocoding/test/reverse.test.ts +126 -0
- package/packages/arcgis-rest-geocoding/test/suggest.test.ts +53 -0
- package/packages/arcgis-rest-geocoding/tsconfig.json +6 -0
- package/packages/arcgis-rest-portal/README.md +73 -0
- package/packages/arcgis-rest-portal/package-lock.json +11 -0
- package/packages/arcgis-rest-portal/package.json +64 -0
- package/packages/arcgis-rest-portal/src/groups/add-users.ts +140 -0
- package/packages/arcgis-rest-portal/src/groups/create.ts +43 -0
- package/packages/arcgis-rest-portal/src/groups/get.ts +184 -0
- package/packages/arcgis-rest-portal/src/groups/helpers.ts +14 -0
- package/packages/arcgis-rest-portal/src/groups/invite-users.ts +127 -0
- package/packages/arcgis-rest-portal/src/groups/join.ts +57 -0
- package/packages/arcgis-rest-portal/src/groups/notification.ts +77 -0
- package/packages/arcgis-rest-portal/src/groups/protect.ts +56 -0
- package/packages/arcgis-rest-portal/src/groups/remove-users.ts +76 -0
- package/packages/arcgis-rest-portal/src/groups/remove.ts +32 -0
- package/packages/arcgis-rest-portal/src/groups/search.ts +47 -0
- package/packages/arcgis-rest-portal/src/groups/update-user-membership.ts +63 -0
- package/packages/arcgis-rest-portal/src/groups/update.ts +39 -0
- package/packages/arcgis-rest-portal/src/index.ts +66 -0
- package/packages/arcgis-rest-portal/src/items/add.ts +138 -0
- package/packages/arcgis-rest-portal/src/items/content.ts +67 -0
- package/packages/arcgis-rest-portal/src/items/create.ts +150 -0
- package/packages/arcgis-rest-portal/src/items/export.ts +80 -0
- package/packages/arcgis-rest-portal/src/items/get.ts +437 -0
- package/packages/arcgis-rest-portal/src/items/helpers.ts +275 -0
- package/packages/arcgis-rest-portal/src/items/protect.ts +41 -0
- package/packages/arcgis-rest-portal/src/items/reassign.ts +61 -0
- package/packages/arcgis-rest-portal/src/items/remove.ts +135 -0
- package/packages/arcgis-rest-portal/src/items/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/items/update.ts +184 -0
- package/packages/arcgis-rest-portal/src/items/upload.ts +125 -0
- package/packages/arcgis-rest-portal/src/orgs/notification.ts +131 -0
- package/packages/arcgis-rest-portal/src/sharing/access.ts +84 -0
- package/packages/arcgis-rest-portal/src/sharing/helpers.ts +81 -0
- package/packages/arcgis-rest-portal/src/sharing/is-item-shared-with-group.ts +42 -0
- package/packages/arcgis-rest-portal/src/sharing/share-item-with-group.ts +319 -0
- package/packages/arcgis-rest-portal/src/sharing/unshare-item-with-group.ts +105 -0
- package/packages/arcgis-rest-portal/src/users/get-user-tags.ts +52 -0
- package/packages/arcgis-rest-portal/src/users/get-user-url.ts +18 -0
- package/packages/arcgis-rest-portal/src/users/get-user.ts +58 -0
- package/packages/arcgis-rest-portal/src/users/invitation.ts +156 -0
- package/packages/arcgis-rest-portal/src/users/notification.ts +68 -0
- package/packages/arcgis-rest-portal/src/users/search-users.ts +37 -0
- package/packages/arcgis-rest-portal/src/users/update.ts +66 -0
- package/packages/arcgis-rest-portal/src/util/SearchQueryBuilder.ts +374 -0
- package/packages/arcgis-rest-portal/src/util/array.ts +16 -0
- package/packages/arcgis-rest-portal/src/util/generic-search.ts +99 -0
- package/packages/arcgis-rest-portal/src/util/get-portal-settings.ts +45 -0
- package/packages/arcgis-rest-portal/src/util/get-portal-url.ts +27 -0
- package/packages/arcgis-rest-portal/src/util/get-portal.ts +52 -0
- package/packages/arcgis-rest-portal/src/util/get-subscription-info.ts +43 -0
- package/packages/arcgis-rest-portal/src/util/scrub-control-chars.ts +12 -0
- package/packages/arcgis-rest-portal/src/util/search.ts +42 -0
- package/packages/arcgis-rest-portal/test/groups/add-users.test.ts +239 -0
- package/packages/arcgis-rest-portal/test/groups/crud.test.ts +180 -0
- package/packages/arcgis-rest-portal/test/groups/get.test.ts +176 -0
- package/packages/arcgis-rest-portal/test/groups/invite-users.test.ts +149 -0
- package/packages/arcgis-rest-portal/test/groups/join.test.ts +72 -0
- package/packages/arcgis-rest-portal/test/groups/notification.test.ts +112 -0
- package/packages/arcgis-rest-portal/test/groups/protect.test.ts +72 -0
- package/packages/arcgis-rest-portal/test/groups/remove-users.test.ts +140 -0
- package/packages/arcgis-rest-portal/test/groups/search.test.ts +151 -0
- package/packages/arcgis-rest-portal/test/groups/update-user-membership.test.ts +62 -0
- package/packages/arcgis-rest-portal/test/items/add.test.ts +323 -0
- package/packages/arcgis-rest-portal/test/items/content.test.ts +156 -0
- package/packages/arcgis-rest-portal/test/items/create.test.ts +399 -0
- package/packages/arcgis-rest-portal/test/items/export.test.ts +122 -0
- package/packages/arcgis-rest-portal/test/items/get.test.ts +583 -0
- package/packages/arcgis-rest-portal/test/items/helpers.test.ts +60 -0
- package/packages/arcgis-rest-portal/test/items/protect.test.ts +122 -0
- package/packages/arcgis-rest-portal/test/items/reassign.test.ts +131 -0
- package/packages/arcgis-rest-portal/test/items/remove.test.ts +238 -0
- package/packages/arcgis-rest-portal/test/items/search.test.ts +272 -0
- package/packages/arcgis-rest-portal/test/items/update.test.ts +554 -0
- package/packages/arcgis-rest-portal/test/items/upload.test.ts +282 -0
- package/packages/arcgis-rest-portal/test/mocks/groups/responses.ts +208 -0
- package/packages/arcgis-rest-portal/test/mocks/items/foo.zip +0 -0
- package/packages/arcgis-rest-portal/test/mocks/items/item.ts +526 -0
- package/packages/arcgis-rest-portal/test/mocks/items/resources.ts +38 -0
- package/packages/arcgis-rest-portal/test/mocks/items/search.ts +121 -0
- package/packages/arcgis-rest-portal/test/mocks/portal/response.ts +126 -0
- package/packages/arcgis-rest-portal/test/mocks/portal/settings-response.ts +56 -0
- package/packages/arcgis-rest-portal/test/mocks/sharing/sharing.ts +18 -0
- package/packages/arcgis-rest-portal/test/mocks/users/invitation.ts +70 -0
- package/packages/arcgis-rest-portal/test/mocks/users/notification.ts +34 -0
- package/packages/arcgis-rest-portal/test/mocks/users/user-search.ts +388 -0
- package/packages/arcgis-rest-portal/test/mocks/users/user-tags.ts +5 -0
- package/packages/arcgis-rest-portal/test/mocks/users/user.ts +174 -0
- package/packages/arcgis-rest-portal/test/orgs/notification.test.ts +142 -0
- package/packages/arcgis-rest-portal/test/sharing/access.test.ts +162 -0
- package/packages/arcgis-rest-portal/test/sharing/helpers.test.ts +55 -0
- package/packages/arcgis-rest-portal/test/sharing/share-item-with-group.test.ts +1325 -0
- package/packages/arcgis-rest-portal/test/sharing/unshare-item-with-group.test.ts +288 -0
- package/packages/arcgis-rest-portal/test/users/get-user-tags.test.ts +71 -0
- package/packages/arcgis-rest-portal/test/users/get-user-url.test.ts +40 -0
- package/packages/arcgis-rest-portal/test/users/get-user.test.ts +90 -0
- package/packages/arcgis-rest-portal/test/users/invitation.test.ts +127 -0
- package/packages/arcgis-rest-portal/test/users/notification.test.ts +77 -0
- package/packages/arcgis-rest-portal/test/users/search.test.ts +42 -0
- package/packages/arcgis-rest-portal/test/users/update.test.ts +151 -0
- package/packages/arcgis-rest-portal/test/util/SearchQueryBuilder.test.ts +340 -0
- package/packages/arcgis-rest-portal/test/util/array.test.ts +30 -0
- package/packages/arcgis-rest-portal/test/util/get-portal-settings.test.ts +68 -0
- package/packages/arcgis-rest-portal/test/util/get-portal-url.test.ts +37 -0
- package/packages/arcgis-rest-portal/test/util/portal.test.ts +148 -0
- package/packages/arcgis-rest-portal/test/util/scrub-control-chars.test.ts +22 -0
- package/packages/arcgis-rest-portal/tsconfig.json +6 -0
- package/packages/arcgis-rest-request/README.md +72 -0
- package/packages/arcgis-rest-request/package-lock.json +11 -0
- package/packages/arcgis-rest-request/package.json +60 -0
- package/packages/arcgis-rest-request/src/index.ts +25 -0
- package/packages/arcgis-rest-request/src/request.ts +413 -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/GrantTypes.ts +5 -0
- package/packages/arcgis-rest-request/src/utils/HTTPMethods.ts +6 -0
- package/packages/arcgis-rest-request/src/utils/IAuthenticationManager.ts +21 -0
- package/packages/arcgis-rest-request/src/utils/IFetchTokenParams.ts +11 -0
- package/packages/arcgis-rest-request/src/utils/IGenerateTokenParams.ts +9 -0
- package/packages/arcgis-rest-request/src/utils/IParamBuilder.ts +3 -0
- package/packages/arcgis-rest-request/src/utils/IParams.ts +6 -0
- package/packages/arcgis-rest-request/src/utils/IParamsBuilder.ts +5 -0
- package/packages/arcgis-rest-request/src/utils/IRequestOptions.ts +49 -0
- package/packages/arcgis-rest-request/src/utils/ITokenRequestOptions.ts +9 -0
- package/packages/arcgis-rest-request/src/utils/ResponseFormats.ts +10 -0
- package/packages/arcgis-rest-request/src/utils/append-custom-params.ts +49 -0
- package/packages/arcgis-rest-request/src/utils/clean-url.ts +20 -0
- package/packages/arcgis-rest-request/src/utils/decode-query-string.ts +27 -0
- package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +38 -0
- package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +35 -0
- package/packages/arcgis-rest-request/src/utils/process-params.ts +108 -0
- package/packages/arcgis-rest-request/src/utils/retryAuthError.ts +10 -0
- package/packages/arcgis-rest-request/src/utils/warn.ts +11 -0
- package/packages/arcgis-rest-request/src/utils/with-options.ts +48 -0
- package/packages/arcgis-rest-request/test/mocks/errors.ts +76 -0
- package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +13 -0
- package/packages/arcgis-rest-request/test/mocks/param-builder.ts +7 -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 +571 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +191 -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/clean-url.test.ts +50 -0
- package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
- package/packages/arcgis-rest-request/test/utils/encode-query-string.test.ts +18 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +205 -0
- package/packages/arcgis-rest-request/test/utils/with-options.test.ts +133 -0
- package/packages/arcgis-rest-request/tsconfig.json +4 -0
- package/packages/arcgis-rest-routing/README.md +75 -0
- package/packages/arcgis-rest-routing/package-lock.json +11 -0
- package/packages/arcgis-rest-routing/package.json +63 -0
- package/packages/arcgis-rest-routing/src/helpers.ts +16 -0
- package/packages/arcgis-rest-routing/src/index.ts +11 -0
- package/packages/arcgis-rest-routing/src/solveRoute.ts +124 -0
- package/packages/arcgis-rest-routing/test/mocks/responses.ts +825 -0
- package/packages/arcgis-rest-routing/test/solveRoute.test.ts +509 -0
- package/packages/arcgis-rest-routing/tsconfig.json +6 -0
- package/packages/arcgis-rest-service-admin/README.md +73 -0
- package/packages/arcgis-rest-service-admin/package-lock.json +11 -0
- package/packages/arcgis-rest-service-admin/package.json +65 -0
- package/packages/arcgis-rest-service-admin/src/addTo.ts +70 -0
- package/packages/arcgis-rest-service-admin/src/create.ts +189 -0
- package/packages/arcgis-rest-service-admin/src/index.ts +11 -0
- package/packages/arcgis-rest-service-admin/src/update.ts +50 -0
- package/packages/arcgis-rest-service-admin/test/addTo.test.ts +350 -0
- package/packages/arcgis-rest-service-admin/test/create.test.ts +294 -0
- package/packages/arcgis-rest-service-admin/test/mocks/layerDefinition.ts +79 -0
- package/packages/arcgis-rest-service-admin/test/mocks/service.ts +81 -0
- package/packages/arcgis-rest-service-admin/test/update.test.ts +115 -0
- package/packages/arcgis-rest-service-admin/tsconfig.json +6 -0
- package/packages/arcgis-rest-types/README.md +66 -0
- package/packages/arcgis-rest-types/package.json +54 -0
- package/packages/arcgis-rest-types/src/feature.ts +39 -0
- package/packages/arcgis-rest-types/src/geometry.ts +272 -0
- package/packages/arcgis-rest-types/src/group.ts +72 -0
- package/packages/arcgis-rest-types/src/index.ts +9 -0
- package/packages/arcgis-rest-types/src/item.ts +81 -0
- package/packages/arcgis-rest-types/src/service.ts +114 -0
- package/packages/arcgis-rest-types/src/statisticDefinition.ts +33 -0
- package/packages/arcgis-rest-types/src/symbol.ts +170 -0
- package/packages/arcgis-rest-types/src/user.ts +49 -0
- package/packages/arcgis-rest-types/src/webmap.ts +1367 -0
- package/packages/arcgis-rest-types/tsconfig.json +10 -0
- package/support/changelog.js +393 -0
- package/support/deploy-doc-site.js +16 -0
- package/support/dev.sh +6 -0
- package/support/publish.sh +47 -0
- package/support/test-helpers.js +9 -0
- package/tsconfig.json +63 -0
- package/tslint.json +16 -0
- package/umd-base-profile.js +81 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,224 @@
|
|
1
|
+
{
|
2
|
+
"name": "@esri/arcgis-rest-demo-vanilla",
|
3
|
+
"version": "2.11.0",
|
4
|
+
"lockfileVersion": 1,
|
5
|
+
"requires": true,
|
6
|
+
"dependencies": {
|
7
|
+
"@esri/arcgis-rest-auth": {
|
8
|
+
"version": "2.11.0",
|
9
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-auth/-/arcgis-rest-auth-2.11.0.tgz",
|
10
|
+
"integrity": "sha512-T4OnGmw5OIOEx9N0y1HeIpyU8cNc/UZKSwPWiH9yt8i2CNko5FS7F3uO4VoLgmarrVnc3v59FpT1ZctwIuTKeA==",
|
11
|
+
"requires": {
|
12
|
+
"@esri/arcgis-rest-types": "^2.11.0",
|
13
|
+
"tslib": "^1.9.3"
|
14
|
+
}
|
15
|
+
},
|
16
|
+
"@esri/arcgis-rest-portal": {
|
17
|
+
"version": "2.11.0",
|
18
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-portal/-/arcgis-rest-portal-2.11.0.tgz",
|
19
|
+
"integrity": "sha512-bqs8TYkqZvtH7RbQy8F6Qk5K2EmQb1lTrS0KZ3snOdyeUYhV+DR7QEw1chiTtNRVoeZwX3hB0xTz8E67Ddmi1A==",
|
20
|
+
"requires": {
|
21
|
+
"@esri/arcgis-rest-types": "^2.11.0",
|
22
|
+
"tslib": "^1.9.3"
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"@esri/arcgis-rest-request": {
|
26
|
+
"version": "2.11.0",
|
27
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-request/-/arcgis-rest-request-2.11.0.tgz",
|
28
|
+
"integrity": "sha512-cIot16FUYc0coR2cSRTxqsOsfUZOL9U9br1PlCB+T95/HbCDJrL4dnA19wdiXLIfPunt1Xr7yr547PYPAZXU3w==",
|
29
|
+
"requires": {
|
30
|
+
"tslib": "^1.9.3"
|
31
|
+
}
|
32
|
+
},
|
33
|
+
"@esri/arcgis-rest-types": {
|
34
|
+
"version": "2.11.0",
|
35
|
+
"resolved": "https://registry.npmjs.org/@esri/arcgis-rest-types/-/arcgis-rest-types-2.11.0.tgz",
|
36
|
+
"integrity": "sha512-4rbvFWxXHgJO/ePYdQ6razw7D8xU8ktVwJ8Fhk58GoRJr+5R99i/YtmGunk/TAEAssssaAt11W5WoQqVNoEAMA=="
|
37
|
+
},
|
38
|
+
"async": {
|
39
|
+
"version": "1.5.2",
|
40
|
+
"resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
|
41
|
+
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
|
42
|
+
"dev": true
|
43
|
+
},
|
44
|
+
"colors": {
|
45
|
+
"version": "1.0.3",
|
46
|
+
"resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
|
47
|
+
"integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=",
|
48
|
+
"dev": true
|
49
|
+
},
|
50
|
+
"corser": {
|
51
|
+
"version": "2.0.1",
|
52
|
+
"resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz",
|
53
|
+
"integrity": "sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c=",
|
54
|
+
"dev": true
|
55
|
+
},
|
56
|
+
"debug": {
|
57
|
+
"version": "2.6.8",
|
58
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz",
|
59
|
+
"integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=",
|
60
|
+
"dev": true,
|
61
|
+
"requires": {
|
62
|
+
"ms": "2.0.0"
|
63
|
+
}
|
64
|
+
},
|
65
|
+
"ecstatic": {
|
66
|
+
"version": "2.2.1",
|
67
|
+
"resolved": "https://registry.npmjs.org/ecstatic/-/ecstatic-2.2.1.tgz",
|
68
|
+
"integrity": "sha512-ztE4WqheoWLh3wv+HQwy7dACnvNY620coWpa+XqY6R2cVWgaAT2lUISU1Uf7JpdLLJCURktJOaA9av2AOzsyYQ==",
|
69
|
+
"dev": true,
|
70
|
+
"requires": {
|
71
|
+
"he": "^1.1.1",
|
72
|
+
"mime": "^1.2.11",
|
73
|
+
"minimist": "^1.1.0",
|
74
|
+
"url-join": "^2.0.2"
|
75
|
+
}
|
76
|
+
},
|
77
|
+
"eventemitter3": {
|
78
|
+
"version": "1.2.0",
|
79
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz",
|
80
|
+
"integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg=",
|
81
|
+
"dev": true
|
82
|
+
},
|
83
|
+
"he": {
|
84
|
+
"version": "1.1.1",
|
85
|
+
"resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz",
|
86
|
+
"integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=",
|
87
|
+
"dev": true
|
88
|
+
},
|
89
|
+
"http-proxy": {
|
90
|
+
"version": "1.16.2",
|
91
|
+
"resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz",
|
92
|
+
"integrity": "sha1-Bt/ykpUr9k2+hHH6nfcwZtTzd0I=",
|
93
|
+
"dev": true,
|
94
|
+
"requires": {
|
95
|
+
"eventemitter3": "1.x.x",
|
96
|
+
"requires-port": "1.x.x"
|
97
|
+
}
|
98
|
+
},
|
99
|
+
"http-server": {
|
100
|
+
"version": "0.10.0",
|
101
|
+
"resolved": "https://registry.npmjs.org/http-server/-/http-server-0.10.0.tgz",
|
102
|
+
"integrity": "sha1-sqRGsWqduH7TxiK6m+sbCFsSNKc=",
|
103
|
+
"dev": true,
|
104
|
+
"requires": {
|
105
|
+
"colors": "1.0.3",
|
106
|
+
"corser": "~2.0.0",
|
107
|
+
"ecstatic": "^2.0.0",
|
108
|
+
"http-proxy": "^1.8.1",
|
109
|
+
"opener": "~1.4.0",
|
110
|
+
"optimist": "0.6.x",
|
111
|
+
"portfinder": "^1.0.13",
|
112
|
+
"union": "~0.4.3"
|
113
|
+
}
|
114
|
+
},
|
115
|
+
"mime": {
|
116
|
+
"version": "1.3.6",
|
117
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz",
|
118
|
+
"integrity": "sha1-WR2E02U6awtKO5343lqoEI5y5eA=",
|
119
|
+
"dev": true
|
120
|
+
},
|
121
|
+
"minimist": {
|
122
|
+
"version": "1.2.0",
|
123
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
|
124
|
+
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
|
125
|
+
"dev": true
|
126
|
+
},
|
127
|
+
"mkdirp": {
|
128
|
+
"version": "0.5.1",
|
129
|
+
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
130
|
+
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
131
|
+
"dev": true,
|
132
|
+
"requires": {
|
133
|
+
"minimist": "0.0.8"
|
134
|
+
},
|
135
|
+
"dependencies": {
|
136
|
+
"minimist": {
|
137
|
+
"version": "0.0.8",
|
138
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
|
139
|
+
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
|
140
|
+
"dev": true
|
141
|
+
}
|
142
|
+
}
|
143
|
+
},
|
144
|
+
"ms": {
|
145
|
+
"version": "2.0.0",
|
146
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
147
|
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
148
|
+
"dev": true
|
149
|
+
},
|
150
|
+
"opener": {
|
151
|
+
"version": "1.4.3",
|
152
|
+
"resolved": "https://registry.npmjs.org/opener/-/opener-1.4.3.tgz",
|
153
|
+
"integrity": "sha1-XG2ixdflgx6P+jlklQ+NZnSskLg=",
|
154
|
+
"dev": true
|
155
|
+
},
|
156
|
+
"optimist": {
|
157
|
+
"version": "0.6.1",
|
158
|
+
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
|
159
|
+
"integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
|
160
|
+
"dev": true,
|
161
|
+
"requires": {
|
162
|
+
"minimist": "~0.0.1",
|
163
|
+
"wordwrap": "~0.0.2"
|
164
|
+
},
|
165
|
+
"dependencies": {
|
166
|
+
"minimist": {
|
167
|
+
"version": "0.0.10",
|
168
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
|
169
|
+
"integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=",
|
170
|
+
"dev": true
|
171
|
+
}
|
172
|
+
}
|
173
|
+
},
|
174
|
+
"portfinder": {
|
175
|
+
"version": "1.0.13",
|
176
|
+
"resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz",
|
177
|
+
"integrity": "sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek=",
|
178
|
+
"dev": true,
|
179
|
+
"requires": {
|
180
|
+
"async": "^1.5.2",
|
181
|
+
"debug": "^2.2.0",
|
182
|
+
"mkdirp": "0.5.x"
|
183
|
+
}
|
184
|
+
},
|
185
|
+
"qs": {
|
186
|
+
"version": "2.3.3",
|
187
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz",
|
188
|
+
"integrity": "sha1-6eha2+ddoLvkyOBHaghikPhjtAQ=",
|
189
|
+
"dev": true
|
190
|
+
},
|
191
|
+
"requires-port": {
|
192
|
+
"version": "1.0.0",
|
193
|
+
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
|
194
|
+
"integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=",
|
195
|
+
"dev": true
|
196
|
+
},
|
197
|
+
"tslib": {
|
198
|
+
"version": "1.11.1",
|
199
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz",
|
200
|
+
"integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA=="
|
201
|
+
},
|
202
|
+
"union": {
|
203
|
+
"version": "0.4.6",
|
204
|
+
"resolved": "https://registry.npmjs.org/union/-/union-0.4.6.tgz",
|
205
|
+
"integrity": "sha1-GY+9rrolTniLDvy2MLwR8kopWeA=",
|
206
|
+
"dev": true,
|
207
|
+
"requires": {
|
208
|
+
"qs": "~2.3.3"
|
209
|
+
}
|
210
|
+
},
|
211
|
+
"url-join": {
|
212
|
+
"version": "2.0.2",
|
213
|
+
"resolved": "https://registry.npmjs.org/url-join/-/url-join-2.0.2.tgz",
|
214
|
+
"integrity": "sha1-wHJ1aWetJLi1nldBVRyqx49QuLc=",
|
215
|
+
"dev": true
|
216
|
+
},
|
217
|
+
"wordwrap": {
|
218
|
+
"version": "0.0.3",
|
219
|
+
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
|
220
|
+
"integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=",
|
221
|
+
"dev": true
|
222
|
+
}
|
223
|
+
}
|
224
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"name": "@esri/arcgis-rest-demo-vanilla",
|
3
|
+
"version": "2.22.0",
|
4
|
+
"private": true,
|
5
|
+
"description": "Vanilla JavaScript demo of @esri/arcgis-rest-* packages",
|
6
|
+
"author": "",
|
7
|
+
"license": "Apache-2.0",
|
8
|
+
"dependencies": {
|
9
|
+
"@esri/arcgis-rest-auth": "^2.22.0",
|
10
|
+
"@esri/arcgis-rest-request": "^2.22.0"
|
11
|
+
},
|
12
|
+
"devDependencies": {
|
13
|
+
"http-server": "*"
|
14
|
+
},
|
15
|
+
"scripts": {
|
16
|
+
"start": "http-server ."
|
17
|
+
}
|
18
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
html, body {
|
2
|
+
width: 100%;
|
3
|
+
height: 100%;
|
4
|
+
}
|
5
|
+
|
6
|
+
.row {
|
7
|
+
margin-bottom: 25px;
|
8
|
+
}
|
9
|
+
|
10
|
+
.jumbotron {
|
11
|
+
padding-top: 0px;
|
12
|
+
padding-bottom: 0px;
|
13
|
+
}
|
14
|
+
|
15
|
+
#logo-container {
|
16
|
+
display: flex;
|
17
|
+
justify-content: center;
|
18
|
+
align-content: center;
|
19
|
+
}
|
20
|
+
#logo {
|
21
|
+
width: 125px;
|
22
|
+
height: 125px;
|
23
|
+
padding: 12.5px;
|
24
|
+
}
|
25
|
+
|
26
|
+
.info-panel{
|
27
|
+
padding: 15px;
|
28
|
+
}
|
29
|
+
|
30
|
+
.loading-table {
|
31
|
+
width: 100%;
|
32
|
+
height: 150px;
|
33
|
+
display: flex;
|
34
|
+
align-content: center;
|
35
|
+
justify-content: center;
|
36
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# ArcGIS Rest JS / Vanilla JS Demo
|
2
|
+
|
3
|
+
This demo shows how to trigger OAuth 2.0 using `@esri/arcgis-rest-js` _after_ an anonymous request and a `403/499` is encountered using [`ArcGISAuthError.retry()`](https://esri.github.io/arcgis-rest-js/api/request/ArcGISAuthError/#retry-summary).
|
4
|
+
|
5
|
+
```js
|
6
|
+
request(url)
|
7
|
+
.catch(err => {
|
8
|
+
if (err.name === "ArcGISAuthError") {
|
9
|
+
// make the same request again with a UserSession
|
10
|
+
err.retry(appendSession)
|
11
|
+
.then(response => console.log(response))
|
12
|
+
}
|
13
|
+
})
|
14
|
+
|
15
|
+
appendSession = () => {
|
16
|
+
return UserSession.beginOAuth2({
|
17
|
+
clientId,
|
18
|
+
redirectUri: 'https://yourapp.com/authenticate.html'
|
19
|
+
});
|
20
|
+
}
|
21
|
+
```
|
22
|
+
Demo - [OAuth 2.0 Browser -retry](https://github.com/Esri/arcgis-rest-js/tree/master/demos/oauth2-browser-retry)
|
23
|
+
|
24
|
+
## Running this demo
|
25
|
+
1. open `index.html` in a web browser
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>ArcGIS Rest JS Vanilla JS - redirect</title>
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<script src="node_modules/@esri/arcgis-rest-request/dist/umd/request.umd.js"></script>
|
9
|
+
<script src="https://unpkg.com/@esri/arcgis-rest-auth"></script>
|
10
|
+
<script>
|
11
|
+
// arcgis-rest-js ensures the clientId is associated with the state parameter by default.
|
12
|
+
const match = window.location.href.match(
|
13
|
+
/&state=(.+)/
|
14
|
+
);
|
15
|
+
const clientId = match[1];
|
16
|
+
|
17
|
+
arcgisRest.UserSession.completeOAuth2({
|
18
|
+
clientId: clientId,
|
19
|
+
});
|
20
|
+
</script>
|
21
|
+
</body>
|
22
|
+
</html>
|
@@ -0,0 +1,116 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>ArcGIS REST JS Browser OAuth2 - retry</title>
|
6
|
+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
7
|
+
<script src="https://polyfill.io/v3/polyfill.min.js?features=es5%2Cfetch%2CPromise"></script>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<div id="app-wrapper">
|
11
|
+
<div class="jumbotron">
|
12
|
+
<div class="container">
|
13
|
+
<div id="page-header" class="row">
|
14
|
+
<div id="logo-container" class="col-sm-3">
|
15
|
+
<img id="logo" src="./logo.svg">
|
16
|
+
</div>
|
17
|
+
<div class="col-sm-9">
|
18
|
+
<h2>
|
19
|
+
ArcGIS REST JS Browser OAuth 2.0
|
20
|
+
</h2>
|
21
|
+
<p>
|
22
|
+
An application demonstrating how to retry a request that requires authentication.
|
23
|
+
</p>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
<div class="container">
|
29
|
+
<div class="row">
|
30
|
+
<div class="col-xs-12">
|
31
|
+
<div id="clientIdGroup" class="form-group">
|
32
|
+
<label class="control-label">ClientID</label>
|
33
|
+
<!-- This is input required for the app. -->
|
34
|
+
<input
|
35
|
+
id="clientId"
|
36
|
+
type="text"
|
37
|
+
class="form-control"
|
38
|
+
value="QVQNb3XfDzoboWS0"
|
39
|
+
>
|
40
|
+
</div>
|
41
|
+
<p class="help-block">
|
42
|
+
You can generate your own clientid by creating an application on the
|
43
|
+
<a target='_blank' href='https://developers.arcgis.com/documentation/core-concepts/security-and-authentication/browser-based-user-logins/'>
|
44
|
+
ArcGIS for Developers
|
45
|
+
</a>
|
46
|
+
website and adding
|
47
|
+
<code id="redirect_uri">
|
48
|
+
<!-- Redirect URI will be injected here. -->
|
49
|
+
</code>
|
50
|
+
as a redirect uri.
|
51
|
+
</p>
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
<div class="row">
|
55
|
+
<div class="col-xs-6">
|
56
|
+
<!-- Event listeners will be added to these buttons. -->
|
57
|
+
<button class="btn btn-primary btn-block" id='try'>Make an anonymous request that requires authentication</button>
|
58
|
+
</div>
|
59
|
+
</div>
|
60
|
+
|
61
|
+
<div class="row">
|
62
|
+
<div class="col-xs-12 text-center">
|
63
|
+
<p id="sessionInfo" class="info-panel">
|
64
|
+
<!-- Information will be injected here. -->
|
65
|
+
</p>
|
66
|
+
</div>
|
67
|
+
</div>
|
68
|
+
</div>
|
69
|
+
</div>
|
70
|
+
|
71
|
+
<script src="https://unpkg.com/@esri/arcgis-rest-request"></script>
|
72
|
+
<script src="https://unpkg.com/@esri/arcgis-rest-auth"></script>
|
73
|
+
<script>
|
74
|
+
|
75
|
+
// Define the variable used for the redirect uri.
|
76
|
+
const redirect_uri = window.location.origin + window.location.pathname;
|
77
|
+
|
78
|
+
// Inject that value into the page text.
|
79
|
+
document.getElementById('redirect_uri').innerHTML = redirect_uri;
|
80
|
+
const sessionInfo = document.getElementById('sessionInfo');
|
81
|
+
|
82
|
+
// Attach a listener to the sign in buttons.
|
83
|
+
document.getElementById('try').addEventListener('click', function (event) {
|
84
|
+
event.preventDefault();
|
85
|
+
|
86
|
+
// url that is NOT accessible to anonymous users
|
87
|
+
const url = `https://route.arcgis.com/arcgis/rest/services/World/Route/NAServer/Route_World`
|
88
|
+
|
89
|
+
arcgisRest.request(url)
|
90
|
+
.catch(err => {
|
91
|
+
if (err.name === "ArcGISAuthError") {
|
92
|
+
sessionInfo.classList.add('bg-info');
|
93
|
+
sessionInfo.innerHTML = 'error: ' + err.message;
|
94
|
+
|
95
|
+
// make the same request again with a UserSession
|
96
|
+
err.retry(appendSession)
|
97
|
+
.then(response => {
|
98
|
+
sessionInfo.classList.remove('bg-info');
|
99
|
+
sessionInfo.classList.add('bg-success');
|
100
|
+
sessionInfo.innerHTML = 'current version of private server: ' + response.currentVersion;
|
101
|
+
})
|
102
|
+
}
|
103
|
+
})
|
104
|
+
});
|
105
|
+
|
106
|
+
function appendSession () {
|
107
|
+
// Begin an OAuth2 login using a popup.
|
108
|
+
return arcgisRest.UserSession.beginOAuth2({
|
109
|
+
clientId: clientId.defaultValue,
|
110
|
+
redirectUri: redirect_uri + 'authenticate.html',
|
111
|
+
popup: true
|
112
|
+
});
|
113
|
+
}
|
114
|
+
</script>
|
115
|
+
</body>
|
116
|
+
</html>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 630 630">
|
2
|
+
<rect width="630" height="630" fill="#f7df1e"/>
|
3
|
+
<path d="m423.2 492.19c12.69 20.72 29.2 35.95 58.4 35.95 24.53 0 40.2-12.26 40.2-29.2 0-20.3-16.1-27.49-43.1-39.3l-14.8-6.35c-42.72-18.2-71.1-41-71.1-89.2 0-44.4 33.83-78.2 86.7-78.2 37.64 0 64.7 13.1 84.2 47.4l-46.1 29.6c-10.15-18.2-21.1-25.37-38.1-25.37-17.34 0-28.33 11-28.33 25.37 0 17.76 11 24.95 36.4 35.95l14.8 6.34c50.3 21.57 78.7 43.56 78.7 93 0 53.3-41.87 82.5-98.1 82.5-54.98 0-90.5-26.2-107.88-60.54zm-209.13 5.13c9.3 16.5 17.76 30.45 38.1 30.45 19.45 0 31.72-7.61 31.72-37.2v-201.3h59.2v202.1c0 61.3-35.94 89.2-88.4 89.2-47.4 0-74.85-24.53-88.81-54.075z"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Running this demo
|
2
|
+
|
3
|
+
1. Make sure you run `npm run bootstrap` in the root folder to setup the dependencies
|
4
|
+
1. cd into `/demos/stream-response-to-file/`
|
5
|
+
1. Run `npm start`
|
6
|
+
|
7
|
+
Features from https://services.arcgis.com/uUvqNMGPm7axC2dD/arcgis/rest/services/Boating_Access_Sites/FeatureServer/0 will be written in GeoJSON format to a file in the `output` directory.
|
@@ -0,0 +1,36 @@
|
|
1
|
+
const { queryFeatures } = require("@esri/arcgis-rest-feature-layer");
|
2
|
+
const fs = require("fs");
|
3
|
+
const fetch = require('node-fetch');
|
4
|
+
require('isomorphic-form-data')
|
5
|
+
|
6
|
+
const outFileName = `./output/${Date.now()}.geojson`
|
7
|
+
const outFile = fs.createWriteStream(outFileName);
|
8
|
+
const serviceUrl = "https://services.arcgis.com/uUvqNMGPm7axC2dD/arcgis/rest/services/Boating_Access_Sites/FeatureServer/0/query";
|
9
|
+
|
10
|
+
// const params = {
|
11
|
+
// outSR: "4326",
|
12
|
+
// returnGeometry: true,
|
13
|
+
// f: "geojson"
|
14
|
+
// };
|
15
|
+
|
16
|
+
queryFeatures({
|
17
|
+
url: serviceUrl,
|
18
|
+
outSR: "4326",
|
19
|
+
returnGeometry: true,
|
20
|
+
f: "geojson",
|
21
|
+
rawResponse: true,
|
22
|
+
fetch: fetch
|
23
|
+
}).then((resp) => {
|
24
|
+
//Access any response methods, or ReadableStream body
|
25
|
+
//https://developer.mozilla.org/en-US/docs/Web/API/Response
|
26
|
+
const stream = resp.body
|
27
|
+
stream.pipe(outFile);
|
28
|
+
stream.on('data', (data) => {
|
29
|
+
console.log("Buffering: ", data)
|
30
|
+
});
|
31
|
+
stream.on('end', () => {
|
32
|
+
console.log(`Finished: ${outFileName}`);
|
33
|
+
});
|
34
|
+
}).catch((err) => {
|
35
|
+
console.log(err);
|
36
|
+
})
|
File without changes
|
@@ -0,0 +1,60 @@
|
|
1
|
+
{
|
2
|
+
"requires": true,
|
3
|
+
"lockfileVersion": 1,
|
4
|
+
"dependencies": {
|
5
|
+
"asynckit": {
|
6
|
+
"version": "0.4.0",
|
7
|
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
8
|
+
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
|
9
|
+
},
|
10
|
+
"combined-stream": {
|
11
|
+
"version": "1.0.7",
|
12
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz",
|
13
|
+
"integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==",
|
14
|
+
"requires": {
|
15
|
+
"delayed-stream": "~1.0.0"
|
16
|
+
}
|
17
|
+
},
|
18
|
+
"delayed-stream": {
|
19
|
+
"version": "1.0.0",
|
20
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
21
|
+
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
|
22
|
+
},
|
23
|
+
"form-data": {
|
24
|
+
"version": "2.3.3",
|
25
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
|
26
|
+
"integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
|
27
|
+
"requires": {
|
28
|
+
"asynckit": "^0.4.0",
|
29
|
+
"combined-stream": "^1.0.6",
|
30
|
+
"mime-types": "^2.1.12"
|
31
|
+
}
|
32
|
+
},
|
33
|
+
"isomorphic-form-data": {
|
34
|
+
"version": "2.0.0",
|
35
|
+
"resolved": "https://registry.npmjs.org/isomorphic-form-data/-/isomorphic-form-data-2.0.0.tgz",
|
36
|
+
"integrity": "sha512-TYgVnXWeESVmQSg4GLVbalmQ+B4NPi/H4eWxqALKj63KsUrcu301YDjBqaOw3h+cbak7Na4Xyps3BiptHtxTfg==",
|
37
|
+
"requires": {
|
38
|
+
"form-data": "^2.3.2"
|
39
|
+
}
|
40
|
+
},
|
41
|
+
"mime-db": {
|
42
|
+
"version": "1.37.0",
|
43
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz",
|
44
|
+
"integrity": "sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg=="
|
45
|
+
},
|
46
|
+
"mime-types": {
|
47
|
+
"version": "2.1.21",
|
48
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz",
|
49
|
+
"integrity": "sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==",
|
50
|
+
"requires": {
|
51
|
+
"mime-db": "~1.37.0"
|
52
|
+
}
|
53
|
+
},
|
54
|
+
"node-fetch": {
|
55
|
+
"version": "2.3.0",
|
56
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.3.0.tgz",
|
57
|
+
"integrity": "sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA=="
|
58
|
+
}
|
59
|
+
}
|
60
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
{
|
2
|
+
"name": "stream-response-to-file",
|
3
|
+
"version": "2.22.0",
|
4
|
+
"private": true,
|
5
|
+
"description": "stream response to file with arcgis-rest-request",
|
6
|
+
"main": "index.js",
|
7
|
+
"scripts": {
|
8
|
+
"start": "node index.js",
|
9
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
10
|
+
},
|
11
|
+
"repository": {
|
12
|
+
"type": "git",
|
13
|
+
"url": "git+https://github.com/Esri/arcgis-rest-js.git"
|
14
|
+
},
|
15
|
+
"keywords": [
|
16
|
+
"arcgis",
|
17
|
+
"rest",
|
18
|
+
"stream",
|
19
|
+
"node"
|
20
|
+
],
|
21
|
+
"author": "Joshua Tanner",
|
22
|
+
"license": "Apache-2.0",
|
23
|
+
"bugs": {
|
24
|
+
"url": "https://github.com/Esri/arcgis-rest-js/issues"
|
25
|
+
},
|
26
|
+
"homepage": "https://github.com/Esri/arcgis-rest-js#readme",
|
27
|
+
"dependencies": {
|
28
|
+
"@esri/arcgis-rest-feature-layer": "^2.22.0",
|
29
|
+
"@esri/arcgis-rest-request": "^2.22.0",
|
30
|
+
"isomorphic-form-data": "^2.0.0",
|
31
|
+
"node-fetch": "^2.3.0"
|
32
|
+
}
|
33
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# Running this demo
|
2
|
+
|
3
|
+
This demo shows how to have rollup [tree shake](https://rollupjs.org/guide/en#tree-shaking) `@esri/rest-js` and only include methods that are actually being called in its output bundle.
|
4
|
+
|
5
|
+
1. Make sure you run `npm run bootstrap` in the root folder to setup the dependencies
|
6
|
+
1. cd into `/demos/tree-shaking-rollup/`
|
7
|
+
1. Run `npm run build:app`
|
8
|
+
|
9
|
+
|