aspernaturalias 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 +31 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/codecov.yml +3 -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 +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 +115 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package-lock.json +94 -0
- package/demos/batch-geocoder-node/package.json +38 -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 +85 -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 +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 +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 +9 -0
- package/demos/tree-shaking-webpack/index.html +11 -0
- package/demos/tree-shaking-webpack/package-lock.json +4595 -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 +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 +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 +3851 -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/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 +88 -0
- package/package.json +129 -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 +997 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -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/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +1315 -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/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/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/helpers.ts +55 -0
- package/packages/arcgis-rest-feature-layer/src/index.ts +28 -0
- package/packages/arcgis-rest-feature-layer/src/query.ts +203 -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 +202 -0
- package/packages/arcgis-rest-feature-layer/test/crud.test.ts +130 -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/mocks/cvdQueryResponse.ts +225 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/feature.ts +281 -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 +259 -0
- package/packages/arcgis-rest-feature-layer/test/query.test.ts +168 -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 +105 -0
- package/packages/arcgis-rest-geocoding/src/geocode.ts +130 -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 +151 -0
- package/packages/arcgis-rest-geocoding/test/geocode.test.ts +212 -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/create.ts +43 -0
- package/packages/arcgis-rest-portal/src/groups/get.ts +99 -0
- package/packages/arcgis-rest-portal/src/groups/helpers.ts +14 -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.ts +32 -0
- package/packages/arcgis-rest-portal/src/groups/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/groups/update.ts +39 -0
- package/packages/arcgis-rest-portal/src/index.ts +48 -0
- package/packages/arcgis-rest-portal/src/items/add.ts +137 -0
- package/packages/arcgis-rest-portal/src/items/create.ts +128 -0
- package/packages/arcgis-rest-portal/src/items/get.ts +177 -0
- package/packages/arcgis-rest-portal/src/items/helpers.ts +193 -0
- package/packages/arcgis-rest-portal/src/items/protect.ts +39 -0
- package/packages/arcgis-rest-portal/src/items/remove.ts +131 -0
- package/packages/arcgis-rest-portal/src/items/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/items/update.ts +145 -0
- package/packages/arcgis-rest-portal/src/sharing/access.ts +84 -0
- package/packages/arcgis-rest-portal/src/sharing/group-sharing.ts +210 -0
- package/packages/arcgis-rest-portal/src/sharing/helpers.ts +84 -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 +162 -0
- package/packages/arcgis-rest-portal/src/users/notification.ts +70 -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/generic-search.ts +67 -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/search.ts +38 -0
- package/packages/arcgis-rest-portal/test/groups/crud.test.ts +180 -0
- package/packages/arcgis-rest-portal/test/groups/get.test.ts +101 -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/search.test.ts +110 -0
- package/packages/arcgis-rest-portal/test/items/add.test.ts +321 -0
- package/packages/arcgis-rest-portal/test/items/create.test.ts +375 -0
- package/packages/arcgis-rest-portal/test/items/get.test.ts +309 -0
- package/packages/arcgis-rest-portal/test/items/protect.test.ts +122 -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 +515 -0
- package/packages/arcgis-rest-portal/test/mocks/groups/responses.ts +144 -0
- package/packages/arcgis-rest-portal/test/mocks/items/foo.zip +0 -0
- package/packages/arcgis-rest-portal/test/mocks/items/item.ts +122 -0
- package/packages/arcgis-rest-portal/test/mocks/items/resources.ts +31 -0
- package/packages/arcgis-rest-portal/test/mocks/items/search.ts +121 -0
- package/packages/arcgis-rest-portal/test/mocks/portal/response.ts +112 -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.ts +173 -0
- package/packages/arcgis-rest-portal/test/sharing/access.test.ts +162 -0
- package/packages/arcgis-rest-portal/test/sharing/group-sharing.test.ts +650 -0
- package/packages/arcgis-rest-portal/test/sharing/helpers.test.ts +55 -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/update.test.ts +151 -0
- package/packages/arcgis-rest-portal/test/util/SearchQueryBuilder.test.ts +340 -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 +97 -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 +24 -0
- package/packages/arcgis-rest-request/src/request.ts +389 -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 +43 -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 +16 -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 +23 -0
- package/packages/arcgis-rest-request/src/utils/process-params.ts +109 -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 +496 -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 +47 -0
- package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +193 -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 +213 -0
- package/packages/arcgis-rest-service-admin/src/index.ts +9 -0
- package/packages/arcgis-rest-service-admin/test/addTo.test.ts +350 -0
- package/packages/arcgis-rest-service-admin/test/create.test.ts +377 -0
- package/packages/arcgis-rest-service-admin/test/mocks/layerDefinition.ts +79 -0
- package/packages/arcgis-rest-service-admin/test/mocks/move.ts +11 -0
- package/packages/arcgis-rest-service-admin/test/mocks/service.ts +69 -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 +7 -0
- package/packages/arcgis-rest-types/src/item.ts +65 -0
- package/packages/arcgis-rest-types/src/symbol.ts +170 -0
- package/packages/arcgis-rest-types/src/user.ts +48 -0
- package/packages/arcgis-rest-types/src/webmap.ts +1345 -0
- package/packages/arcgis-rest-types/tsconfig.json +9 -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,27 @@
|
|
1
|
+
{
|
2
|
+
"name": "cli-item-management",
|
3
|
+
"version": "2.0.4",
|
4
|
+
"description": "Manage items in ArcGIS Online with a Node JS CLI and ArcGIS Rest JS",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"start": "node index.js",
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
9
|
+
},
|
10
|
+
"author": "Patrick Arlt <parlt@esri.com>",
|
11
|
+
"license": "Apache-2.0",
|
12
|
+
"private": true,
|
13
|
+
"keywords": [
|
14
|
+
"arcgis",
|
15
|
+
"node",
|
16
|
+
"arcgis-rest-js"
|
17
|
+
],
|
18
|
+
"dependencies": {
|
19
|
+
"@esri/arcgis-rest-auth": "^2.0.4",
|
20
|
+
"@esri/arcgis-rest-portal": "^2.0.4",
|
21
|
+
"@esri/arcgis-rest-request": "^2.0.4",
|
22
|
+
"chalk": "^2.3.0",
|
23
|
+
"cross-fetch": "^3.0.0",
|
24
|
+
"isomorphic-form-data": "^1.0.0",
|
25
|
+
"prompts": "^2.0.3"
|
26
|
+
}
|
27
|
+
}
|
Binary file
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# ArcGIS Rest JS / Vanilla JS Demo
|
2
|
+
|
3
|
+
This demo uses Vanilla JS to implement OAuth2 using
|
4
|
+
the `arcgis-rest-js` libraries.
|
5
|
+
|
6
|
+
See the ArcGIS Rest JS guide to [Authentication in Browser-based Apps](https://esri.github.io/arcgis-rest-js/guides/browser-authentication/) for more info.
|
7
|
+
|
8
|
+
## Running this demo
|
9
|
+
1. Like all the other demo apps, run `npm run bootstrap` in the root directory.
|
10
|
+
1. Register a new application using https://developers.arcgis.com/applications/new (you will be prompted to sign in or create a free account first).
|
11
|
+
1. Add a redirect URL of `http://localhost:8080` to your new app.
|
12
|
+
1. Either copy the `config.js.template` file and rename it to `config.js` with your own ClientID or supply it in the prompt when the app is launched.
|
13
|
+
1. Run `npm start` to spin up the development server.
|
14
|
+
1. Visit [http://localhost:8080](http://localhost:8080).
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>ArcGIS Rest JS OAuth redirect</title>
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<script src="node_modules/@esri/arcgis-rest-request/dist/umd/request.umd.js"></script>
|
9
|
+
<script src="node_modules/@esri/arcgis-rest-auth/dist/umd/auth.umd.js"></script>
|
10
|
+
<script>
|
11
|
+
/* in a production app, clientId could be hardcoded. here we're using a regex to extract it from the state parameter in the OAuth2 server response to make the demo more interchangeable.
|
12
|
+
|
13
|
+
this relies on the fact that the ClientId is associated with the state parameter internally when another value isn't supplied manually.
|
14
|
+
*/
|
15
|
+
const match = window.location.href.match(
|
16
|
+
/&state=([^&]+)/
|
17
|
+
);
|
18
|
+
const clientId = match[1];
|
19
|
+
let session;
|
20
|
+
function processAuthentication() {
|
21
|
+
window.location.href = './';
|
22
|
+
session = arcgisRest.UserSession.completeOAuth2({
|
23
|
+
clientId: clientId,
|
24
|
+
});
|
25
|
+
localStorage.setItem('__ARCGIS_REST_USER_SESSION__', session.serialize());
|
26
|
+
}
|
27
|
+
processAuthentication();
|
28
|
+
</script>
|
29
|
+
</body>
|
30
|
+
</html>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/*
|
2
|
+
You can generate your own clientid by creating an application on the ArcGIS for Developers site. Be sure to add http://localhost:8080/ as a redirect uri for your application
|
3
|
+
|
4
|
+
once you have a clientid of your own, copy/paste it here and rename this file 'config.js'
|
5
|
+
*/
|
6
|
+
let clientId = "QVQNb3XfDzoboWS0"
|
@@ -0,0 +1,202 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>ArcGIS REST JS Browser OAuth2</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
|
+
<link rel="stylesheet" href="./style.css">
|
8
|
+
<script src="https://polyfill.io/v3/polyfill.min.js?features=es5%2Cfetch%2CPromise"></script>
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<div id="app-wrapper">
|
12
|
+
<div class="jumbotron">
|
13
|
+
<div class="container">
|
14
|
+
<div id="page-header" class="row">
|
15
|
+
<div id="logo-container" class="col-sm-3">
|
16
|
+
<img id="logo" src="./logo.svg">
|
17
|
+
</div>
|
18
|
+
<div class="col-sm-9">
|
19
|
+
<h2>
|
20
|
+
ArcGIS REST JS Browser OAuth2
|
21
|
+
</h2>
|
22
|
+
<p>
|
23
|
+
An application demonstrating browser-based named user login.
|
24
|
+
</p>
|
25
|
+
</div>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
<div class="container">
|
30
|
+
<div class="row">
|
31
|
+
<div class="col-xs-12">
|
32
|
+
<div id="clientIdGroup" class="form-group">
|
33
|
+
<label class="control-label">ClientID</label>
|
34
|
+
<!-- This is input required for the app. -->
|
35
|
+
<input
|
36
|
+
id="clientId"
|
37
|
+
type="text"
|
38
|
+
class="form-control"
|
39
|
+
placeholder="Client ID"
|
40
|
+
>
|
41
|
+
</div>
|
42
|
+
<p class="help-block">
|
43
|
+
You can generate your own clientid by creating an application on the
|
44
|
+
<a target='_blank' href='https://developers.arcgis.com/documentation/core-concepts/security-and-authentication/browser-based-user-logins/'>
|
45
|
+
ArcGIS for Developers
|
46
|
+
</a>
|
47
|
+
website. Be sure to add
|
48
|
+
<code id="redirect_uri">
|
49
|
+
<!-- Redirect URI will be injected here. -->
|
50
|
+
</code>
|
51
|
+
as a redirect uri for your application.
|
52
|
+
</p>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
<div class="row">
|
56
|
+
<div class="col-xs-6">
|
57
|
+
<!-- Event listeners will be added to these buttons. -->
|
58
|
+
<button class="btn btn-primary btn-block" id='withPopupButton'>Sign In (with popup)</button>
|
59
|
+
</div>
|
60
|
+
<div class="col-xs-6">
|
61
|
+
<button class="btn btn-primary btn-block" id='inlineRedirectButton'>Sign In (inline redirect)</button>
|
62
|
+
</div>
|
63
|
+
</div>
|
64
|
+
|
65
|
+
<div class="row">
|
66
|
+
<div class="col-xs-12 text-center">
|
67
|
+
<p id="sessionInfo" class="info-panel">
|
68
|
+
<!-- Information will be injected here. -->
|
69
|
+
</p>
|
70
|
+
</div>
|
71
|
+
</div>
|
72
|
+
|
73
|
+
<div class="row">
|
74
|
+
<div class="col-xs-3">
|
75
|
+
</div>
|
76
|
+
<div class="col-xs-6 text-center">
|
77
|
+
<!-- Event listeners will be added to these buttons. -->
|
78
|
+
<button class="btn btn-primary btn-block btn-warning" id='signOutButton'>Sign Out</button>
|
79
|
+
</div>
|
80
|
+
<div class="col-xs-3">
|
81
|
+
</div>
|
82
|
+
</div>
|
83
|
+
</div>
|
84
|
+
</div>
|
85
|
+
|
86
|
+
<!-- pull clientid from config.js if present -->
|
87
|
+
<script src="config.js"></script>
|
88
|
+
<script src="node_modules/@esri/arcgis-rest-request/dist/umd/request.umd.js"></script>
|
89
|
+
<script src="node_modules/@esri/arcgis-rest-auth/dist/umd/auth.umd.js"></script>
|
90
|
+
<script>
|
91
|
+
// Define a global session variable.
|
92
|
+
let session = null;
|
93
|
+
|
94
|
+
// Check to see if there is a serialized session in local storage.
|
95
|
+
const serializedSession = localStorage.getItem('__ARCGIS_REST_USER_SESSION__');
|
96
|
+
if (serializedSession !== null && serializedSession !== "undefined") {
|
97
|
+
// If there is a serialized session, parse it and create a new session object.
|
98
|
+
let parsed = JSON.parse(serializedSession);
|
99
|
+
// Cast the tokenExpires property back into a date.
|
100
|
+
parsed.tokenExpires = new Date(parsed.tokenExpires);
|
101
|
+
// Create the new session object.
|
102
|
+
session = new arcgisRest.UserSession(parsed);
|
103
|
+
// console.log(session);
|
104
|
+
// Update the UI.
|
105
|
+
document.getElementById('clientId').value = session.clientId;
|
106
|
+
|
107
|
+
// Clear the previous session.
|
108
|
+
localStorage.removeItem('__ARCGIS_REST_USER_SESSION__');
|
109
|
+
}
|
110
|
+
|
111
|
+
// Define the variable used for the redirect uri.
|
112
|
+
const redirect_uri = window.location.origin + window.location.pathname;
|
113
|
+
// Inject that value into the page text.
|
114
|
+
document.getElementById('redirect_uri').innerHTML = redirect_uri;
|
115
|
+
|
116
|
+
// Function to check that a client id is present.
|
117
|
+
function requireClientId() {
|
118
|
+
// Pull out the client id.
|
119
|
+
if (document.getElementById('clientId').value !== "") {
|
120
|
+
clientId = document.getElementById('clientId').value
|
121
|
+
}
|
122
|
+
|
123
|
+
// if a clientId is not provided via config.js or entered manually, return false
|
124
|
+
if (!clientId) {
|
125
|
+
document.getElementById('clientIdGroup').classList.add('has-error');
|
126
|
+
return false;
|
127
|
+
}
|
128
|
+
// Otherwise return true and clear any errors.
|
129
|
+
document.getElementById('clientIdGroup').classList.remove('has-error');
|
130
|
+
return true;
|
131
|
+
}
|
132
|
+
|
133
|
+
// Attach a listener to validate the client id on change.
|
134
|
+
document.getElementById('clientId').addEventListener('input', function (event) {
|
135
|
+
requireClientId();
|
136
|
+
});
|
137
|
+
|
138
|
+
// Function to update the UI with session info.
|
139
|
+
function updateSessionInfo(session) {
|
140
|
+
let sessionInfo = document.getElementById('sessionInfo')
|
141
|
+
if (session) {
|
142
|
+
sessionInfo.classList.remove('bg-info');
|
143
|
+
sessionInfo.classList.add('bg-success');
|
144
|
+
sessionInfo.innerHTML = 'Logged in as ' + session.username;
|
145
|
+
localStorage.setItem('__ARCGIS_REST_USER_SESSION__', session.serialize());
|
146
|
+
} else {
|
147
|
+
sessionInfo.classList.remove('bg-success');
|
148
|
+
sessionInfo.classList.add('bg-info');
|
149
|
+
sessionInfo.innerHTML = 'Log in using one of the methods above to start a session.';
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
// Call the function on page load to set current state.
|
154
|
+
updateSessionInfo(session);
|
155
|
+
|
156
|
+
// Attach a listener to the sign in buttons.
|
157
|
+
document.getElementById('withPopupButton').addEventListener('click', function (event) {
|
158
|
+
event.preventDefault();
|
159
|
+
if (requireClientId()) {
|
160
|
+
|
161
|
+
// Begin an OAuth2 login using a popup.
|
162
|
+
arcgisRest.UserSession.beginOAuth2({
|
163
|
+
clientId: clientId,
|
164
|
+
redirectUri: redirect_uri + 'authenticate.html',
|
165
|
+
popup: true
|
166
|
+
}).then(function (newSession) {
|
167
|
+
// Upon a successful login, update the session with the new session.
|
168
|
+
session = newSession;
|
169
|
+
console.log(session);
|
170
|
+
updateSessionInfo(session);
|
171
|
+
}).catch(function (error) {
|
172
|
+
console.log(error);
|
173
|
+
});
|
174
|
+
}
|
175
|
+
});
|
176
|
+
|
177
|
+
// Attach a listener to the sign in buttons.
|
178
|
+
document.getElementById('inlineRedirectButton').addEventListener('click', function (event) {
|
179
|
+
event.preventDefault();
|
180
|
+
if (requireClientId()) {
|
181
|
+
// let clientId = document.getElementById('clientId').value || configClientId;
|
182
|
+
// Begin an OAuth2 login without a popup.
|
183
|
+
arcgisRest.UserSession.beginOAuth2({
|
184
|
+
clientId: clientId,
|
185
|
+
redirectUri: redirect_uri + 'authenticate.html?clientID=' + clientId,
|
186
|
+
popup: false,
|
187
|
+
});
|
188
|
+
}
|
189
|
+
});
|
190
|
+
|
191
|
+
// Attach a listener to the sign in buttons.
|
192
|
+
document.getElementById('signOutButton').addEventListener('click', function (event) {
|
193
|
+
event.preventDefault();
|
194
|
+
|
195
|
+
// Clear the previous session.
|
196
|
+
session = null;
|
197
|
+
localStorage.removeItem('__ARCGIS_REST_USER_SESSION__');
|
198
|
+
updateSessionInfo();
|
199
|
+
});
|
200
|
+
</script>
|
201
|
+
</body>
|
202
|
+
</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,163 @@
|
|
1
|
+
{
|
2
|
+
"requires": true,
|
3
|
+
"lockfileVersion": 1,
|
4
|
+
"dependencies": {
|
5
|
+
"async": {
|
6
|
+
"version": "1.5.2",
|
7
|
+
"resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
|
8
|
+
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
|
9
|
+
},
|
10
|
+
"colors": {
|
11
|
+
"version": "1.0.3",
|
12
|
+
"resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
|
13
|
+
"integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs="
|
14
|
+
},
|
15
|
+
"corser": {
|
16
|
+
"version": "2.0.1",
|
17
|
+
"resolved": "https://registry.npmjs.org/corser/-/corser-2.0.1.tgz",
|
18
|
+
"integrity": "sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c="
|
19
|
+
},
|
20
|
+
"debug": {
|
21
|
+
"version": "2.6.8",
|
22
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz",
|
23
|
+
"integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=",
|
24
|
+
"requires": {
|
25
|
+
"ms": "2.0.0"
|
26
|
+
}
|
27
|
+
},
|
28
|
+
"ecstatic": {
|
29
|
+
"version": "2.2.1",
|
30
|
+
"resolved": "https://registry.npmjs.org/ecstatic/-/ecstatic-2.2.1.tgz",
|
31
|
+
"integrity": "sha512-ztE4WqheoWLh3wv+HQwy7dACnvNY620coWpa+XqY6R2cVWgaAT2lUISU1Uf7JpdLLJCURktJOaA9av2AOzsyYQ==",
|
32
|
+
"requires": {
|
33
|
+
"he": "^1.1.1",
|
34
|
+
"mime": "^1.2.11",
|
35
|
+
"minimist": "^1.1.0",
|
36
|
+
"url-join": "^2.0.2"
|
37
|
+
}
|
38
|
+
},
|
39
|
+
"eventemitter3": {
|
40
|
+
"version": "1.2.0",
|
41
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz",
|
42
|
+
"integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg="
|
43
|
+
},
|
44
|
+
"he": {
|
45
|
+
"version": "1.1.1",
|
46
|
+
"resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz",
|
47
|
+
"integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0="
|
48
|
+
},
|
49
|
+
"http-proxy": {
|
50
|
+
"version": "1.16.2",
|
51
|
+
"resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz",
|
52
|
+
"integrity": "sha1-Bt/ykpUr9k2+hHH6nfcwZtTzd0I=",
|
53
|
+
"requires": {
|
54
|
+
"eventemitter3": "1.x.x",
|
55
|
+
"requires-port": "1.x.x"
|
56
|
+
}
|
57
|
+
},
|
58
|
+
"http-server": {
|
59
|
+
"version": "0.10.0",
|
60
|
+
"resolved": "https://registry.npmjs.org/http-server/-/http-server-0.10.0.tgz",
|
61
|
+
"integrity": "sha1-sqRGsWqduH7TxiK6m+sbCFsSNKc=",
|
62
|
+
"requires": {
|
63
|
+
"colors": "1.0.3",
|
64
|
+
"corser": "~2.0.0",
|
65
|
+
"ecstatic": "^2.0.0",
|
66
|
+
"http-proxy": "^1.8.1",
|
67
|
+
"opener": "~1.4.0",
|
68
|
+
"optimist": "0.6.x",
|
69
|
+
"portfinder": "^1.0.13",
|
70
|
+
"union": "~0.4.3"
|
71
|
+
}
|
72
|
+
},
|
73
|
+
"mime": {
|
74
|
+
"version": "1.3.6",
|
75
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz",
|
76
|
+
"integrity": "sha1-WR2E02U6awtKO5343lqoEI5y5eA="
|
77
|
+
},
|
78
|
+
"minimist": {
|
79
|
+
"version": "1.2.0",
|
80
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
|
81
|
+
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
|
82
|
+
},
|
83
|
+
"mkdirp": {
|
84
|
+
"version": "0.5.1",
|
85
|
+
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
86
|
+
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
87
|
+
"requires": {
|
88
|
+
"minimist": "0.0.8"
|
89
|
+
},
|
90
|
+
"dependencies": {
|
91
|
+
"minimist": {
|
92
|
+
"version": "0.0.8",
|
93
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
|
94
|
+
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
|
95
|
+
}
|
96
|
+
}
|
97
|
+
},
|
98
|
+
"ms": {
|
99
|
+
"version": "2.0.0",
|
100
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
101
|
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
|
102
|
+
},
|
103
|
+
"opener": {
|
104
|
+
"version": "1.4.3",
|
105
|
+
"resolved": "https://registry.npmjs.org/opener/-/opener-1.4.3.tgz",
|
106
|
+
"integrity": "sha1-XG2ixdflgx6P+jlklQ+NZnSskLg="
|
107
|
+
},
|
108
|
+
"optimist": {
|
109
|
+
"version": "0.6.1",
|
110
|
+
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
|
111
|
+
"integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
|
112
|
+
"requires": {
|
113
|
+
"minimist": "~0.0.1",
|
114
|
+
"wordwrap": "~0.0.2"
|
115
|
+
},
|
116
|
+
"dependencies": {
|
117
|
+
"minimist": {
|
118
|
+
"version": "0.0.10",
|
119
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
|
120
|
+
"integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8="
|
121
|
+
}
|
122
|
+
}
|
123
|
+
},
|
124
|
+
"portfinder": {
|
125
|
+
"version": "1.0.13",
|
126
|
+
"resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz",
|
127
|
+
"integrity": "sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek=",
|
128
|
+
"requires": {
|
129
|
+
"async": "^1.5.2",
|
130
|
+
"debug": "^2.2.0",
|
131
|
+
"mkdirp": "0.5.x"
|
132
|
+
}
|
133
|
+
},
|
134
|
+
"qs": {
|
135
|
+
"version": "2.3.3",
|
136
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz",
|
137
|
+
"integrity": "sha1-6eha2+ddoLvkyOBHaghikPhjtAQ="
|
138
|
+
},
|
139
|
+
"requires-port": {
|
140
|
+
"version": "1.0.0",
|
141
|
+
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
|
142
|
+
"integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8="
|
143
|
+
},
|
144
|
+
"union": {
|
145
|
+
"version": "0.4.6",
|
146
|
+
"resolved": "https://registry.npmjs.org/union/-/union-0.4.6.tgz",
|
147
|
+
"integrity": "sha1-GY+9rrolTniLDvy2MLwR8kopWeA=",
|
148
|
+
"requires": {
|
149
|
+
"qs": "~2.3.3"
|
150
|
+
}
|
151
|
+
},
|
152
|
+
"url-join": {
|
153
|
+
"version": "2.0.2",
|
154
|
+
"resolved": "https://registry.npmjs.org/url-join/-/url-join-2.0.2.tgz",
|
155
|
+
"integrity": "sha1-wHJ1aWetJLi1nldBVRyqx49QuLc="
|
156
|
+
},
|
157
|
+
"wordwrap": {
|
158
|
+
"version": "0.0.3",
|
159
|
+
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
|
160
|
+
"integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"name": "@esri/arcgis-rest-demo-vanilla",
|
3
|
+
"version": "2.0.4",
|
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.0.4",
|
10
|
+
"@esri/arcgis-rest-request": "^2.0.4"
|
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>
|