sintfacilis 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.env.example +2 -0
- package/.eslintrc.js +20 -0
- package/.github/workflows/deploy-docs.yml +27 -0
- package/.github/workflows/pre-release-tests.yml +45 -0
- package/.github/workflows/pull-request-tests.yml +45 -0
- package/.prettierignore +2 -0
- package/.prettierrc +19 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/codecov.yml +7 -0
- package/demos/.eslintrc.js +13 -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 +430 -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 +543 -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 +336 -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 +1008 -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 +543 -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 +610 -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 +93 -0
- package/demos/jsapi-integration/package-lock.json +247 -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 +432 -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 +474 -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 +227 -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 +5646 -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 +11455 -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 +28044 -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 +9622 -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/.eslintrc.js +12 -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 +39 -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 +106 -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 +104 -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/img/oauth-browser.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/jasmine.live.json +7 -0
- package/karma.conf.js +107 -0
- package/lerna.json +8 -0
- package/notes/README.md +68 -0
- package/package.json +141 -0
- package/packages/arcgis-rest-auth/README.md +71 -0
- package/packages/arcgis-rest-auth/package.json +69 -0
- package/packages/arcgis-rest-auth/post-message-auth-spec.md +70 -0
- package/packages/arcgis-rest-auth/src/ApiKey.ts +41 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +122 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +1355 -0
- package/packages/arcgis-rest-auth/src/app-tokens.ts +131 -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 +13 -0
- package/packages/arcgis-rest-auth/src/validate-app-access.ts +68 -0
- package/packages/arcgis-rest-auth/test/ApiKey.test.ts +35 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +2377 -0
- package/packages/arcgis-rest-auth/test/app-tokens.test.ts +95 -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-demographics/README.md +75 -0
- package/packages/arcgis-rest-demographics/package.json +69 -0
- package/packages/arcgis-rest-demographics/src/getAvailableCountries.ts +113 -0
- package/packages/arcgis-rest-demographics/src/getAvailableDataCollections.ts +166 -0
- package/packages/arcgis-rest-demographics/src/getAvailableGeographyLevels.ts +88 -0
- package/packages/arcgis-rest-demographics/src/getGeography.ts +152 -0
- package/packages/arcgis-rest-demographics/src/helpers.ts +28 -0
- package/packages/arcgis-rest-demographics/src/index.ts +8 -0
- package/packages/arcgis-rest-demographics/src/queryDemographicData.ts +106 -0
- package/packages/arcgis-rest-demographics/test/getAvailableCountries.test.ts +92 -0
- package/packages/arcgis-rest-demographics/test/getAvailableDataCollections.test.ts +115 -0
- package/packages/arcgis-rest-demographics/test/getAvailableGeographyLevels.test.ts +72 -0
- package/packages/arcgis-rest-demographics/test/getGeography.test.ts +141 -0
- package/packages/arcgis-rest-demographics/test/mocks/responses.ts +4 -0
- package/packages/arcgis-rest-demographics/test/queryDemographicData.test.live.ts +42 -0
- package/packages/arcgis-rest-demographics/test/queryDemographicData.test.ts +113 -0
- package/packages/arcgis-rest-demographics/tsconfig.json +6 -0
- package/packages/arcgis-rest-feature-layer/README.md +77 -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 +95 -0
- package/packages/arcgis-rest-feature-layer/src/decodeValues.ts +122 -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/getAllLayersAndTables.ts +30 -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 +97 -0
- package/packages/arcgis-rest-feature-layer/src/index.ts +32 -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 +60 -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 +197 -0
- package/packages/arcgis-rest-feature-layer/test/decodeValues.test.ts +67 -0
- package/packages/arcgis-rest-feature-layer/test/getAllLayersAndTables.test.ts +28 -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/helpers.test.ts +25 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/allLayersAndTablesResponse.ts +906 -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.json +66 -0
- package/packages/arcgis-rest-geocoding/src/bulk.ts +104 -0
- package/packages/arcgis-rest-geocoding/src/geocode.ts +166 -0
- package/packages/arcgis-rest-geocoding/src/helpers.ts +56 -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 +253 -0
- package/packages/arcgis-rest-geocoding/test/helpers.test.ts +85 -0
- package/packages/arcgis-rest-geocoding/test/mocks/responses.ts +591 -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.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 +69 -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 +292 -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 +141 -0
- package/packages/arcgis-rest-portal/src/items/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/items/update.ts +185 -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/services/get-unique-service-name.ts +35 -0
- package/packages/arcgis-rest-portal/src/services/is-service-name-available.ts +30 -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 +336 -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 +391 -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 +28 -0
- package/packages/arcgis-rest-portal/src/util/get-portal.ts +53 -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 +13 -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 +146 -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 +400 -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 +261 -0
- package/packages/arcgis-rest-portal/test/items/search.test.ts +275 -0
- package/packages/arcgis-rest-portal/test/items/update.test.ts +556 -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 +144 -0
- package/packages/arcgis-rest-portal/test/services/get-unique-service-name.test.ts +59 -0
- package/packages/arcgis-rest-portal/test/services/is-service-name-available.test.ts +46 -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 +1328 -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.json +60 -0
- package/packages/arcgis-rest-request/src/index.ts +25 -0
- package/packages/arcgis-rest-request/src/request.ts +433 -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 +22 -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 +54 -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 +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 +621 -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.json +65 -0
- package/packages/arcgis-rest-routing/src/closestFacility.ts +225 -0
- package/packages/arcgis-rest-routing/src/helpers.ts +104 -0
- package/packages/arcgis-rest-routing/src/index.ts +14 -0
- package/packages/arcgis-rest-routing/src/originDestinationMatrix.ts +223 -0
- package/packages/arcgis-rest-routing/src/serviceArea.ts +173 -0
- package/packages/arcgis-rest-routing/src/solveRoute.ts +180 -0
- package/packages/arcgis-rest-routing/test/closestFacility.test.ts +683 -0
- package/packages/arcgis-rest-routing/test/mocks/inputs.ts +132 -0
- package/packages/arcgis-rest-routing/test/mocks/responses.ts +13316 -0
- package/packages/arcgis-rest-routing/test/originDestinationMatrix.test.ts +795 -0
- package/packages/arcgis-rest-routing/test/serviceArea.test.ts +601 -0
- package/packages/arcgis-rest-routing/test/solveRoute.test.ts +677 -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.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/get-service-admin-info.ts +34 -0
- package/packages/arcgis-rest-service-admin/src/get-view-sources.ts +20 -0
- package/packages/arcgis-rest-service-admin/src/index.ts +14 -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/get-service-admin-info.test.ts +37 -0
- package/packages/arcgis-rest-service-admin/test/get-view-sources.test.ts +40 -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 +5 -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 +42 -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 +156 -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 +1405 -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/umd-base-profile.js +81 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,95 @@
|
|
1
|
+
/* Copyright (c) 2018-2020 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import * as fetchMock from "fetch-mock";
|
5
|
+
|
6
|
+
import { exchangeToken, platformSelf } from "../src/app-tokens";
|
7
|
+
|
8
|
+
describe("app-token functions: ", () => {
|
9
|
+
describe("exchangeToken:", () => {
|
10
|
+
it("makes a request to /oauth2/exchangeToken passing params", () => {
|
11
|
+
const EXCHANGE_TOKEN_URL =
|
12
|
+
"https://www.arcgis.com/sharing/rest/oauth2/exchangeToken";
|
13
|
+
fetchMock.postOnce(EXCHANGE_TOKEN_URL, {
|
14
|
+
token: "APP-TOKEN",
|
15
|
+
});
|
16
|
+
return exchangeToken("FAKE-TOKEN", "CLIENT-ID-ABC123")
|
17
|
+
.then((response) => {
|
18
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
19
|
+
EXCHANGE_TOKEN_URL
|
20
|
+
);
|
21
|
+
expect(url).toEqual(EXCHANGE_TOKEN_URL);
|
22
|
+
expect(options.body).toContain("f=json");
|
23
|
+
expect(options.body).toContain("token=FAKE-TOKEN");
|
24
|
+
expect(options.body).toContain("client_id=CLIENT-ID-ABC123");
|
25
|
+
expect(response).toEqual("APP-TOKEN");
|
26
|
+
})
|
27
|
+
.catch((e) => fail(e));
|
28
|
+
});
|
29
|
+
it("takes a portalUrl", () => {
|
30
|
+
const PORTAL_BASE_URL = "https://my-portal.com/instance/sharing/rest";
|
31
|
+
const PORTAL_EXCHANGE_URL = `${PORTAL_BASE_URL}/oauth2/exchangeToken`;
|
32
|
+
fetchMock.postOnce(PORTAL_EXCHANGE_URL, {
|
33
|
+
valid: true,
|
34
|
+
viewOnlyUserTypeApp: false,
|
35
|
+
});
|
36
|
+
return exchangeToken("FAKE-TOKEN", "CLIENT-ID-ABC123", PORTAL_BASE_URL)
|
37
|
+
.then((response) => {
|
38
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
39
|
+
PORTAL_EXCHANGE_URL
|
40
|
+
);
|
41
|
+
expect(url).toEqual(PORTAL_EXCHANGE_URL);
|
42
|
+
})
|
43
|
+
.catch((e) => fail(e));
|
44
|
+
});
|
45
|
+
});
|
46
|
+
|
47
|
+
describe("platformSelf:", () => {
|
48
|
+
it("makes a request to /oauth2/platformSelf passing params", () => {
|
49
|
+
const PLATFORM_SELF_URL =
|
50
|
+
"https://www.arcgis.com/sharing/rest/oauth2/platformSelf?f=json";
|
51
|
+
fetchMock.postOnce(PLATFORM_SELF_URL, {
|
52
|
+
username: "jsmith",
|
53
|
+
token: "APP-TOKEN",
|
54
|
+
});
|
55
|
+
return platformSelf(
|
56
|
+
"CLIENT-ID-ABC123",
|
57
|
+
"https://hub.arcgis.com/torii-provider-arcgis/redirect.html"
|
58
|
+
)
|
59
|
+
.then((response) => {
|
60
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
61
|
+
PLATFORM_SELF_URL
|
62
|
+
);
|
63
|
+
expect(url).toEqual(PLATFORM_SELF_URL);
|
64
|
+
const headers = options.headers || ({} as any);
|
65
|
+
expect(headers["X-Esri-Auth-Redirect-Uri"]).toBe(
|
66
|
+
"https://hub.arcgis.com/torii-provider-arcgis/redirect.html"
|
67
|
+
);
|
68
|
+
expect(options.credentials).toBe(
|
69
|
+
"include",
|
70
|
+
"fetch should send cookie"
|
71
|
+
);
|
72
|
+
expect(headers["X-Esri-Auth-Client-Id"]).toBe("CLIENT-ID-ABC123");
|
73
|
+
expect(response.token).toEqual("APP-TOKEN");
|
74
|
+
expect(response.username).toEqual("jsmith");
|
75
|
+
})
|
76
|
+
.catch((e) => fail(e));
|
77
|
+
});
|
78
|
+
it("takes a portalUrl", () => {
|
79
|
+
const PORTAL_BASE_URL = "https://my-portal.com/instance/sharing/rest";
|
80
|
+
const PORTAL_PLATFORM_SELF_URL = `${PORTAL_BASE_URL}/oauth2/platformSelf?f=json`;
|
81
|
+
fetchMock.postOnce(PORTAL_PLATFORM_SELF_URL, {
|
82
|
+
username: "jsmith",
|
83
|
+
token: "APP-TOKEN",
|
84
|
+
});
|
85
|
+
return platformSelf("FAKE-TOKEN", "CLIENT-ID-ABC123", PORTAL_BASE_URL)
|
86
|
+
.then((response) => {
|
87
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
88
|
+
PORTAL_PLATFORM_SELF_URL
|
89
|
+
);
|
90
|
+
expect(url).toEqual(PORTAL_PLATFORM_SELF_URL);
|
91
|
+
})
|
92
|
+
.catch((e) => fail(e));
|
93
|
+
});
|
94
|
+
});
|
95
|
+
});
|
@@ -0,0 +1,323 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import {
|
5
|
+
isFederated,
|
6
|
+
isOnline,
|
7
|
+
getOnlineEnvironment,
|
8
|
+
normalizeOnlinePortalUrl,
|
9
|
+
canUseOnlineToken
|
10
|
+
} from "../src/federation-utils";
|
11
|
+
|
12
|
+
describe("federation utils", () => {
|
13
|
+
describe("isOnline()", () => {
|
14
|
+
it("should detect if a url is part of ArcGIS Online or not", () => {
|
15
|
+
// https standard portal URLs
|
16
|
+
expect(isOnline("https://devext.arcgis.com/sharing/rest")).toBe(true);
|
17
|
+
expect(isOnline("https://qaext.arcgis.com/sharing/rest")).toBe(true);
|
18
|
+
expect(isOnline("https://www.arcgis.com/sharing/rest")).toBe(true);
|
19
|
+
|
20
|
+
// https org portal URLs
|
21
|
+
expect(isOnline("https://someorg.mapsdev.arcgis.com/sharing/rest")).toBe(
|
22
|
+
true
|
23
|
+
);
|
24
|
+
expect(isOnline("https://someorg.mapsqa.arcgis.com/sharing/rest")).toBe(
|
25
|
+
true
|
26
|
+
);
|
27
|
+
expect(isOnline("https://someorg.maps.arcgis.com/sharing/rest")).toBe(
|
28
|
+
true
|
29
|
+
);
|
30
|
+
|
31
|
+
// http standard portal URLs
|
32
|
+
expect(isOnline("http://devext.arcgis.com/sharing/rest")).toBe(true);
|
33
|
+
expect(isOnline("http://qaext.arcgis.com/sharing/rest")).toBe(true);
|
34
|
+
expect(isOnline("http://www.arcgis.com/sharing/rest")).toBe(true);
|
35
|
+
|
36
|
+
// http org portal URLs
|
37
|
+
expect(isOnline("http://someorg.mapsdev.arcgis.com/sharing/rest")).toBe(
|
38
|
+
true
|
39
|
+
);
|
40
|
+
expect(isOnline("http://someorg.mapsqa.arcgis.com/sharing/rest")).toBe(
|
41
|
+
true
|
42
|
+
);
|
43
|
+
expect(isOnline("http://someorg.maps.arcgis.com/sharing/rest")).toBe(
|
44
|
+
true
|
45
|
+
);
|
46
|
+
|
47
|
+
// online service URLs
|
48
|
+
expect(
|
49
|
+
isOnline(
|
50
|
+
"https://services1.arcgis.com/Hp6G80Pky0om7QvQ/arcgis/rest/services/PowerPlants/FeatureServer/"
|
51
|
+
)
|
52
|
+
).toBe(true);
|
53
|
+
expect(
|
54
|
+
isOnline(
|
55
|
+
"https://services8.arcgis.com/Q1W9j3Lr1BaxMiWi/arcgis/rest/info"
|
56
|
+
)
|
57
|
+
).toBe(true);
|
58
|
+
|
59
|
+
// non online URLs
|
60
|
+
expect(
|
61
|
+
isOnline(
|
62
|
+
"https://mapservices.nps.gov/arcgis/rest/services/LandResourcesDivisionTractAndBoundaryService/MapServer"
|
63
|
+
)
|
64
|
+
).toBe(false);
|
65
|
+
});
|
66
|
+
});
|
67
|
+
|
68
|
+
describe("getOnlineEnvironment()", () => {
|
69
|
+
it("should fetch the proper ArcGIS Online Environment for a variety of URLs", () => {
|
70
|
+
// https standard portal URLs
|
71
|
+
expect(
|
72
|
+
getOnlineEnvironment("https://devext.arcgis.com/sharing/rest")
|
73
|
+
).toBe("dev");
|
74
|
+
expect(
|
75
|
+
getOnlineEnvironment("https://qaext.arcgis.com/sharing/rest")
|
76
|
+
).toBe("qa");
|
77
|
+
expect(getOnlineEnvironment("https://www.arcgis.com/sharing/rest")).toBe(
|
78
|
+
"production"
|
79
|
+
);
|
80
|
+
|
81
|
+
// https org portal URLs
|
82
|
+
expect(
|
83
|
+
getOnlineEnvironment("https://someorg.mapsdev.arcgis.com/sharing/rest")
|
84
|
+
).toBe("dev");
|
85
|
+
expect(
|
86
|
+
getOnlineEnvironment("https://someorg.mapsqa.arcgis.com/sharing/rest")
|
87
|
+
).toBe("qa");
|
88
|
+
expect(
|
89
|
+
getOnlineEnvironment("https://someorg.maps.arcgis.com/sharing/rest")
|
90
|
+
).toBe("production");
|
91
|
+
|
92
|
+
// http standard portal URLs
|
93
|
+
expect(
|
94
|
+
getOnlineEnvironment("http://devext.arcgis.com/sharing/rest")
|
95
|
+
).toBe("dev");
|
96
|
+
expect(getOnlineEnvironment("http://qaext.arcgis.com/sharing/rest")).toBe(
|
97
|
+
"qa"
|
98
|
+
);
|
99
|
+
expect(getOnlineEnvironment("http://www.arcgis.com/sharing/rest")).toBe(
|
100
|
+
"production"
|
101
|
+
);
|
102
|
+
|
103
|
+
// http org portal URLs
|
104
|
+
expect(
|
105
|
+
getOnlineEnvironment("http://someorg.mapsdev.arcgis.com/sharing/rest")
|
106
|
+
).toBe("dev");
|
107
|
+
expect(
|
108
|
+
getOnlineEnvironment("http://someorg.mapsqa.arcgis.com/sharing/rest")
|
109
|
+
).toBe("qa");
|
110
|
+
expect(
|
111
|
+
getOnlineEnvironment("http://someorg.maps.arcgis.com/sharing/rest")
|
112
|
+
).toBe("production");
|
113
|
+
|
114
|
+
// online service URLs
|
115
|
+
expect(
|
116
|
+
getOnlineEnvironment(
|
117
|
+
"https://services1.arcgis.com/Hp6G80Pky0om7QvQ/arcgis/rest/services/PowerPlants/FeatureServer/"
|
118
|
+
)
|
119
|
+
).toBe("production");
|
120
|
+
|
121
|
+
expect(
|
122
|
+
getOnlineEnvironment(
|
123
|
+
"https://services8.arcgis.com/Q1W9j3Lr1BaxMiWi/arcgis/rest/info"
|
124
|
+
)
|
125
|
+
).toBe("production");
|
126
|
+
|
127
|
+
expect(
|
128
|
+
getOnlineEnvironment(
|
129
|
+
"https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer"
|
130
|
+
)
|
131
|
+
).toBe("production");
|
132
|
+
|
133
|
+
expect(
|
134
|
+
getOnlineEnvironment(
|
135
|
+
"https://servicesdev.arcgis.com/kRtcltUX8zQf4sFu/arcgis/rest/services/test/FeatureServer"
|
136
|
+
)
|
137
|
+
).toBe("dev");
|
138
|
+
|
139
|
+
// non online URLs
|
140
|
+
expect(
|
141
|
+
getOnlineEnvironment(
|
142
|
+
"https://mapservices.nps.gov/arcgis/rest/services/LandResourcesDivisionTractAndBoundaryService/MapServer"
|
143
|
+
)
|
144
|
+
).toBe(null);
|
145
|
+
});
|
146
|
+
});
|
147
|
+
|
148
|
+
describe("normalizeOnlinePortalUrl()", () => {
|
149
|
+
it("should normalize portal URLs for ArcGIS Online organzation portals", () => {
|
150
|
+
expect(
|
151
|
+
normalizeOnlinePortalUrl("https://devext.arcgis.com/sharing/rest")
|
152
|
+
).toBe("https://devext.arcgis.com/sharing/rest");
|
153
|
+
expect(
|
154
|
+
normalizeOnlinePortalUrl("https://qaext.arcgis.com/sharing/rest")
|
155
|
+
).toBe("https://qaext.arcgis.com/sharing/rest");
|
156
|
+
expect(
|
157
|
+
normalizeOnlinePortalUrl("https://www.arcgis.com/sharing/rest")
|
158
|
+
).toBe("https://www.arcgis.com/sharing/rest");
|
159
|
+
|
160
|
+
// https org portal URLs
|
161
|
+
expect(
|
162
|
+
normalizeOnlinePortalUrl(
|
163
|
+
"https://someorg.mapsdev.arcgis.com/sharing/rest"
|
164
|
+
)
|
165
|
+
).toBe("https://devext.arcgis.com/sharing/rest");
|
166
|
+
expect(
|
167
|
+
normalizeOnlinePortalUrl(
|
168
|
+
"https://someorg.mapsqa.arcgis.com/sharing/rest"
|
169
|
+
)
|
170
|
+
).toBe("https://qaext.arcgis.com/sharing/rest");
|
171
|
+
expect(
|
172
|
+
normalizeOnlinePortalUrl("https://someorg.maps.arcgis.com/sharing/rest")
|
173
|
+
).toBe("https://www.arcgis.com/sharing/rest");
|
174
|
+
|
175
|
+
// non AGOL portals
|
176
|
+
expect(
|
177
|
+
normalizeOnlinePortalUrl("https://mygis.city.gov/sharing/rest")
|
178
|
+
).toBe("https://mygis.city.gov/sharing/rest");
|
179
|
+
});
|
180
|
+
});
|
181
|
+
|
182
|
+
describe("canUseOnlineToken()", () => {
|
183
|
+
it("should allow using the portal token for requests between online where the domains match", () => {
|
184
|
+
expect(
|
185
|
+
canUseOnlineToken(
|
186
|
+
"https://devext.arcgis.com/sharing/rest",
|
187
|
+
"https://servicesdev.arcgis.com/f8b/arcgis/rest/services/Custom/FeatureServer/0"
|
188
|
+
)
|
189
|
+
).toBe(true);
|
190
|
+
|
191
|
+
expect(
|
192
|
+
canUseOnlineToken(
|
193
|
+
"https://qaext.arcgis.com/sharing/rest",
|
194
|
+
"https://servicesqa.arcgis.com/f8b/arcgis/rest/services/Custom/FeatureServer/0"
|
195
|
+
)
|
196
|
+
).toBe(true);
|
197
|
+
|
198
|
+
expect(
|
199
|
+
canUseOnlineToken(
|
200
|
+
"https://www.arcgis.com/sharing/rest",
|
201
|
+
"https://services.arcgis.com/f8b/arcgis/rest/services/Custom/FeatureServer/0"
|
202
|
+
)
|
203
|
+
).toBe(true);
|
204
|
+
});
|
205
|
+
|
206
|
+
it("should normalize org portals for checking", () => {
|
207
|
+
expect(
|
208
|
+
canUseOnlineToken(
|
209
|
+
"https://myorg.mapsdev.arcgis.com/sharing/rest",
|
210
|
+
"https://servicesdev.arcgis.com/f8b/arcgis/rest/services/Custom/FeatureServer/0"
|
211
|
+
)
|
212
|
+
).toBe(true);
|
213
|
+
|
214
|
+
expect(
|
215
|
+
canUseOnlineToken(
|
216
|
+
"https://myorg.mapsqa.arcgis.com/sharing/rest",
|
217
|
+
"https://servicesqa.arcgis.com/f8b/arcgis/rest/services/Custom/FeatureServer/0"
|
218
|
+
)
|
219
|
+
).toBe(true);
|
220
|
+
|
221
|
+
expect(
|
222
|
+
canUseOnlineToken(
|
223
|
+
"https://myorg.maps.arcgis.com/sharing/rest",
|
224
|
+
"https://services.arcgis.com/f8b/arcgis/rest/services/Custom/FeatureServer/0"
|
225
|
+
)
|
226
|
+
).toBe(true);
|
227
|
+
});
|
228
|
+
|
229
|
+
it("should not allow cross environment token use", () => {
|
230
|
+
expect(
|
231
|
+
canUseOnlineToken(
|
232
|
+
"https://myorg.mapsdev.arcgis.com/sharing/rest",
|
233
|
+
"https://services.arcgis.com/f8b/arcgis/rest/services/Custom/FeatureServer/0"
|
234
|
+
)
|
235
|
+
).toBe(false);
|
236
|
+
|
237
|
+
expect(
|
238
|
+
canUseOnlineToken(
|
239
|
+
"https://myorg.maps.arcgis.com/sharing/rest",
|
240
|
+
"https://servicesqa.arcgis.com/f8b/arcgis/rest/services/Custom/FeatureServer/0"
|
241
|
+
)
|
242
|
+
).toBe(false);
|
243
|
+
});
|
244
|
+
|
245
|
+
it("should not allow the online portal token to be sent outside online", () => {
|
246
|
+
expect(
|
247
|
+
canUseOnlineToken(
|
248
|
+
"https://devext.arcgis.com/sharing/rest",
|
249
|
+
"https://random.city.gov/arcgis/rest/services/parcels/FeatureServer"
|
250
|
+
)
|
251
|
+
).toBe(false);
|
252
|
+
|
253
|
+
expect(
|
254
|
+
canUseOnlineToken(
|
255
|
+
"https://myorg.maps.arcgis.com/sharing/rest",
|
256
|
+
"https://random.city.gov/arcgis/rest/services/parcels/FeatureServer"
|
257
|
+
)
|
258
|
+
).toBe(false);
|
259
|
+
});
|
260
|
+
});
|
261
|
+
|
262
|
+
describe("isFederated", () => {
|
263
|
+
it("should allow Online ORG URLs to match Online owning systems URL", () => {
|
264
|
+
expect(
|
265
|
+
isFederated(
|
266
|
+
"https://devext.arcgis.com",
|
267
|
+
"https://myorg.mapsdev.arcgis.com/sharing/rest"
|
268
|
+
)
|
269
|
+
).toBe(true);
|
270
|
+
|
271
|
+
expect(
|
272
|
+
isFederated(
|
273
|
+
"https://qaext.arcgis.com",
|
274
|
+
"https://myorg.mapsqa.arcgis.com/sharing/rest"
|
275
|
+
)
|
276
|
+
).toBe(true);
|
277
|
+
|
278
|
+
expect(
|
279
|
+
isFederated(
|
280
|
+
"https://www.arcgis.com",
|
281
|
+
"https://myorg.maps.arcgis.com/sharing/rest"
|
282
|
+
)
|
283
|
+
).toBe(true);
|
284
|
+
|
285
|
+
expect(
|
286
|
+
isFederated(
|
287
|
+
"https://mygig.city.gov",
|
288
|
+
"https://myorg.maps.arcgis.com/sharing/rest"
|
289
|
+
)
|
290
|
+
).toBe(false);
|
291
|
+
});
|
292
|
+
|
293
|
+
it("should allow https/http mismatches", () => {
|
294
|
+
expect(
|
295
|
+
isFederated(
|
296
|
+
"http://devext.arcgis.com",
|
297
|
+
"https://myorg.mapsdev.arcgis.com/sharing/rest"
|
298
|
+
)
|
299
|
+
).toBe(true);
|
300
|
+
|
301
|
+
expect(
|
302
|
+
isFederated(
|
303
|
+
"https://qaext.arcgis.com",
|
304
|
+
"http://myorg.mapsqa.arcgis.com/sharing/rest"
|
305
|
+
)
|
306
|
+
).toBe(true);
|
307
|
+
|
308
|
+
expect(
|
309
|
+
isFederated(
|
310
|
+
"http://devext.arcgis.com",
|
311
|
+
"https://devext.arcgis.com/sharing/rest"
|
312
|
+
)
|
313
|
+
).toBe(true);
|
314
|
+
|
315
|
+
expect(
|
316
|
+
isFederated(
|
317
|
+
"https://qaext.arcgis.com",
|
318
|
+
"http://www.arcgis.com/sharing/rest"
|
319
|
+
)
|
320
|
+
).toBe(false);
|
321
|
+
});
|
322
|
+
});
|
323
|
+
});
|
@@ -0,0 +1,112 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import * as fetchMock from "fetch-mock";
|
5
|
+
import { fetchToken } from "../src/index";
|
6
|
+
|
7
|
+
const TOKEN_URL = "https://www.arcgis.com/sharing/rest/oauth2/token";
|
8
|
+
|
9
|
+
describe("fetchToken()", () => {
|
10
|
+
afterEach(fetchMock.restore);
|
11
|
+
|
12
|
+
it("should request a token with `client_credentials`, `client_id` and `client_secret`", done => {
|
13
|
+
fetchMock.postOnce(TOKEN_URL, {
|
14
|
+
access_token: "token",
|
15
|
+
expires_in: 1800,
|
16
|
+
ssl: true
|
17
|
+
});
|
18
|
+
|
19
|
+
fetchToken(TOKEN_URL, {
|
20
|
+
params: {
|
21
|
+
client_id: "clientId",
|
22
|
+
client_secret: "clientSecret",
|
23
|
+
grant_type: "client_credentials"
|
24
|
+
}
|
25
|
+
})
|
26
|
+
.then(response => {
|
27
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
28
|
+
TOKEN_URL
|
29
|
+
);
|
30
|
+
expect(url).toEqual(TOKEN_URL);
|
31
|
+
expect(options.body).toContain("f=json");
|
32
|
+
expect(options.body).toContain("client_id=clientId");
|
33
|
+
expect(options.body).toContain("client_secret=clientSecret");
|
34
|
+
expect(options.body).toContain("grant_type=client_credentials");
|
35
|
+
expect(response.token).toEqual("token");
|
36
|
+
expect(response.expires).toBeGreaterThan(Date.now());
|
37
|
+
expect(response.ssl).toEqual(true);
|
38
|
+
done();
|
39
|
+
})
|
40
|
+
.catch(e => {
|
41
|
+
fail(e);
|
42
|
+
});
|
43
|
+
});
|
44
|
+
|
45
|
+
it("should request a token with `authorization_code`, `client_id` and `redirect_uri`", done => {
|
46
|
+
fetchMock.postOnce(TOKEN_URL, {
|
47
|
+
access_token: "token",
|
48
|
+
expires_in: 1800,
|
49
|
+
refresh_token: "refreshToken",
|
50
|
+
username: "Casey",
|
51
|
+
ssl: true
|
52
|
+
});
|
53
|
+
|
54
|
+
fetchToken(TOKEN_URL, {
|
55
|
+
params: {
|
56
|
+
client_id: "clientId",
|
57
|
+
redirect_uri: "https://example-app.com/redirect-uri",
|
58
|
+
code: "authorizationCode",
|
59
|
+
grant_type: "authorization_code"
|
60
|
+
}
|
61
|
+
})
|
62
|
+
.then(response => {
|
63
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
64
|
+
TOKEN_URL
|
65
|
+
);
|
66
|
+
expect(url).toEqual(TOKEN_URL);
|
67
|
+
expect(options.body).toContain("f=json");
|
68
|
+
expect(options.body).toContain("client_id=clientId");
|
69
|
+
expect(options.body).toContain(
|
70
|
+
`redirect_uri=${encodeURIComponent(
|
71
|
+
"https://example-app.com/redirect-uri"
|
72
|
+
)}`
|
73
|
+
);
|
74
|
+
expect(options.body).toContain("grant_type=authorization_code");
|
75
|
+
expect(options.body).toContain("code=authorizationCode");
|
76
|
+
expect(response.token).toEqual("token");
|
77
|
+
expect(response.refreshToken).toEqual("refreshToken");
|
78
|
+
expect(response.username).toEqual("Casey");
|
79
|
+
expect(response.expires).toBeGreaterThan(Date.now());
|
80
|
+
expect(response.ssl).toEqual(true);
|
81
|
+
done();
|
82
|
+
})
|
83
|
+
.catch(e => {
|
84
|
+
fail(e);
|
85
|
+
});
|
86
|
+
});
|
87
|
+
|
88
|
+
it("should return ssl: false when there is no ssl property returned from endpoint response", done => {
|
89
|
+
fetchMock.postOnce(TOKEN_URL, {
|
90
|
+
access_token: "token",
|
91
|
+
expires_in: 1800,
|
92
|
+
refresh_token: "refreshToken",
|
93
|
+
username: "Casey"
|
94
|
+
});
|
95
|
+
|
96
|
+
fetchToken(TOKEN_URL, {
|
97
|
+
params: {
|
98
|
+
client_id: "clientId",
|
99
|
+
redirect_uri: "https://example-app.com/redirect-uri",
|
100
|
+
code: "authorizationCode",
|
101
|
+
grant_type: "authorization_code"
|
102
|
+
}
|
103
|
+
})
|
104
|
+
.then(response => {
|
105
|
+
expect(response.ssl).toEqual(false);
|
106
|
+
done();
|
107
|
+
})
|
108
|
+
.catch(e => {
|
109
|
+
fail(e);
|
110
|
+
});
|
111
|
+
});
|
112
|
+
});
|
@@ -0,0 +1,102 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import * as fetchMock from "fetch-mock";
|
5
|
+
import { generateToken } from "../src/index";
|
6
|
+
import { TOMORROW } from "./utils";
|
7
|
+
|
8
|
+
const TOKEN_URL = "https://www.arcgis.com/sharing/rest/generateToken";
|
9
|
+
|
10
|
+
describe("generateToken()", () => {
|
11
|
+
afterEach(fetchMock.restore);
|
12
|
+
|
13
|
+
it("should generate a token for a username and password", done => {
|
14
|
+
fetchMock.postOnce(TOKEN_URL, {
|
15
|
+
token: "token",
|
16
|
+
expires: TOMORROW.getTime()
|
17
|
+
});
|
18
|
+
|
19
|
+
generateToken(TOKEN_URL, {
|
20
|
+
params: {
|
21
|
+
username: "Casey",
|
22
|
+
password: "Jones"
|
23
|
+
}
|
24
|
+
})
|
25
|
+
.then(response => {
|
26
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
27
|
+
TOKEN_URL
|
28
|
+
);
|
29
|
+
expect(url).toEqual(TOKEN_URL);
|
30
|
+
expect(options.body).toContain("f=json");
|
31
|
+
expect(options.body).toContain("username=Casey");
|
32
|
+
expect(options.body).toContain("password=Jones");
|
33
|
+
expect(response.token).toEqual("token");
|
34
|
+
expect(response.expires).toEqual(TOMORROW.getTime());
|
35
|
+
done();
|
36
|
+
})
|
37
|
+
.catch(e => {
|
38
|
+
fail(e);
|
39
|
+
});
|
40
|
+
});
|
41
|
+
});
|
42
|
+
|
43
|
+
describe("generateToken() with custom fetch", () => {
|
44
|
+
const oldPromise = Promise;
|
45
|
+
const oldFetch = fetch;
|
46
|
+
const oldFormData = FormData;
|
47
|
+
|
48
|
+
beforeEach(() => {
|
49
|
+
Promise = undefined;
|
50
|
+
FormData = undefined;
|
51
|
+
Function("return this")().fetch = undefined;
|
52
|
+
});
|
53
|
+
|
54
|
+
afterEach(() => {
|
55
|
+
Promise = oldPromise;
|
56
|
+
FormData = oldFormData;
|
57
|
+
Function("return this")().fetch = oldFetch;
|
58
|
+
});
|
59
|
+
|
60
|
+
it("should generate a token for a username and password with custom fetch", done => {
|
61
|
+
Promise = oldPromise;
|
62
|
+
FormData = oldFormData;
|
63
|
+
|
64
|
+
const tokenResponse = {
|
65
|
+
token: "token",
|
66
|
+
expires: TOMORROW.getTime()
|
67
|
+
};
|
68
|
+
|
69
|
+
const MockFetchResponse = {
|
70
|
+
ok: true,
|
71
|
+
json() {
|
72
|
+
return Promise.resolve(tokenResponse);
|
73
|
+
},
|
74
|
+
blob() {
|
75
|
+
return Promise.resolve(new Blob([JSON.stringify(tokenResponse)]));
|
76
|
+
},
|
77
|
+
text() {
|
78
|
+
return Promise.resolve(JSON.stringify(tokenResponse));
|
79
|
+
}
|
80
|
+
};
|
81
|
+
|
82
|
+
const MockFetch = function() {
|
83
|
+
return Promise.resolve(MockFetchResponse);
|
84
|
+
};
|
85
|
+
|
86
|
+
generateToken(TOKEN_URL, {
|
87
|
+
params: {
|
88
|
+
username: "Casey",
|
89
|
+
password: "Jones"
|
90
|
+
},
|
91
|
+
fetch: MockFetch as any
|
92
|
+
})
|
93
|
+
.then(response => {
|
94
|
+
expect(response.token).toEqual(tokenResponse.token);
|
95
|
+
expect(response.expires).toEqual(tokenResponse.expires);
|
96
|
+
done();
|
97
|
+
})
|
98
|
+
.catch(e => {
|
99
|
+
fail(e);
|
100
|
+
});
|
101
|
+
});
|
102
|
+
});
|
@@ -0,0 +1,14 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
export const TOMORROW = (function() {
|
5
|
+
const now = new Date();
|
6
|
+
now.setDate(now.getDate() + 1);
|
7
|
+
return now;
|
8
|
+
})();
|
9
|
+
|
10
|
+
export const YESTERDAY = (function() {
|
11
|
+
const now = new Date();
|
12
|
+
now.setDate(now.getDate() - 1);
|
13
|
+
return now;
|
14
|
+
})();
|
@@ -0,0 +1,46 @@
|
|
1
|
+
/* Copyright (c) 2018-2020 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
import * as fetchMock from "fetch-mock";
|
4
|
+
|
5
|
+
import { validateAppAccess } from "../src/validate-app-access";
|
6
|
+
|
7
|
+
const VERIFYAPPACCESS_URL =
|
8
|
+
"https://www.arcgis.com/sharing/rest/oauth2/validateAppAccess";
|
9
|
+
|
10
|
+
describe("validateAppAccess: ", () => {
|
11
|
+
it("makes a request to /oauth2/validateAppAccess passing params", () => {
|
12
|
+
fetchMock.postOnce(VERIFYAPPACCESS_URL, {
|
13
|
+
valid: true,
|
14
|
+
viewOnlyUserTypeApp: false,
|
15
|
+
});
|
16
|
+
return validateAppAccess("FAKE-TOKEN", "abc123")
|
17
|
+
.then((response) => {
|
18
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
19
|
+
VERIFYAPPACCESS_URL
|
20
|
+
);
|
21
|
+
expect(url).toEqual(VERIFYAPPACCESS_URL);
|
22
|
+
expect(options.body).toContain("f=json");
|
23
|
+
expect(options.body).toContain("token=FAKE-TOKEN");
|
24
|
+
expect(options.body).toContain("client_id=abc123");
|
25
|
+
expect(response.valid).toEqual(true);
|
26
|
+
expect(response.viewOnlyUserTypeApp).toBe(false);
|
27
|
+
})
|
28
|
+
.catch((e) => fail(e));
|
29
|
+
});
|
30
|
+
it("takes a portalUrl", () => {
|
31
|
+
const PORTAL_BASE_URL = "https://my-portal.com/instance/sharing/rest";
|
32
|
+
const PORTAL_VERIFY_URL = `${PORTAL_BASE_URL}/oauth2/validateAppAccess`;
|
33
|
+
fetchMock.postOnce(PORTAL_VERIFY_URL, {
|
34
|
+
valid: true,
|
35
|
+
viewOnlyUserTypeApp: false,
|
36
|
+
});
|
37
|
+
return validateAppAccess("FAKE-TOKEN", "abc123", PORTAL_BASE_URL)
|
38
|
+
.then((response) => {
|
39
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
40
|
+
PORTAL_VERIFY_URL
|
41
|
+
);
|
42
|
+
expect(url).toEqual(PORTAL_VERIFY_URL);
|
43
|
+
})
|
44
|
+
.catch((e) => fail(e));
|
45
|
+
});
|
46
|
+
});
|