culparepellendus 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.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 +87 -0
- package/packages/arcgis-rest-auth/README.md +71 -0
- package/packages/arcgis-rest-auth/package-lock.json +27 -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 +1376 -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 +2430 -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-lock.json +11 -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-lock.json +11 -0
- package/packages/arcgis-rest-feature-layer/package.json +64 -0
- package/packages/arcgis-rest-feature-layer/src/add.ts +56 -0
- package/packages/arcgis-rest-feature-layer/src/addAttachment.ts +53 -0
- package/packages/arcgis-rest-feature-layer/src/applyEdits.ts +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-lock.json +43 -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-lock.json +37 -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 +70 -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 +340 -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 +114 -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 +47 -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 +322 -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 +1382 -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 +345 -0
- package/packages/arcgis-rest-portal/test/util/array.test.ts +30 -0
- package/packages/arcgis-rest-portal/test/util/get-portal-settings.test.ts +68 -0
- package/packages/arcgis-rest-portal/test/util/get-portal-url.test.ts +37 -0
- package/packages/arcgis-rest-portal/test/util/portal.test.ts +148 -0
- package/packages/arcgis-rest-portal/test/util/scrub-control-chars.test.ts +22 -0
- package/packages/arcgis-rest-portal/tsconfig.json +6 -0
- package/packages/arcgis-rest-request/README.md +72 -0
- package/packages/arcgis-rest-request/package-lock.json +13 -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-lock.json +43 -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 +13322 -0
- package/packages/arcgis-rest-routing/test/originDestinationMatrix.test.ts +797 -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-lock.json +11 -0
- package/packages/arcgis-rest-service-admin/package.json +65 -0
- package/packages/arcgis-rest-service-admin/src/addTo.ts +70 -0
- package/packages/arcgis-rest-service-admin/src/create.ts +189 -0
- package/packages/arcgis-rest-service-admin/src/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-lock.json +5 -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,292 @@
|
|
1
|
+
/* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { IRequestOptions, ArcGISRequestError } from "@esri/arcgis-rest-request";
|
5
|
+
import { IItemAdd, IItemUpdate, IItem } from "@esri/arcgis-rest-types";
|
6
|
+
import { IUserRequestOptions } from "@esri/arcgis-rest-auth";
|
7
|
+
|
8
|
+
/**
|
9
|
+
* Base options interface for making authenticated requests for items.
|
10
|
+
*/
|
11
|
+
export interface IUserItemOptions extends IUserRequestOptions {
|
12
|
+
/**
|
13
|
+
* Unique identifier of the item.
|
14
|
+
*/
|
15
|
+
id: string;
|
16
|
+
/**
|
17
|
+
* Item owner username. If not present, `authentication.username` is utilized.
|
18
|
+
*/
|
19
|
+
owner?: string;
|
20
|
+
}
|
21
|
+
|
22
|
+
export interface IFolderIdOptions extends IUserRequestOptions {
|
23
|
+
/**
|
24
|
+
* Unique identifier of the folder.
|
25
|
+
*/
|
26
|
+
folderId: string;
|
27
|
+
/**
|
28
|
+
* Item owner username. If not present, `authentication.username` is utilized.
|
29
|
+
*/
|
30
|
+
owner?: string;
|
31
|
+
}
|
32
|
+
|
33
|
+
export type ItemRelationshipType =
|
34
|
+
| "APIKey2Item"
|
35
|
+
| "Area2CustomPackage"
|
36
|
+
| "Area2Package"
|
37
|
+
| "Item2Attachment"
|
38
|
+
| "Item2Report"
|
39
|
+
| "Listed2Provisioned"
|
40
|
+
| "Map2AppConfig"
|
41
|
+
| "Map2Area"
|
42
|
+
| "Map2FeatureCollection"
|
43
|
+
| "Map2Service"
|
44
|
+
| "MobileApp2Code"
|
45
|
+
| "Service2Data"
|
46
|
+
| "Service2Layer"
|
47
|
+
| "Service2Route"
|
48
|
+
| "Service2Service"
|
49
|
+
| "Service2Style"
|
50
|
+
| "Solution2Item"
|
51
|
+
| "Style2Style"
|
52
|
+
| "Survey2Data"
|
53
|
+
| "Survey2Service"
|
54
|
+
| "SurveyAddIn2Data"
|
55
|
+
| "Theme2Story"
|
56
|
+
| "TrackView2Map"
|
57
|
+
| "WebStyle2DesktopStyle"
|
58
|
+
| "WMA2Code"
|
59
|
+
| "WorkforceMap2FeatureService"
|
60
|
+
|
61
|
+
/**
|
62
|
+
* Names of methods for reading the body of a fetch response, see:
|
63
|
+
* https://developer.mozilla.org/en-US/docs/Web/API/Body#Methods
|
64
|
+
*/
|
65
|
+
export type FetchReadMethodName =
|
66
|
+
| "arrayBuffer"
|
67
|
+
| "blob"
|
68
|
+
| "formData"
|
69
|
+
| "json"
|
70
|
+
| "text";
|
71
|
+
|
72
|
+
export interface IItemRelationshipOptions extends IRequestOptions {
|
73
|
+
/**
|
74
|
+
* Unique identifier of the item.
|
75
|
+
*/
|
76
|
+
id: string;
|
77
|
+
/**
|
78
|
+
* The type of relationship between the two items.
|
79
|
+
*/
|
80
|
+
relationshipType: ItemRelationshipType | ItemRelationshipType[];
|
81
|
+
/**
|
82
|
+
* The direction of the relationship. Either forward (from origin -> destination) or reverse (from destination -> origin).
|
83
|
+
*/
|
84
|
+
direction?: "forward" | "reverse";
|
85
|
+
}
|
86
|
+
|
87
|
+
export interface IManageItemRelationshipOptions extends IUserRequestOptions {
|
88
|
+
originItemId: string;
|
89
|
+
destinationItemId: string;
|
90
|
+
relationshipType: ItemRelationshipType;
|
91
|
+
}
|
92
|
+
|
93
|
+
export interface IItemInfoOptions extends IUserItemOptions {
|
94
|
+
/**
|
95
|
+
* Subfolder for added information.
|
96
|
+
*/
|
97
|
+
folderName?: string;
|
98
|
+
/**
|
99
|
+
* Object to store
|
100
|
+
*/
|
101
|
+
file: any;
|
102
|
+
}
|
103
|
+
|
104
|
+
export interface IItemResourceOptions extends IUserItemOptions {
|
105
|
+
/**
|
106
|
+
* New resource filename.
|
107
|
+
*/
|
108
|
+
name?: string;
|
109
|
+
/**
|
110
|
+
* Folder in which to store the new resource.
|
111
|
+
*/
|
112
|
+
prefix?: string;
|
113
|
+
/**
|
114
|
+
* Text input to be added as a file resource.
|
115
|
+
*/
|
116
|
+
content?: string;
|
117
|
+
/**
|
118
|
+
* Controls whether access to the file resource is restricted to the owner or inherited from the sharing permissions set for the associated item.
|
119
|
+
*/
|
120
|
+
private?: boolean;
|
121
|
+
/**
|
122
|
+
* Object to store
|
123
|
+
*/
|
124
|
+
resource?: any;
|
125
|
+
}
|
126
|
+
|
127
|
+
export interface IRemoveItemResourceOptions extends IUserItemOptions {
|
128
|
+
/**
|
129
|
+
* Resource item to be removed. Resource prefix needs to be specified if the file resource has one.
|
130
|
+
*/
|
131
|
+
resource?: string;
|
132
|
+
|
133
|
+
/**
|
134
|
+
* If true, all file resources are removed.
|
135
|
+
*/
|
136
|
+
deleteAll?: boolean;
|
137
|
+
}
|
138
|
+
|
139
|
+
export interface ICreateUpdateItemOptions extends IUserRequestOptions {
|
140
|
+
/**
|
141
|
+
* The owner of the item. If this property is not present, `item.owner` will be passed, or lastly `authentication.username`.
|
142
|
+
*/
|
143
|
+
owner?: string;
|
144
|
+
/**
|
145
|
+
* Id of the folder to house the item.
|
146
|
+
*/
|
147
|
+
folderId?: string;
|
148
|
+
/**
|
149
|
+
* The file to be uploaded. If uploading a file, the request must be a multipart request.
|
150
|
+
*/
|
151
|
+
file?: any;
|
152
|
+
/**
|
153
|
+
* The URL where the item can be downloaded. The resource will be downloaded and stored as a file type. Similar to uploading a file to be added, but instead of transferring the contents of the file, the URL of the data file is referenced and creates a file item.
|
154
|
+
*/
|
155
|
+
dataUrl?: string;
|
156
|
+
/**
|
157
|
+
* The text content for the item to be submitted.
|
158
|
+
*/
|
159
|
+
text?: string;
|
160
|
+
/**
|
161
|
+
* If true, the file is uploaded asynchronously. If false, the file is uploaded synchronously.
|
162
|
+
*/
|
163
|
+
async?: boolean;
|
164
|
+
/**
|
165
|
+
* If true, the file is uploaded in multiple parts.
|
166
|
+
*/
|
167
|
+
multipart?: boolean;
|
168
|
+
/**
|
169
|
+
* The filename being uploaded in multipart mode. Required if multipart=true.
|
170
|
+
*/
|
171
|
+
filename?: string;
|
172
|
+
/**
|
173
|
+
* If true, overwrite the existing file.
|
174
|
+
*/
|
175
|
+
overwrite?: boolean;
|
176
|
+
}
|
177
|
+
|
178
|
+
export interface IItemDataOptions extends IRequestOptions {
|
179
|
+
/**
|
180
|
+
* Used to request binary data.
|
181
|
+
*/
|
182
|
+
file?: boolean;
|
183
|
+
}
|
184
|
+
|
185
|
+
export interface IItemPartOptions extends IUserItemOptions {
|
186
|
+
/**
|
187
|
+
* The file part to be uploaded.
|
188
|
+
*/
|
189
|
+
file: any;
|
190
|
+
/**
|
191
|
+
* Part numbers can be any number from 1 to 10,000, inclusive. A part number uniquely identifies a part and also defines its position within the object being created. If you upload a new part using the same part number that was used with a previous part, the previously uploaded part is overwritten.
|
192
|
+
*/
|
193
|
+
partNum: number;
|
194
|
+
}
|
195
|
+
|
196
|
+
export interface IUpdateItemResponse {
|
197
|
+
success: boolean;
|
198
|
+
id: string;
|
199
|
+
}
|
200
|
+
|
201
|
+
export interface IItemInfoResponse {
|
202
|
+
success: boolean;
|
203
|
+
itemId: string;
|
204
|
+
owner: string;
|
205
|
+
folder: string;
|
206
|
+
}
|
207
|
+
|
208
|
+
export interface IItemResourceResponse {
|
209
|
+
success: boolean;
|
210
|
+
itemId: string;
|
211
|
+
owner: string;
|
212
|
+
folder: string;
|
213
|
+
}
|
214
|
+
|
215
|
+
export interface IAddFolderResponse {
|
216
|
+
/**
|
217
|
+
* Success or failure of request.
|
218
|
+
*/
|
219
|
+
success: boolean;
|
220
|
+
/**
|
221
|
+
* Information about created folder: its alphanumeric id, name, and owner's name.
|
222
|
+
*/
|
223
|
+
folder: {
|
224
|
+
id: string;
|
225
|
+
title: string;
|
226
|
+
username: string;
|
227
|
+
};
|
228
|
+
}
|
229
|
+
|
230
|
+
export interface IMoveItemResponse {
|
231
|
+
/**
|
232
|
+
* Success or failure of request.
|
233
|
+
*/
|
234
|
+
success: boolean;
|
235
|
+
/**
|
236
|
+
* Alphanumeric id of moved item.
|
237
|
+
*/
|
238
|
+
itemId: string;
|
239
|
+
/**
|
240
|
+
* Name of owner of item.
|
241
|
+
*/
|
242
|
+
owner: string;
|
243
|
+
/**
|
244
|
+
* Alphanumeric id of folder now housing item.
|
245
|
+
*/
|
246
|
+
folder: string;
|
247
|
+
}
|
248
|
+
|
249
|
+
/**
|
250
|
+
* Serialize an item and its data into a json format accepted by the Portal API for create and update operations
|
251
|
+
*
|
252
|
+
* @param item Item to be serialized
|
253
|
+
* @returns a formatted json object to be sent to Portal
|
254
|
+
*/
|
255
|
+
export function serializeItem(item: IItemAdd | IItemUpdate | IItem): any {
|
256
|
+
// create a clone so we're not messing with the original
|
257
|
+
const clone = JSON.parse(JSON.stringify(item));
|
258
|
+
|
259
|
+
// binary data needs POSTed as a `file`
|
260
|
+
// JSON object literals should be passed as `text`.
|
261
|
+
if (clone.data) {
|
262
|
+
(typeof Blob !== "undefined" && item.data instanceof Blob) ||
|
263
|
+
// Node.js doesn't implement Blob
|
264
|
+
item.data.constructor.name === "ReadStream"
|
265
|
+
? (clone.file = item.data)
|
266
|
+
: (clone.text = item.data);
|
267
|
+
delete clone.data;
|
268
|
+
}
|
269
|
+
return clone;
|
270
|
+
}
|
271
|
+
|
272
|
+
/**
|
273
|
+
* `requestOptions.owner` is given priority, `requestOptions.item.owner` will be checked next. If neither are present, `authentication.getUserName()` will be used instead.
|
274
|
+
*/
|
275
|
+
export function determineOwner(requestOptions: any): Promise<string> {
|
276
|
+
if (requestOptions.owner) {
|
277
|
+
return Promise.resolve(requestOptions.owner);
|
278
|
+
} else if (requestOptions.item && requestOptions.item.owner) {
|
279
|
+
return Promise.resolve(requestOptions.item.owner);
|
280
|
+
} else if (
|
281
|
+
requestOptions.authentication &&
|
282
|
+
requestOptions.authentication.getUsername
|
283
|
+
) {
|
284
|
+
return requestOptions.authentication.getUsername();
|
285
|
+
} else {
|
286
|
+
return Promise.reject(
|
287
|
+
new Error(
|
288
|
+
"Could not determine the owner of this item. Pass the `owner`, `item.owner`, or `authentication` option."
|
289
|
+
)
|
290
|
+
);
|
291
|
+
}
|
292
|
+
}
|
@@ -0,0 +1,41 @@
|
|
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 { getPortalUrl } from "../util/get-portal-url";
|
7
|
+
import { IUserItemOptions, determineOwner } from "./helpers";
|
8
|
+
|
9
|
+
/**
|
10
|
+
* Protect an item. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/protect.htm) for more information.
|
11
|
+
*
|
12
|
+
* @param requestOptions - Options for the request
|
13
|
+
* @returns A Promise to protect an item.
|
14
|
+
*/
|
15
|
+
export function protectItem(
|
16
|
+
requestOptions: IUserItemOptions
|
17
|
+
): Promise<{ success: boolean }> {
|
18
|
+
return determineOwner(requestOptions).then(owner => {
|
19
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
20
|
+
requestOptions.id
|
21
|
+
}/protect`;
|
22
|
+
return request(url, requestOptions);
|
23
|
+
});
|
24
|
+
}
|
25
|
+
|
26
|
+
/**
|
27
|
+
* Unprotect an item. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/unprotect.htm) for more information.
|
28
|
+
*
|
29
|
+
* @param requestOptions - Options for the request
|
30
|
+
* @returns A Promise to unprotect an item.
|
31
|
+
*/
|
32
|
+
export function unprotectItem(
|
33
|
+
requestOptions: IUserItemOptions
|
34
|
+
): Promise<{ success: boolean }> {
|
35
|
+
return determineOwner(requestOptions).then(owner => {
|
36
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
37
|
+
requestOptions.id
|
38
|
+
}/unprotect`;
|
39
|
+
return request(url, requestOptions);
|
40
|
+
});
|
41
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
import { request, IRequestOptions } from "@esri/arcgis-rest-request";
|
4
|
+
import { IItem } from "@esri/arcgis-rest-types";
|
5
|
+
import { getPortalUrl } from "../util/get-portal-url";
|
6
|
+
import { isOrgAdmin } from "../sharing/helpers";
|
7
|
+
import { IUserRequestOptions } from "@esri/arcgis-rest-auth";
|
8
|
+
|
9
|
+
interface IReassignItemOptions extends IUserRequestOptions {
|
10
|
+
id: string;
|
11
|
+
currentOwner: string;
|
12
|
+
targetUsername: string;
|
13
|
+
targetFolderName?: string;
|
14
|
+
}
|
15
|
+
|
16
|
+
interface IReassignItemResponse {
|
17
|
+
success: boolean;
|
18
|
+
itemId: string;
|
19
|
+
}
|
20
|
+
|
21
|
+
/**
|
22
|
+
* ```js
|
23
|
+
* import { reassignItem } from '@esri/arcgis-rest-portal';
|
24
|
+
* //
|
25
|
+
* reassignItem({
|
26
|
+
* id: "abc123",
|
27
|
+
* currentOwner: "charles",
|
28
|
+
* targetUsername: "leslie",
|
29
|
+
* authentication
|
30
|
+
* })
|
31
|
+
* ```
|
32
|
+
* Reassign an item from one user to another.
|
33
|
+
* Caller must be an org admin or the request will fail.
|
34
|
+
* `currentOwner` and `targetUsername` must be in the same
|
35
|
+
* organization or the request will fail
|
36
|
+
* @param reassignOptions - Options for the request
|
37
|
+
*/
|
38
|
+
export function reassignItem(
|
39
|
+
reassignOptions: IReassignItemOptions
|
40
|
+
): Promise<IReassignItemResponse> {
|
41
|
+
return isOrgAdmin(reassignOptions).then(isAdmin => {
|
42
|
+
if (!isAdmin) {
|
43
|
+
throw Error(
|
44
|
+
`Item ${reassignOptions.id} can not be reassigned because current user is not an organization administrator.`
|
45
|
+
);
|
46
|
+
}
|
47
|
+
// we're operating as an org-admin
|
48
|
+
const url = `${getPortalUrl(reassignOptions)}/content/users/${
|
49
|
+
reassignOptions.currentOwner
|
50
|
+
}/items/${reassignOptions.id}/reassign`;
|
51
|
+
|
52
|
+
const opts = {
|
53
|
+
params: {
|
54
|
+
targetUsername: reassignOptions.targetUsername,
|
55
|
+
targetFolderName: reassignOptions.targetFolderName
|
56
|
+
},
|
57
|
+
authentication: reassignOptions.authentication
|
58
|
+
};
|
59
|
+
return request(url, opts);
|
60
|
+
});
|
61
|
+
}
|
@@ -0,0 +1,141 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { request, appendCustomParams } from "@esri/arcgis-rest-request";
|
5
|
+
|
6
|
+
import { getPortalUrl } from "../util/get-portal-url";
|
7
|
+
import {
|
8
|
+
IUserItemOptions,
|
9
|
+
IRemoveItemResourceOptions,
|
10
|
+
IFolderIdOptions,
|
11
|
+
determineOwner,
|
12
|
+
IManageItemRelationshipOptions
|
13
|
+
} from "./helpers";
|
14
|
+
|
15
|
+
/**
|
16
|
+
* ```js
|
17
|
+
* import { removeItem } from "@esri/arcgis-rest-portal";
|
18
|
+
* //
|
19
|
+
* removeItem({
|
20
|
+
* id: "3ef",
|
21
|
+
* authentication
|
22
|
+
* })
|
23
|
+
* ```
|
24
|
+
* Delete an item from the portal. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/delete-item.htm) for more information.
|
25
|
+
*
|
26
|
+
* @param requestOptions - Options for the request
|
27
|
+
* @returns A Promise that deletes an item.
|
28
|
+
*/
|
29
|
+
export function removeItem(
|
30
|
+
requestOptions: IUserItemOptions
|
31
|
+
): Promise<{ success: boolean; itemId: string }> {
|
32
|
+
return determineOwner(requestOptions).then(owner => {
|
33
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
34
|
+
requestOptions.id
|
35
|
+
}/delete`;
|
36
|
+
return request(url, requestOptions);
|
37
|
+
});
|
38
|
+
}
|
39
|
+
|
40
|
+
/**
|
41
|
+
* ```js
|
42
|
+
* import { removeItemRelationship } from "@esri/arcgis-rest-portal";
|
43
|
+
* //
|
44
|
+
* removeItemRelationship({
|
45
|
+
* originItemId: '3ef',
|
46
|
+
* destinationItemId: 'ae7',
|
47
|
+
* relationshipType: 'Service2Layer',
|
48
|
+
* authentication
|
49
|
+
* })
|
50
|
+
* .then(response)
|
51
|
+
* ```
|
52
|
+
* Remove a relationship between two items. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/delete-relationship.htm) for more information.
|
53
|
+
*
|
54
|
+
* @param requestOptions - Options for the request
|
55
|
+
* @returns A Promise to add item resources.
|
56
|
+
*/
|
57
|
+
export function removeItemRelationship(
|
58
|
+
requestOptions: IManageItemRelationshipOptions
|
59
|
+
): Promise<{ success: boolean }> {
|
60
|
+
return determineOwner(requestOptions).then(owner => {
|
61
|
+
const url = `${getPortalUrl(
|
62
|
+
requestOptions
|
63
|
+
)}/content/users/${owner}/deleteRelationship`;
|
64
|
+
|
65
|
+
const options = appendCustomParams<IManageItemRelationshipOptions>(
|
66
|
+
requestOptions,
|
67
|
+
["originItemId", "destinationItemId", "relationshipType"],
|
68
|
+
{ params: { ...requestOptions.params } }
|
69
|
+
);
|
70
|
+
|
71
|
+
return request(url, options);
|
72
|
+
});
|
73
|
+
}
|
74
|
+
|
75
|
+
/**
|
76
|
+
* Remove a resource associated with an item
|
77
|
+
*
|
78
|
+
* @param requestOptions - Options for the request
|
79
|
+
* @returns A Promise that deletes an item resource.
|
80
|
+
*/
|
81
|
+
export function removeItemResource(
|
82
|
+
requestOptions: IRemoveItemResourceOptions
|
83
|
+
): Promise<{ success: boolean }> {
|
84
|
+
return determineOwner(requestOptions).then(owner => {
|
85
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
86
|
+
requestOptions.id
|
87
|
+
}/removeResources`;
|
88
|
+
|
89
|
+
// mix in user supplied params
|
90
|
+
requestOptions.params = {
|
91
|
+
...requestOptions.params,
|
92
|
+
resource: requestOptions.resource
|
93
|
+
};
|
94
|
+
|
95
|
+
// only override the deleteAll param specified previously if it is passed explicitly
|
96
|
+
if (typeof requestOptions.deleteAll !== "undefined") {
|
97
|
+
requestOptions.params.deleteAll = requestOptions.deleteAll;
|
98
|
+
}
|
99
|
+
|
100
|
+
return request(url, requestOptions);
|
101
|
+
});
|
102
|
+
}
|
103
|
+
|
104
|
+
/**
|
105
|
+
* ```js
|
106
|
+
* import { removeFolder } from "@esri/arcgis-rest-portal";
|
107
|
+
* //
|
108
|
+
* removeFolder({
|
109
|
+
* folderId: "fe4",
|
110
|
+
* owner: "c@sey",
|
111
|
+
* authentication
|
112
|
+
* })
|
113
|
+
* .then(response)
|
114
|
+
*
|
115
|
+
* ```
|
116
|
+
* Delete a non-root folder and all the items it contains. See the [REST
|
117
|
+
* Documentation](https://developers.arcgis.com/rest/users-groups-and-items/delete-folder.htm) for
|
118
|
+
* more information.
|
119
|
+
*
|
120
|
+
* @param requestOptions - Options for the request
|
121
|
+
* @returns A Promise that deletes a folder
|
122
|
+
*/
|
123
|
+
export function removeFolder(
|
124
|
+
requestOptions: IFolderIdOptions
|
125
|
+
): Promise<{
|
126
|
+
success: boolean;
|
127
|
+
folder: {
|
128
|
+
username: string;
|
129
|
+
id: string;
|
130
|
+
title: string;
|
131
|
+
};
|
132
|
+
}> {
|
133
|
+
return determineOwner(requestOptions).then(owner => {
|
134
|
+
const url = `${getPortalUrl(
|
135
|
+
requestOptions
|
136
|
+
)}/content/users/${encodeURIComponent(owner)}/${
|
137
|
+
requestOptions.folderId
|
138
|
+
}/delete`;
|
139
|
+
return request(url, requestOptions);
|
140
|
+
});
|
141
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
/* Copyright (c) 2018-2019 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { IItem } from "@esri/arcgis-rest-types";
|
5
|
+
import { SearchQueryBuilder } from "../util/SearchQueryBuilder";
|
6
|
+
import { ISearchOptions, ISearchResult } from "../util/search";
|
7
|
+
import { genericSearch } from "../util/generic-search";
|
8
|
+
|
9
|
+
/**
|
10
|
+
* ```js
|
11
|
+
* import { searchItems } from "@esri/arcgis-rest-portal";
|
12
|
+
* //
|
13
|
+
* searchItems('water')
|
14
|
+
* .then(response) // response.total => 355
|
15
|
+
* ```
|
16
|
+
* Search a portal for items. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/search.htm) for more information.
|
17
|
+
*
|
18
|
+
* @param search - A string or RequestOptions object to pass through to the endpoint.
|
19
|
+
* @returns A Promise that will resolve with the data from the response.
|
20
|
+
*/
|
21
|
+
export function searchItems(
|
22
|
+
search: string | ISearchOptions | SearchQueryBuilder
|
23
|
+
): Promise<ISearchResult<IItem>> {
|
24
|
+
return genericSearch<IItem>(search, "item");
|
25
|
+
}
|