autculpa 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +2 -0
- package/.eslintrc.json +37 -0
- package/.github/workflows/deploy-docs.yml +27 -0
- package/.github/workflows/pre-release-tests.yml +49 -0
- package/.github/workflows/pull-request-tests.yml +49 -0
- package/.github/workflows/release.yml +75 -0
- package/.prettierignore +2 -0
- package/.prettierrc +19 -0
- package/.vscode/launch.json +25 -0
- package/.vscode/settings.json +5 -0
- package/codecov.yml +7 -0
- package/commitlint.config.cjs +41 -0
- package/demos/.eslintrc.js +13 -0
- package/demos/ago-node-cli/README.md +30 -0
- package/demos/ago-node-cli/ago.js +31 -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 +32 -0
- package/demos/ago-node-cli/package.json +29 -0
- package/demos/attachments-browser/README.md +7 -0
- package/demos/attachments-browser/index.html +165 -0
- package/demos/attachments-browser/package.json +15 -0
- package/demos/attachments-node/README.md +4 -0
- package/demos/attachments-node/image.jpg +0 -0
- package/demos/attachments-node/index.js +89 -0
- package/demos/attachments-node/package.json +19 -0
- package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
- package/demos/batch-geocoder-node/README.md +13 -0
- package/demos/batch-geocoder-node/batch-geocode.js +112 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package.json +34 -0
- package/demos/browser-es-modules/README.md +7 -0
- package/demos/browser-es-modules/index.html +38 -0
- package/demos/browser-es-modules/package.json +15 -0
- package/demos/deno/README.md +1 -0
- package/demos/deno/import_map.json +8 -0
- package/demos/deno/index.js +5 -0
- package/demos/express/README.md +16 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package.json +15 -0
- package/demos/express/server.js +37 -0
- package/demos/feature-service-browser/README.md +8 -0
- package/demos/feature-service-browser/index.html +122 -0
- package/demos/feature-service-browser/package.json +15 -0
- package/demos/geocoder-browser/README.md +12 -0
- package/demos/geocoder-browser/authenticate.html +29 -0
- package/demos/geocoder-browser/config.js.template +1 -0
- package/demos/geocoder-browser/index.html +139 -0
- package/demos/geocoder-browser/package.json +15 -0
- package/demos/jsapi-integration/README.md +26 -0
- package/demos/jsapi-integration/authenticate.html +29 -0
- package/demos/jsapi-integration/config.js +6 -0
- package/demos/jsapi-integration/index.html +91 -0
- package/demos/jsapi-integration/package.json +15 -0
- package/demos/node-cli-item-management/README.md +11 -0
- package/demos/node-cli-item-management/index.js +229 -0
- package/demos/node-cli-item-management/package.json +24 -0
- package/demos/node-cli-item-management/screenshot.png +0 -0
- package/demos/node-common-js/README.md +4 -0
- package/demos/node-common-js/index.js +5 -0
- package/demos/node-common-js/package.json +15 -0
- package/demos/node-es-modules/README.md +4 -0
- package/demos/node-es-modules/index.js +5 -0
- package/demos/node-es-modules/package.json +16 -0
- package/demos/oauth2-browser/README.md +17 -0
- package/demos/oauth2-browser/authenticate.html +29 -0
- package/demos/oauth2-browser/config.js.template +6 -0
- package/demos/oauth2-browser/index.html +223 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package.json +15 -0
- package/demos/oauth2-browser/style.css +36 -0
- package/demos/oauth2-browser-retry/README.md +32 -0
- package/demos/oauth2-browser-retry/authenticate.html +21 -0
- package/demos/oauth2-browser-retry/index.html +114 -0
- package/demos/oauth2-browser-retry/logo.svg +4 -0
- package/demos/oauth2-browser-retry/package.json +15 -0
- package/demos/parcel/README.md +8 -0
- package/demos/parcel/index.html +16 -0
- package/demos/parcel/index.js +8 -0
- package/demos/parcel/package.json +20 -0
- package/demos/snowpack/README.md +8 -0
- package/demos/snowpack/index.html +16 -0
- package/demos/snowpack/index.js +8 -0
- package/demos/snowpack/package.json +20 -0
- package/demos/snowpack/snowpack.config.js +3 -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.json +31 -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.json +22 -0
- package/demos/tree-shaking-rollup/rollup.config.js +13 -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.json +26 -0
- package/demos/tree-shaking-webpack/src/index.js +8 -0
- package/demos/tree-shaking-webpack/webpack.config.js +29 -0
- package/demos/vite/README.md +6 -0
- package/demos/vite/favicon.svg +15 -0
- package/demos/vite/index.html +13 -0
- package/demos/vite/main.js +8 -0
- package/demos/vite/package.json +18 -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.json +35 -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 +303 -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 +124 -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.json +47 -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 +102 -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 +61 -0
- package/docs/package.json +3 -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 +84 -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/jasmine.json +7 -0
- package/jasmine.live.json +7 -0
- package/karma.conf.cjs +128 -0
- package/package.json +140 -0
- package/packages/arcgis-rest-auth/CHANGELOG.md +80 -0
- package/packages/arcgis-rest-auth/README.md +71 -0
- package/packages/arcgis-rest-auth/package.json +66 -0
- package/packages/arcgis-rest-auth/src/index.ts +34 -0
- package/packages/arcgis-rest-auth/tsconfig.json +6 -0
- package/packages/arcgis-rest-demographics/CHANGELOG.md +14 -0
- package/packages/arcgis-rest-demographics/README.md +74 -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 +161 -0
- package/packages/arcgis-rest-demographics/src/getAvailableGeographyLevels.ts +86 -0
- package/packages/arcgis-rest-demographics/src/getGeography.ts +152 -0
- package/packages/arcgis-rest-demographics/src/helpers.ts +27 -0
- package/packages/arcgis-rest-demographics/src/index.ts +16 -0
- package/packages/arcgis-rest-demographics/src/queryDemographicData.ts +108 -0
- package/packages/arcgis-rest-demographics/test/getAvailableCountries.test.ts +89 -0
- package/packages/arcgis-rest-demographics/test/getAvailableDataCollections.test.ts +114 -0
- package/packages/arcgis-rest-demographics/test/getAvailableGeographyLevels.test.ts +69 -0
- package/packages/arcgis-rest-demographics/test/getGeography.test.ts +150 -0
- package/packages/arcgis-rest-demographics/test/mocks/responses.ts +4 -0
- package/packages/arcgis-rest-demographics/test/queryDemographicData.test.live.ts +50 -0
- package/packages/arcgis-rest-demographics/test/queryDemographicData.test.ts +127 -0
- package/packages/arcgis-rest-demographics/tsconfig.json +6 -0
- package/packages/arcgis-rest-feature-service/CHANGELOG.md +44 -0
- package/packages/arcgis-rest-feature-service/README.md +75 -0
- package/packages/arcgis-rest-feature-service/package.json +70 -0
- package/packages/arcgis-rest-feature-service/src/add.ts +55 -0
- package/packages/arcgis-rest-feature-service/src/addAttachment.ts +53 -0
- package/packages/arcgis-rest-feature-service/src/addToServiceDefinition.ts +74 -0
- package/packages/arcgis-rest-feature-service/src/applyEdits.ts +94 -0
- package/packages/arcgis-rest-feature-service/src/createFeatureService.ts +191 -0
- package/packages/arcgis-rest-feature-service/src/decodeValues.ts +126 -0
- package/packages/arcgis-rest-feature-service/src/delete.ts +62 -0
- package/packages/arcgis-rest-feature-service/src/deleteAttachments.ts +52 -0
- package/packages/arcgis-rest-feature-service/src/getAllLayersAndTables.ts +30 -0
- package/packages/arcgis-rest-feature-service/src/getAttachments.ts +55 -0
- package/packages/arcgis-rest-feature-service/src/getLayer.ts +23 -0
- package/packages/arcgis-rest-feature-service/src/getService.ts +25 -0
- package/packages/arcgis-rest-feature-service/src/getServiceAdminInfo.ts +33 -0
- package/packages/arcgis-rest-feature-service/src/getViewSources.ts +19 -0
- package/packages/arcgis-rest-feature-service/src/helpers.ts +768 -0
- package/packages/arcgis-rest-feature-service/src/index.ts +37 -0
- package/packages/arcgis-rest-feature-service/src/query.ts +200 -0
- package/packages/arcgis-rest-feature-service/src/queryRelated.ts +86 -0
- package/packages/arcgis-rest-feature-service/src/update.ts +65 -0
- package/packages/arcgis-rest-feature-service/src/updateAttachment.ts +59 -0
- package/packages/arcgis-rest-feature-service/src/updateServiceDefinition.ts +53 -0
- package/packages/arcgis-rest-feature-service/test/addToServiceDefinition.test.ts +350 -0
- package/packages/arcgis-rest-feature-service/test/attachments.test.ts +188 -0
- package/packages/arcgis-rest-feature-service/test/createFeatureService.test.ts +279 -0
- package/packages/arcgis-rest-feature-service/test/crud.test.ts +196 -0
- package/packages/arcgis-rest-feature-service/test/decodeValues.test.ts +66 -0
- package/packages/arcgis-rest-feature-service/test/getAllLayersAndTables.test.ts +27 -0
- package/packages/arcgis-rest-feature-service/test/getLayer.test.ts +30 -0
- package/packages/arcgis-rest-feature-service/test/getService.test.ts +30 -0
- package/packages/arcgis-rest-feature-service/test/getServiceAdminInfo.test.ts +41 -0
- package/packages/arcgis-rest-feature-service/test/getViewSources.test.ts +45 -0
- package/packages/arcgis-rest-feature-service/test/helpers.test.ts +27 -0
- package/packages/arcgis-rest-feature-service/test/mocks/allLayersAndTablesResponse.ts +950 -0
- package/packages/arcgis-rest-feature-service/test/mocks/cvdQueryResponse.ts +225 -0
- package/packages/arcgis-rest-feature-service/test/mocks/feature.ts +302 -0
- package/packages/arcgis-rest-feature-service/test/mocks/fields.ts +779 -0
- package/packages/arcgis-rest-feature-service/test/mocks/foo.txt +1 -0
- package/packages/arcgis-rest-feature-service/test/mocks/layerDefinition.ts +80 -0
- package/packages/arcgis-rest-feature-service/test/mocks/service.ts +476 -0
- package/packages/arcgis-rest-feature-service/test/query.test.ts +166 -0
- package/packages/arcgis-rest-feature-service/test/updateServiceDefinition.test.ts +103 -0
- package/packages/arcgis-rest-feature-service/tsconfig.json +9 -0
- package/packages/arcgis-rest-fetch/README.md +17 -0
- package/packages/arcgis-rest-fetch/browser-ponyfill.js +8 -0
- package/packages/arcgis-rest-fetch/browser-ponyfill.mjs +8 -0
- package/packages/arcgis-rest-fetch/index.types.d.ts +8 -0
- package/packages/arcgis-rest-fetch/node-ponyfill.js +10 -0
- package/packages/arcgis-rest-fetch/node-ponyfill.mjs +10 -0
- package/packages/arcgis-rest-fetch/package.json +21 -0
- package/packages/arcgis-rest-form-data/README.md +15 -0
- package/packages/arcgis-rest-form-data/browser-ponyfill.js +5 -0
- package/packages/arcgis-rest-form-data/browser-ponyfill.mjs +3 -0
- package/packages/arcgis-rest-form-data/index.types.d.ts +9 -0
- package/packages/arcgis-rest-form-data/node-ponyfill.js +7 -0
- package/packages/arcgis-rest-form-data/node-ponyfill.mjs +5 -0
- package/packages/arcgis-rest-form-data/package.json +21 -0
- package/packages/arcgis-rest-geocoding/CHANGELOG.md +26 -0
- package/packages/arcgis-rest-geocoding/README.md +85 -0
- package/packages/arcgis-rest-geocoding/package.json +69 -0
- package/packages/arcgis-rest-geocoding/src/bulk.ts +106 -0
- package/packages/arcgis-rest-geocoding/src/geocode.ts +169 -0
- package/packages/arcgis-rest-geocoding/src/helpers.ts +56 -0
- package/packages/arcgis-rest-geocoding/src/index.ts +17 -0
- package/packages/arcgis-rest-geocoding/src/reverse.ts +82 -0
- package/packages/arcgis-rest-geocoding/src/suggest.ts +45 -0
- package/packages/arcgis-rest-geocoding/test/bulk.test.ts +193 -0
- package/packages/arcgis-rest-geocoding/test/geocode.test.ts +254 -0
- package/packages/arcgis-rest-geocoding/test/helpers.test.ts +85 -0
- package/packages/arcgis-rest-geocoding/test/mocks/responses.ts +1031 -0
- package/packages/arcgis-rest-geocoding/test/reverse.test.ts +124 -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 +72 -0
- package/packages/arcgis-rest-portal/package.json +68 -0
- package/packages/arcgis-rest-portal/src/groups/add-users.ts +140 -0
- package/packages/arcgis-rest-portal/src/groups/create.ts +42 -0
- package/packages/arcgis-rest-portal/src/groups/get.ts +187 -0
- package/packages/arcgis-rest-portal/src/groups/helpers.ts +14 -0
- package/packages/arcgis-rest-portal/src/groups/invite-users.ts +141 -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 +84 -0
- package/packages/arcgis-rest-portal/src/groups/remove.ts +32 -0
- package/packages/arcgis-rest-portal/src/groups/search.ts +48 -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/helpers.ts +83 -0
- package/packages/arcgis-rest-portal/src/index.ts +68 -0
- package/packages/arcgis-rest-portal/src/items/add.ts +145 -0
- package/packages/arcgis-rest-portal/src/items/content.ts +70 -0
- package/packages/arcgis-rest-portal/src/items/create.ts +149 -0
- package/packages/arcgis-rest-portal/src/items/export.ts +92 -0
- package/packages/arcgis-rest-portal/src/items/get.ts +444 -0
- package/packages/arcgis-rest-portal/src/items/helpers.ts +272 -0
- package/packages/arcgis-rest-portal/src/items/protect.ts +41 -0
- package/packages/arcgis-rest-portal/src/items/reassign.ts +59 -0
- package/packages/arcgis-rest-portal/src/items/remove.ts +139 -0
- package/packages/arcgis-rest-portal/src/items/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/items/update.ts +188 -0
- package/packages/arcgis-rest-portal/src/items/upload.ts +124 -0
- package/packages/arcgis-rest-portal/src/orgs/notification.ts +148 -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 +29 -0
- package/packages/arcgis-rest-portal/src/sharing/access.ts +84 -0
- package/packages/arcgis-rest-portal/src/sharing/helpers.ts +80 -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 +335 -0
- package/packages/arcgis-rest-portal/src/sharing/unshare-item-with-group.ts +114 -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 +60 -0
- package/packages/arcgis-rest-portal/src/users/invitation.ts +157 -0
- package/packages/arcgis-rest-portal/src/users/notification.ts +67 -0
- package/packages/arcgis-rest-portal/src/users/search-users.ts +35 -0
- package/packages/arcgis-rest-portal/src/users/update.ts +63 -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 +111 -0
- package/packages/arcgis-rest-portal/src/util/get-portal-settings.ts +44 -0
- package/packages/arcgis-rest-portal/src/util/get-portal-url.ts +32 -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 +48 -0
- package/packages/arcgis-rest-portal/test/groups/add-users.test.ts +238 -0
- package/packages/arcgis-rest-portal/test/groups/crud.test.ts +183 -0
- package/packages/arcgis-rest-portal/test/groups/get.test.ts +174 -0
- package/packages/arcgis-rest-portal/test/groups/invite-users.test.ts +146 -0
- package/packages/arcgis-rest-portal/test/groups/join.test.ts +71 -0
- package/packages/arcgis-rest-portal/test/groups/notification.test.ts +111 -0
- package/packages/arcgis-rest-portal/test/groups/protect.test.ts +71 -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 +64 -0
- package/packages/arcgis-rest-portal/test/items/add.test.ts +320 -0
- package/packages/arcgis-rest-portal/test/items/content.test.ts +161 -0
- package/packages/arcgis-rest-portal/test/items/create.test.ts +404 -0
- package/packages/arcgis-rest-portal/test/items/export.test.ts +115 -0
- package/packages/arcgis-rest-portal/test/items/get.test.ts +606 -0
- package/packages/arcgis-rest-portal/test/items/helpers.test.ts +60 -0
- package/packages/arcgis-rest-portal/test/items/protect.test.ts +120 -0
- package/packages/arcgis-rest-portal/test/items/reassign.test.ts +130 -0
- package/packages/arcgis-rest-portal/test/items/remove.test.ts +259 -0
- package/packages/arcgis-rest-portal/test/items/search.test.ts +274 -0
- package/packages/arcgis-rest-portal/test/items/update.test.ts +549 -0
- package/packages/arcgis-rest-portal/test/items/upload.test.ts +286 -0
- package/packages/arcgis-rest-portal/test/mocks/groups/responses.ts +208 -0
- package/packages/arcgis-rest-portal/test/mocks/items/foo.zip +0 -0
- package/packages/arcgis-rest-portal/test/mocks/items/item.ts +526 -0
- package/packages/arcgis-rest-portal/test/mocks/items/resources.ts +38 -0
- package/packages/arcgis-rest-portal/test/mocks/items/search.ts +121 -0
- package/packages/arcgis-rest-portal/test/mocks/portal/response.ts +126 -0
- package/packages/arcgis-rest-portal/test/mocks/portal/settings-response.ts +56 -0
- package/packages/arcgis-rest-portal/test/mocks/sharing/sharing.ts +18 -0
- package/packages/arcgis-rest-portal/test/mocks/users/invitation.ts +70 -0
- package/packages/arcgis-rest-portal/test/mocks/users/notification.ts +34 -0
- package/packages/arcgis-rest-portal/test/mocks/users/user-search.ts +388 -0
- package/packages/arcgis-rest-portal/test/mocks/users/user-tags.ts +5 -0
- package/packages/arcgis-rest-portal/test/mocks/users/user.ts +174 -0
- package/packages/arcgis-rest-portal/test/orgs/notification.test.ts +142 -0
- package/packages/arcgis-rest-portal/test/services/get-unique-service-name.test.ts +64 -0
- package/packages/arcgis-rest-portal/test/services/is-service-name-available.test.ts +41 -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 +126 -0
- package/packages/arcgis-rest-portal/test/users/notification.test.ts +76 -0
- package/packages/arcgis-rest-portal/test/users/search.test.ts +41 -0
- package/packages/arcgis-rest-portal/test/users/update.test.ts +150 -0
- package/packages/arcgis-rest-portal/test/util/SearchQueryBuilder.test.ts +295 -0
- package/packages/arcgis-rest-portal/test/util/array.test.ts +33 -0
- package/packages/arcgis-rest-portal/test/util/get-portal-settings.test.ts +57 -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 +137 -0
- package/packages/arcgis-rest-portal/test/util/scrub-control-chars.test.ts +25 -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 +69 -0
- package/packages/arcgis-rest-request/post-message-auth-spec.md +70 -0
- package/packages/arcgis-rest-request/src/ApiKeyManager.ts +60 -0
- package/packages/arcgis-rest-request/src/ApplicationCredentialsManager.ts +141 -0
- package/packages/arcgis-rest-request/src/ArcGISIdentityManager.ts +1470 -0
- package/packages/arcgis-rest-request/src/app-tokens.ts +132 -0
- package/packages/arcgis-rest-request/src/authenticated-request-options.ts +23 -0
- package/packages/arcgis-rest-request/src/federation-utils.ts +88 -0
- package/packages/arcgis-rest-request/src/fetch-token.ts +48 -0
- package/packages/arcgis-rest-request/src/generate-token.ts +32 -0
- package/packages/arcgis-rest-request/src/index.ts +45 -0
- package/packages/arcgis-rest-request/src/request.ts +446 -0
- package/packages/arcgis-rest-request/src/revoke-token.ts +73 -0
- package/packages/arcgis-rest-request/src/types/feature.ts +42 -0
- package/packages/arcgis-rest-request/src/types/geometry.ts +239 -0
- package/packages/arcgis-rest-request/src/types/group.ts +72 -0
- package/packages/arcgis-rest-request/src/types/service.ts +87 -0
- package/packages/arcgis-rest-request/src/types/symbol.ts +21 -0
- package/packages/arcgis-rest-request/src/types/user.ts +49 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +82 -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 +59 -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 +46 -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 +41 -0
- package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +37 -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/src/validate-app-access.ts +69 -0
- package/packages/arcgis-rest-request/test/ApiKey.test.ts +53 -0
- package/packages/arcgis-rest-request/test/ApplicationSession.test.ts +148 -0
- package/packages/arcgis-rest-request/test/ArcGISIdentityManager.test.ts +2579 -0
- package/packages/arcgis-rest-request/test/app-tokens.test.ts +91 -0
- package/packages/arcgis-rest-request/test/federation-utils.test.ts +323 -0
- package/packages/arcgis-rest-request/test/fetchToken.test.ts +110 -0
- package/packages/arcgis-rest-request/test/generateToken.test.ts +40 -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 +563 -0
- package/packages/arcgis-rest-request/test/revoke-token.test.ts +55 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +196 -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 +146 -0
- package/packages/arcgis-rest-request/test/utils/encode-query-string.test.ts +22 -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 +135 -0
- package/packages/arcgis-rest-request/test/validate-app-access.test.ts +44 -0
- package/packages/arcgis-rest-request/tsconfig.json +4 -0
- package/packages/arcgis-rest-routing/README.md +74 -0
- package/packages/arcgis-rest-routing/package.json +69 -0
- package/packages/arcgis-rest-routing/src/closestFacility.ts +223 -0
- package/packages/arcgis-rest-routing/src/helpers.ts +104 -0
- package/packages/arcgis-rest-routing/src/index.ts +20 -0
- package/packages/arcgis-rest-routing/src/originDestinationMatrix.ts +219 -0
- package/packages/arcgis-rest-routing/src/serviceArea.ts +169 -0
- package/packages/arcgis-rest-routing/src/solveRoute.ts +179 -0
- package/packages/arcgis-rest-routing/test/closestFacility.test.ts +686 -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 +681 -0
- package/packages/arcgis-rest-routing/tsconfig.json +6 -0
- package/prettier-package-json.config.cjs +81 -0
- package/rollup.js +152 -0
- package/scripts/create-dist-package-jsons.js +17 -0
- package/scripts/deploy-doc-site.js +16 -0
- package/scripts/generate-sri-hashes.js +52 -0
- package/scripts/get-package-json.js +27 -0
- package/scripts/run-demo-server.js +21 -0
- package/scripts/test-helpers.ts +20 -0
- package/tsconfig.json +62 -0
- package/typedoc.json +14 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import {
|
|
2
|
+
request,
|
|
3
|
+
IRequestOptions,
|
|
4
|
+
ArcGISRequestError
|
|
5
|
+
} from "@esri/arcgis-rest-request";
|
|
6
|
+
import { getPortalUrl } from "../util/get-portal-url.js";
|
|
7
|
+
import { chunk } from "../util/array.js";
|
|
8
|
+
|
|
9
|
+
export interface ICreateOrgNotificationOptions extends IRequestOptions {
|
|
10
|
+
/**
|
|
11
|
+
* Subject of the notification. This only applies to email and builtin notifications. For push notifications, subject/title is provided as a part of the message payload.
|
|
12
|
+
*/
|
|
13
|
+
subject?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Message to be sent. For builtin and email notifications this is a string. For push notifications, this will be JSON.
|
|
16
|
+
*/
|
|
17
|
+
message: string | object;
|
|
18
|
+
/**
|
|
19
|
+
* Array of usernames of the users in the group to whom the message should be sent. If not provided, the message will be sent to all users in the group if the user is an admin. Only group admins will be able to send notifications to a list of users. Group users will be able to send notifications to only one user at a time.
|
|
20
|
+
*/
|
|
21
|
+
users?: string[];
|
|
22
|
+
/**
|
|
23
|
+
* The channel through which the notification is to be delivered. Supported values are email or builtin. Email will be sent when the email option is chosen. If the builtin option is chosen, a notification will be added to the notifications list that the user can see when logged into the home app.
|
|
24
|
+
*/
|
|
25
|
+
notificationChannelType?: string;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* How many emails should be sent at a time. Defaults to the max possible (25)
|
|
29
|
+
*/
|
|
30
|
+
batchSize?: number;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export interface ICreateOrgNotificationResult {
|
|
34
|
+
/**
|
|
35
|
+
* Whether the operation was successful
|
|
36
|
+
*/
|
|
37
|
+
success: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* An array of request errors
|
|
40
|
+
*/
|
|
41
|
+
errors?: ArcGISRequestError[];
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Send a notification to members of the requesting user's org.
|
|
46
|
+
* Operation success will be indicated by a flag on the return
|
|
47
|
+
* object. If there are any errors, they will be placed in an
|
|
48
|
+
* errors array on the return object
|
|
49
|
+
*
|
|
50
|
+
* ```js
|
|
51
|
+
* const authentication: IAuthenticationManager; // Typically passed into to the function
|
|
52
|
+
* //
|
|
53
|
+
* const options: IInviteGroupUsersOptions = {
|
|
54
|
+
* id: 'group_id',
|
|
55
|
+
* users: ['larry', 'curly', 'moe'],
|
|
56
|
+
* notificationChannelType: 'email',
|
|
57
|
+
* expiration: 20160,
|
|
58
|
+
* authentication
|
|
59
|
+
* }
|
|
60
|
+
* //
|
|
61
|
+
* const result = await createOrgNotification(options);
|
|
62
|
+
* //
|
|
63
|
+
* const if_success_result_looks_like = {
|
|
64
|
+
* success: true
|
|
65
|
+
* }
|
|
66
|
+
* //
|
|
67
|
+
* const if_failure_result_looks_like = {
|
|
68
|
+
* success: false,
|
|
69
|
+
* errors: [ArcGISRequestError]
|
|
70
|
+
* }
|
|
71
|
+
* ```
|
|
72
|
+
* @param {ICreateOrgNotificationOptions} options
|
|
73
|
+
*
|
|
74
|
+
* @returns {ICreateOrgNotificationResult}
|
|
75
|
+
*/
|
|
76
|
+
export function createOrgNotification(options: ICreateOrgNotificationOptions) {
|
|
77
|
+
const url = `${getPortalUrl(options)}/portals/self/createNotification`;
|
|
78
|
+
const batches = _generateBatchRequests(options);
|
|
79
|
+
const promises = batches.map((batch) => _sendSafeRequest(url, batch));
|
|
80
|
+
|
|
81
|
+
return Promise.all(promises).then(_combineResults);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* @private
|
|
86
|
+
*/
|
|
87
|
+
function _generateBatchRequests(
|
|
88
|
+
options: ICreateOrgNotificationOptions
|
|
89
|
+
): IRequestOptions[] {
|
|
90
|
+
const userBatches: string[][] = chunk<string>(
|
|
91
|
+
options.users,
|
|
92
|
+
options.batchSize || 25
|
|
93
|
+
);
|
|
94
|
+
return userBatches.map((users) => _generateRequestOptions(users, options));
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* @private
|
|
99
|
+
*/
|
|
100
|
+
function _generateRequestOptions(
|
|
101
|
+
users: string[],
|
|
102
|
+
baseOptions: ICreateOrgNotificationOptions
|
|
103
|
+
): IRequestOptions {
|
|
104
|
+
const requestOptions: ICreateOrgNotificationOptions = Object.assign(
|
|
105
|
+
{},
|
|
106
|
+
baseOptions
|
|
107
|
+
);
|
|
108
|
+
|
|
109
|
+
requestOptions.params = {
|
|
110
|
+
...requestOptions.params,
|
|
111
|
+
users,
|
|
112
|
+
subject: baseOptions.subject,
|
|
113
|
+
message: baseOptions.message,
|
|
114
|
+
notificationChannelType: requestOptions.notificationChannelType
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
return requestOptions;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* @private
|
|
122
|
+
*/
|
|
123
|
+
function _sendSafeRequest(
|
|
124
|
+
url: string,
|
|
125
|
+
requestOptions: IRequestOptions
|
|
126
|
+
): Promise<ICreateOrgNotificationResult> {
|
|
127
|
+
return request(url, requestOptions).catch((error) => ({ errors: [error] }));
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* @private
|
|
132
|
+
*/
|
|
133
|
+
function _combineResults(
|
|
134
|
+
responses: ICreateOrgNotificationResult[]
|
|
135
|
+
): ICreateOrgNotificationResult {
|
|
136
|
+
const success = responses.every((res) => res.success);
|
|
137
|
+
const errors: ArcGISRequestError[] = responses.reduce(
|
|
138
|
+
(collection, res) => collection.concat(res.errors || []),
|
|
139
|
+
[]
|
|
140
|
+
);
|
|
141
|
+
const combined: ICreateOrgNotificationResult = { success };
|
|
142
|
+
|
|
143
|
+
if (errors.length > 0) {
|
|
144
|
+
combined.errors = errors;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
return combined;
|
|
148
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/* Copyright (c) 2018-2020 Environmental Systems Research Institute, Inc.
|
|
2
|
+
* Apache-2.0 */
|
|
3
|
+
|
|
4
|
+
import { ArcGISIdentityManager } from "@esri/arcgis-rest-request";
|
|
5
|
+
import { isServiceNameAvailable } from "./is-service-name-available.js";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Given a starting name, return a service name that is unique within
|
|
9
|
+
* the current users organization
|
|
10
|
+
*
|
|
11
|
+
* @export
|
|
12
|
+
* @param {string} name
|
|
13
|
+
* @param {ArcGISIdentityManager} session
|
|
14
|
+
* @param {number} step
|
|
15
|
+
* @return {*} {Promise<string>}
|
|
16
|
+
*/
|
|
17
|
+
export function getUniqueServiceName(
|
|
18
|
+
name: string,
|
|
19
|
+
type: string,
|
|
20
|
+
session: ArcGISIdentityManager,
|
|
21
|
+
step: number
|
|
22
|
+
): Promise<string> {
|
|
23
|
+
let nameToCheck = name;
|
|
24
|
+
if (step) {
|
|
25
|
+
nameToCheck = `${name}_${step}`;
|
|
26
|
+
}
|
|
27
|
+
return isServiceNameAvailable(nameToCheck, type, session).then((response) => {
|
|
28
|
+
if (response.available) {
|
|
29
|
+
return nameToCheck;
|
|
30
|
+
} else {
|
|
31
|
+
step = step + 1;
|
|
32
|
+
return getUniqueServiceName(name, type, session, step);
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/* Copyright (c) 2018-2020 Environmental Systems Research Institute, Inc.
|
|
2
|
+
* Apache-2.0 */
|
|
3
|
+
|
|
4
|
+
import { request, ArcGISIdentityManager } from "@esri/arcgis-rest-request";
|
|
5
|
+
import { IServiceNameAvailable } from "../helpers.js";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Determine if a specific service name is available in the current user's organization
|
|
9
|
+
*
|
|
10
|
+
* @export
|
|
11
|
+
* @param {string} name
|
|
12
|
+
* @param {ArcGISIdentityManager} session
|
|
13
|
+
* @return {*} {Promise<IServiceNameAvailable>}
|
|
14
|
+
*/
|
|
15
|
+
export function isServiceNameAvailable(
|
|
16
|
+
name: string,
|
|
17
|
+
type: string,
|
|
18
|
+
session: ArcGISIdentityManager
|
|
19
|
+
): Promise<IServiceNameAvailable> {
|
|
20
|
+
const url = `${session.portal}/portals/self/isServiceNameAvailable`;
|
|
21
|
+
return request(url, {
|
|
22
|
+
params: {
|
|
23
|
+
name,
|
|
24
|
+
type
|
|
25
|
+
},
|
|
26
|
+
httpMethod: "GET",
|
|
27
|
+
authentication: session
|
|
28
|
+
});
|
|
29
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
|
2
|
+
* Apache-2.0 */
|
|
3
|
+
|
|
4
|
+
import { request } from "@esri/arcgis-rest-request";
|
|
5
|
+
|
|
6
|
+
import {
|
|
7
|
+
ISharingOptions,
|
|
8
|
+
ISharingResponse,
|
|
9
|
+
isItemOwner,
|
|
10
|
+
getSharingUrl,
|
|
11
|
+
isOrgAdmin
|
|
12
|
+
} from "./helpers.js";
|
|
13
|
+
|
|
14
|
+
export interface ISetAccessOptions extends ISharingOptions {
|
|
15
|
+
/**
|
|
16
|
+
* "private" indicates that the item can only be accessed by the user. "public" means accessible to anyone. An item shared to the organization has an access level of "org".
|
|
17
|
+
*/
|
|
18
|
+
access: "private" | "org" | "public";
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* ```js
|
|
23
|
+
* import { setItemAccess } from "@esri/arcgis-rest-portal";
|
|
24
|
+
* //
|
|
25
|
+
* setItemAccess({
|
|
26
|
+
* id: "abc123",
|
|
27
|
+
* access: "public", // 'org' || 'private'
|
|
28
|
+
* authentication: session
|
|
29
|
+
* })
|
|
30
|
+
* ```
|
|
31
|
+
* Change who is able to access an item.
|
|
32
|
+
*
|
|
33
|
+
* @param requestOptions - Options for the request.
|
|
34
|
+
* @returns A Promise that will resolve with the data from the response.
|
|
35
|
+
*/
|
|
36
|
+
export function setItemAccess(
|
|
37
|
+
requestOptions: ISetAccessOptions
|
|
38
|
+
): Promise<ISharingResponse> {
|
|
39
|
+
const url = getSharingUrl(requestOptions);
|
|
40
|
+
|
|
41
|
+
if (isItemOwner(requestOptions)) {
|
|
42
|
+
// if the user owns the item, proceed
|
|
43
|
+
return updateItemAccess(url, requestOptions);
|
|
44
|
+
} else {
|
|
45
|
+
// otherwise we need to check to see if they are an organization admin
|
|
46
|
+
return isOrgAdmin(requestOptions).then((admin) => {
|
|
47
|
+
if (admin) {
|
|
48
|
+
return updateItemAccess(url, requestOptions);
|
|
49
|
+
} else {
|
|
50
|
+
// if neither, updating the sharing isnt possible
|
|
51
|
+
throw Error(
|
|
52
|
+
`This item can not be shared by ${requestOptions.authentication.username}. They are neither the item owner nor an organization admin.`
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function updateItemAccess(
|
|
60
|
+
url: string,
|
|
61
|
+
requestOptions: ISetAccessOptions
|
|
62
|
+
): Promise<any> {
|
|
63
|
+
requestOptions.params = {
|
|
64
|
+
org: false,
|
|
65
|
+
everyone: false,
|
|
66
|
+
...requestOptions.params
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
// if the user wants to make the item private, it needs to be unshared from any/all groups as well
|
|
70
|
+
if (requestOptions.access === "private") {
|
|
71
|
+
requestOptions.params.groups = " ";
|
|
72
|
+
}
|
|
73
|
+
if (requestOptions.access === "org") {
|
|
74
|
+
requestOptions.params.org = true;
|
|
75
|
+
}
|
|
76
|
+
// if sharing with everyone, share with the entire organization as well.
|
|
77
|
+
if (requestOptions.access === "public") {
|
|
78
|
+
// this is how the ArcGIS Online Home app sets public access
|
|
79
|
+
// setting org = true instead of account = true will cancel out all sharing
|
|
80
|
+
requestOptions.params.account = true;
|
|
81
|
+
requestOptions.params.everyone = true;
|
|
82
|
+
}
|
|
83
|
+
return request(url, requestOptions);
|
|
84
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
|
2
|
+
* Apache-2.0 */
|
|
3
|
+
|
|
4
|
+
import { IUserRequestOptions, IGroup, IUser, GroupMembership } from "@esri/arcgis-rest-request";
|
|
5
|
+
import { getPortalUrl } from "../util/get-portal-url.js";
|
|
6
|
+
import { getGroup } from "../groups/get.js";
|
|
7
|
+
|
|
8
|
+
export interface ISharingOptions extends IUserRequestOptions {
|
|
9
|
+
/**
|
|
10
|
+
* Unique identifier for the item.
|
|
11
|
+
*/
|
|
12
|
+
id: string;
|
|
13
|
+
/**
|
|
14
|
+
* Item owner, if different from the authenticated user.
|
|
15
|
+
*/
|
|
16
|
+
owner?: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface ISharingResponse {
|
|
20
|
+
notSharedWith?: string[];
|
|
21
|
+
notUnsharedFrom?: string[];
|
|
22
|
+
itemId: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function getSharingUrl(requestOptions: ISharingOptions): string {
|
|
26
|
+
const username = requestOptions.authentication.username;
|
|
27
|
+
const owner = requestOptions.owner || username;
|
|
28
|
+
return `${getPortalUrl(requestOptions)}/content/users/${encodeURIComponent(
|
|
29
|
+
owner
|
|
30
|
+
)}/items/${requestOptions.id}/share`;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export function isItemOwner(requestOptions: ISharingOptions): boolean {
|
|
34
|
+
const username = requestOptions.authentication.username;
|
|
35
|
+
const owner = requestOptions.owner || username;
|
|
36
|
+
return owner === username;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Check it the user is a full org_admin
|
|
41
|
+
* @param requestOptions
|
|
42
|
+
* @returns Promise resolving in a boolean indicating if the user is an ArcGIS Organization administrator
|
|
43
|
+
*/
|
|
44
|
+
export function isOrgAdmin(
|
|
45
|
+
requestOptions: IUserRequestOptions
|
|
46
|
+
): Promise<boolean> {
|
|
47
|
+
const session = requestOptions.authentication;
|
|
48
|
+
|
|
49
|
+
return session.getUser(requestOptions).then((user: IUser) => {
|
|
50
|
+
return user && user.role === "org_admin" && !user.roleId;
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Get the User Membership for a particular group. Use this if all you have is the groupId.
|
|
56
|
+
* If you have the group object, check the `userMembership.memberType` property instead of calling this method.
|
|
57
|
+
*
|
|
58
|
+
* @param requestOptions
|
|
59
|
+
* @returns A Promise that resolves with "owner" | "admin" | "member" | "nonmember"
|
|
60
|
+
*/
|
|
61
|
+
export function getUserMembership(
|
|
62
|
+
requestOptions: IGroupSharingOptions
|
|
63
|
+
): Promise<GroupMembership> {
|
|
64
|
+
// fetch the group...
|
|
65
|
+
return getGroup(requestOptions.groupId, requestOptions)
|
|
66
|
+
.then((group: IGroup) => {
|
|
67
|
+
return group.userMembership.memberType;
|
|
68
|
+
})
|
|
69
|
+
.catch(() => {
|
|
70
|
+
return "none" as GroupMembership;
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export interface IGroupSharingOptions extends ISharingOptions {
|
|
75
|
+
/**
|
|
76
|
+
* Group identifier
|
|
77
|
+
*/
|
|
78
|
+
groupId: string;
|
|
79
|
+
confirmItemControl?: boolean;
|
|
80
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { IGroupSharingOptions } from "./helpers.js";
|
|
2
|
+
import { searchItems } from "../items/search.js";
|
|
3
|
+
import { ISearchOptions } from "../util/search.js";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* ```js
|
|
7
|
+
* import { isItemSharedWithGroup } from "@esri/arcgis-rest-portal";
|
|
8
|
+
* //
|
|
9
|
+
* isItemSharedWithGroup({
|
|
10
|
+
* groupId: 'bc3,
|
|
11
|
+
* itemId: 'f56,
|
|
12
|
+
* authentication
|
|
13
|
+
* })
|
|
14
|
+
* .then(isShared => {})
|
|
15
|
+
* ```
|
|
16
|
+
* Find out whether or not an item is already shared with a group.
|
|
17
|
+
*
|
|
18
|
+
* @param requestOptions - Options for the request. NOTE: `rawResponse` is not supported by this operation.
|
|
19
|
+
* @returns Promise that will resolve with true/false
|
|
20
|
+
*/
|
|
21
|
+
export function isItemSharedWithGroup(
|
|
22
|
+
requestOptions: IGroupSharingOptions
|
|
23
|
+
): Promise<boolean> {
|
|
24
|
+
const searchOpts = {
|
|
25
|
+
q: `id: ${requestOptions.id} AND group: ${requestOptions.groupId}`,
|
|
26
|
+
start: 1,
|
|
27
|
+
num: 10,
|
|
28
|
+
sortField: "title",
|
|
29
|
+
authentication: requestOptions.authentication,
|
|
30
|
+
httpMethod: "POST"
|
|
31
|
+
} as ISearchOptions;
|
|
32
|
+
|
|
33
|
+
return searchItems(searchOpts).then((searchResponse) => {
|
|
34
|
+
let result = false;
|
|
35
|
+
if (searchResponse.total > 0) {
|
|
36
|
+
result = searchResponse.results.some((itm: any) => {
|
|
37
|
+
return itm.id === requestOptions.id;
|
|
38
|
+
});
|
|
39
|
+
return result;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
}
|