aspernaturalias 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.prettierignore +2 -0
- package/.travis.yml +31 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/codecov.yml +3 -0
- package/demos/ago-node-cli/README.md +29 -0
- package/demos/ago-node-cli/ago.js +33 -0
- package/demos/ago-node-cli/index.js +11 -0
- package/demos/ago-node-cli/lib/item-export-command.js +48 -0
- package/demos/ago-node-cli/lib/item-search-command.js +35 -0
- package/demos/ago-node-cli/package-lock.json +152 -0
- package/demos/ago-node-cli/package.json +30 -0
- package/demos/attachments/README.md +5 -0
- package/demos/attachments/index.html +164 -0
- package/demos/attachments/package-lock.json +182 -0
- package/demos/attachments/package.json +18 -0
- package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
- package/demos/batch-geocoder-node/README.md +15 -0
- package/demos/batch-geocoder-node/batch-geocode.js +115 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package-lock.json +94 -0
- package/demos/batch-geocoder-node/package.json +38 -0
- package/demos/express/README.md +15 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package-lock.json +413 -0
- package/demos/express/package.json +18 -0
- package/demos/express/server.js +33 -0
- package/demos/feature-service-browser/README.md +6 -0
- package/demos/feature-service-browser/index.html +122 -0
- package/demos/feature-service-browser/package-lock.json +182 -0
- package/demos/feature-service-browser/package.json +18 -0
- package/demos/geocoder-browser/README.md +10 -0
- package/demos/geocoder-browser/config.js.template +1 -0
- package/demos/geocoder-browser/index.html +131 -0
- package/demos/geocoder-browser/package-lock.json +182 -0
- package/demos/geocoder-browser/package.json +19 -0
- package/demos/geocoder-browser/post-sign-in.html +25 -0
- package/demos/jsapi-integration/README.md +25 -0
- package/demos/jsapi-integration/config.js +6 -0
- package/demos/jsapi-integration/index.html +85 -0
- package/demos/jsapi-integration/package-lock.json +184 -0
- package/demos/jsapi-integration/package.json +19 -0
- package/demos/node-cli-item-management/README.md +10 -0
- package/demos/node-cli-item-management/index.js +238 -0
- package/demos/node-cli-item-management/package-lock.json +152 -0
- package/demos/node-cli-item-management/package.json +27 -0
- package/demos/node-cli-item-management/screenshot.png +0 -0
- package/demos/oauth2-browser/README.md +14 -0
- package/demos/oauth2-browser/authenticate.html +30 -0
- package/demos/oauth2-browser/config.js.template +6 -0
- package/demos/oauth2-browser/index.html +202 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package-lock.json +163 -0
- package/demos/oauth2-browser/package.json +18 -0
- package/demos/oauth2-browser/style.css +36 -0
- package/demos/oauth2-browser-retry/README.md +25 -0
- package/demos/oauth2-browser-retry/authenticate.html +22 -0
- package/demos/oauth2-browser-retry/index.html +116 -0
- package/demos/oauth2-browser-retry/logo.svg +4 -0
- package/demos/stream-response-to-file/README.md +7 -0
- package/demos/stream-response-to-file/index.js +36 -0
- package/demos/stream-response-to-file/output/.gitkeep +0 -0
- package/demos/stream-response-to-file/package-lock.json +60 -0
- package/demos/stream-response-to-file/package.json +33 -0
- package/demos/tree-shaking-rollup/.babelrc +3 -0
- package/demos/tree-shaking-rollup/README.md +9 -0
- package/demos/tree-shaking-rollup/index.html +11 -0
- package/demos/tree-shaking-rollup/package-lock.json +2225 -0
- package/demos/tree-shaking-rollup/package.json +25 -0
- package/demos/tree-shaking-rollup/rollup.config.js +17 -0
- package/demos/tree-shaking-rollup/src/index.js +8 -0
- package/demos/tree-shaking-webpack/README.md +9 -0
- package/demos/tree-shaking-webpack/index.html +11 -0
- package/demos/tree-shaking-webpack/package-lock.json +4595 -0
- package/demos/tree-shaking-webpack/package.json +24 -0
- package/demos/tree-shaking-webpack/src/index.js +10 -0
- package/demos/tree-shaking-webpack/webpack.config.js +27 -0
- package/demos/vue/.env.example +11 -0
- package/demos/vue/.eslintrc.js +17 -0
- package/demos/vue/.postcssrc.js +5 -0
- package/demos/vue/README.md +17 -0
- package/demos/vue/babel.config.js +3 -0
- package/demos/vue/package-lock.json +11323 -0
- package/demos/vue/package.json +33 -0
- package/demos/vue/public/favicon.ico +0 -0
- package/demos/vue/public/index.html +24 -0
- package/demos/vue/src/assets/logo.svg +29 -0
- package/demos/vue/src/components/App.vue +305 -0
- package/demos/vue/src/components/Authenticate.vue +65 -0
- package/demos/vue/src/components/Loader.vue +230 -0
- package/demos/vue/src/main.js +92 -0
- package/demos/webmap-checker-sapper/.env.example +5 -0
- package/demos/webmap-checker-sapper/README.md +123 -0
- package/demos/webmap-checker-sapper/appveyor.yml +18 -0
- package/demos/webmap-checker-sapper/cypress/fixtures/example.json +5 -0
- package/demos/webmap-checker-sapper/cypress/integration/spec.js +19 -0
- package/demos/webmap-checker-sapper/cypress/plugins/index.js +17 -0
- package/demos/webmap-checker-sapper/cypress/support/commands.js +25 -0
- package/demos/webmap-checker-sapper/cypress/support/index.js +20 -0
- package/demos/webmap-checker-sapper/cypress.json +4 -0
- package/demos/webmap-checker-sapper/package-lock.json +3851 -0
- package/demos/webmap-checker-sapper/package.json +50 -0
- package/demos/webmap-checker-sapper/rollup.config.js +87 -0
- package/demos/webmap-checker-sapper/src/client.js +20 -0
- package/demos/webmap-checker-sapper/src/components/LayerStatus.html +108 -0
- package/demos/webmap-checker-sapper/src/components/Nav.html +21 -0
- package/demos/webmap-checker-sapper/src/components/WebMap.html +62 -0
- package/demos/webmap-checker-sapper/src/routes/_error.html +41 -0
- package/demos/webmap-checker-sapper/src/routes/_layout.html +21 -0
- package/demos/webmap-checker-sapper/src/routes/auth/authorize.js +18 -0
- package/demos/webmap-checker-sapper/src/routes/auth/exchange-token.js +20 -0
- package/demos/webmap-checker-sapper/src/routes/auth/post-sign-in.js +24 -0
- package/demos/webmap-checker-sapper/src/routes/auth/sign-out.js +10 -0
- package/demos/webmap-checker-sapper/src/routes/index.html +20 -0
- package/demos/webmap-checker-sapper/src/routes/webmaps/[webmapId].html +83 -0
- package/demos/webmap-checker-sapper/src/routes/webmaps/index.html +59 -0
- package/demos/webmap-checker-sapper/src/server.js +101 -0
- package/demos/webmap-checker-sapper/src/service-worker.js +82 -0
- package/demos/webmap-checker-sapper/src/template.html +33 -0
- package/demos/webmap-checker-sapper/src/userInfoMiddleware.js +21 -0
- package/demos/webmap-checker-sapper/src/utils.js +33 -0
- package/demos/webmap-checker-sapper/static/favicon.png +0 -0
- package/demos/webmap-checker-sapper/static/global.css +36 -0
- package/demos/webmap-checker-sapper/static/manifest.json +20 -0
- package/demos/webmap-checker-sapper/static/svelte-logo-192.png +0 -0
- package/demos/webmap-checker-sapper/static/svelte-logo-512.png +0 -0
- package/docs/FAQ.md +48 -0
- package/docs/HISTORY.md +62 -0
- package/docs/acetate.config.js +262 -0
- package/docs/build-typedoc.js +434 -0
- package/docs/generate-srihashes.js +53 -0
- package/docs/src/_layout.html +86 -0
- package/docs/src/api/_declaration.html +600 -0
- package/docs/src/api/_layout.html +204 -0
- package/docs/src/api/_package.html +38 -0
- package/docs/src/api/index.html +16 -0
- package/docs/src/guides/_layout.html +24 -0
- package/docs/src/guides/amd-requirejs-dojo.md +40 -0
- package/docs/src/guides/browser-authentication.md +41 -0
- package/docs/src/guides/bundlers.md +52 -0
- package/docs/src/guides/cli-authentication.md +9 -0
- package/docs/src/guides/client-server-authentication.md +9 -0
- package/docs/src/guides/from-a-cdn.md +38 -0
- package/docs/src/guides/index.md +59 -0
- package/docs/src/guides/node.md +87 -0
- package/docs/src/guides/package-overview.md +111 -0
- package/docs/src/guides/server-authentication.md +9 -0
- package/docs/src/guides/whats-new-v2-0.md +305 -0
- package/docs/src/img/icons.png +0 -0
- package/docs/src/img/icons@2x.png +0 -0
- package/docs/src/index.html +12 -0
- package/docs/src/js/api-search.js +112 -0
- package/docs/src/js/nav-toggle.js +41 -0
- package/docs/src/sass/_highlight.scss +96 -0
- package/docs/src/sass/_icons.scss +157 -0
- package/docs/src/sass/style.scss +242 -0
- package/docs/src/srihashes.json +12 -0
- package/jasmine.json +7 -0
- package/karma.conf.js +106 -0
- package/lerna.json +8 -0
- package/notes/README.md +88 -0
- package/package.json +129 -0
- package/packages/arcgis-rest-auth/README.md +71 -0
- package/packages/arcgis-rest-auth/package-lock.json +11 -0
- package/packages/arcgis-rest-auth/package.json +69 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +122 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +997 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -0
- package/packages/arcgis-rest-auth/src/fetch-token.ts +50 -0
- package/packages/arcgis-rest-auth/src/generate-token.ts +35 -0
- package/packages/arcgis-rest-auth/src/index.ts +9 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +1315 -0
- package/packages/arcgis-rest-auth/test/fetchToken.test.ts +112 -0
- package/packages/arcgis-rest-auth/test/generateToken.test.ts +102 -0
- package/packages/arcgis-rest-auth/test/utils.ts +14 -0
- package/packages/arcgis-rest-auth/tsconfig.json +6 -0
- package/packages/arcgis-rest-feature-layer/README.md +77 -0
- package/packages/arcgis-rest-feature-layer/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-layer/package.json +64 -0
- package/packages/arcgis-rest-feature-layer/src/add.ts +56 -0
- package/packages/arcgis-rest-feature-layer/src/addAttachment.ts +53 -0
- package/packages/arcgis-rest-feature-layer/src/decodeValues.ts +124 -0
- package/packages/arcgis-rest-feature-layer/src/delete.ts +61 -0
- package/packages/arcgis-rest-feature-layer/src/deleteAttachments.ts +52 -0
- package/packages/arcgis-rest-feature-layer/src/getAttachments.ts +55 -0
- package/packages/arcgis-rest-feature-layer/src/getLayer.ts +24 -0
- package/packages/arcgis-rest-feature-layer/src/helpers.ts +55 -0
- package/packages/arcgis-rest-feature-layer/src/index.ts +28 -0
- package/packages/arcgis-rest-feature-layer/src/query.ts +203 -0
- package/packages/arcgis-rest-feature-layer/src/queryRelated.ts +89 -0
- package/packages/arcgis-rest-feature-layer/src/update.ts +56 -0
- package/packages/arcgis-rest-feature-layer/src/updateAttachment.ts +59 -0
- package/packages/arcgis-rest-feature-layer/test/attachments.test.ts +202 -0
- package/packages/arcgis-rest-feature-layer/test/crud.test.ts +130 -0
- package/packages/arcgis-rest-feature-layer/test/decodeValues.test.ts +67 -0
- package/packages/arcgis-rest-feature-layer/test/getLayer.test.ts +31 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/cvdQueryResponse.ts +225 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/feature.ts +281 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/fields.ts +779 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/foo.txt +1 -0
- package/packages/arcgis-rest-feature-layer/test/mocks/service.ts +259 -0
- package/packages/arcgis-rest-feature-layer/test/query.test.ts +168 -0
- package/packages/arcgis-rest-feature-layer/tsconfig.json +6 -0
- package/packages/arcgis-rest-geocoding/README.md +86 -0
- package/packages/arcgis-rest-geocoding/package-lock.json +11 -0
- package/packages/arcgis-rest-geocoding/package.json +64 -0
- package/packages/arcgis-rest-geocoding/src/bulk.ts +105 -0
- package/packages/arcgis-rest-geocoding/src/geocode.ts +130 -0
- package/packages/arcgis-rest-geocoding/src/helpers.ts +54 -0
- package/packages/arcgis-rest-geocoding/src/index.ts +15 -0
- package/packages/arcgis-rest-geocoding/src/reverse.ts +84 -0
- package/packages/arcgis-rest-geocoding/src/suggest.ts +45 -0
- package/packages/arcgis-rest-geocoding/test/bulk.test.ts +151 -0
- package/packages/arcgis-rest-geocoding/test/geocode.test.ts +212 -0
- package/packages/arcgis-rest-geocoding/test/helpers.test.ts +85 -0
- package/packages/arcgis-rest-geocoding/test/mocks/responses.ts +637 -0
- package/packages/arcgis-rest-geocoding/test/reverse.test.ts +126 -0
- package/packages/arcgis-rest-geocoding/test/suggest.test.ts +53 -0
- package/packages/arcgis-rest-geocoding/tsconfig.json +6 -0
- package/packages/arcgis-rest-portal/README.md +73 -0
- package/packages/arcgis-rest-portal/package-lock.json +11 -0
- package/packages/arcgis-rest-portal/package.json +64 -0
- package/packages/arcgis-rest-portal/src/groups/create.ts +43 -0
- package/packages/arcgis-rest-portal/src/groups/get.ts +99 -0
- package/packages/arcgis-rest-portal/src/groups/helpers.ts +14 -0
- package/packages/arcgis-rest-portal/src/groups/join.ts +57 -0
- package/packages/arcgis-rest-portal/src/groups/notification.ts +77 -0
- package/packages/arcgis-rest-portal/src/groups/protect.ts +56 -0
- package/packages/arcgis-rest-portal/src/groups/remove.ts +32 -0
- package/packages/arcgis-rest-portal/src/groups/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/groups/update.ts +39 -0
- package/packages/arcgis-rest-portal/src/index.ts +48 -0
- package/packages/arcgis-rest-portal/src/items/add.ts +137 -0
- package/packages/arcgis-rest-portal/src/items/create.ts +128 -0
- package/packages/arcgis-rest-portal/src/items/get.ts +177 -0
- package/packages/arcgis-rest-portal/src/items/helpers.ts +193 -0
- package/packages/arcgis-rest-portal/src/items/protect.ts +39 -0
- package/packages/arcgis-rest-portal/src/items/remove.ts +131 -0
- package/packages/arcgis-rest-portal/src/items/search.ts +25 -0
- package/packages/arcgis-rest-portal/src/items/update.ts +145 -0
- package/packages/arcgis-rest-portal/src/sharing/access.ts +84 -0
- package/packages/arcgis-rest-portal/src/sharing/group-sharing.ts +210 -0
- package/packages/arcgis-rest-portal/src/sharing/helpers.ts +84 -0
- package/packages/arcgis-rest-portal/src/users/get-user-url.ts +18 -0
- package/packages/arcgis-rest-portal/src/users/get-user.ts +58 -0
- package/packages/arcgis-rest-portal/src/users/invitation.ts +162 -0
- package/packages/arcgis-rest-portal/src/users/notification.ts +70 -0
- package/packages/arcgis-rest-portal/src/users/update.ts +66 -0
- package/packages/arcgis-rest-portal/src/util/SearchQueryBuilder.ts +374 -0
- package/packages/arcgis-rest-portal/src/util/generic-search.ts +67 -0
- package/packages/arcgis-rest-portal/src/util/get-portal-url.ts +27 -0
- package/packages/arcgis-rest-portal/src/util/get-portal.ts +52 -0
- package/packages/arcgis-rest-portal/src/util/search.ts +38 -0
- package/packages/arcgis-rest-portal/test/groups/crud.test.ts +180 -0
- package/packages/arcgis-rest-portal/test/groups/get.test.ts +101 -0
- package/packages/arcgis-rest-portal/test/groups/join.test.ts +72 -0
- package/packages/arcgis-rest-portal/test/groups/notification.test.ts +112 -0
- package/packages/arcgis-rest-portal/test/groups/protect.test.ts +72 -0
- package/packages/arcgis-rest-portal/test/groups/search.test.ts +110 -0
- package/packages/arcgis-rest-portal/test/items/add.test.ts +321 -0
- package/packages/arcgis-rest-portal/test/items/create.test.ts +375 -0
- package/packages/arcgis-rest-portal/test/items/get.test.ts +309 -0
- package/packages/arcgis-rest-portal/test/items/protect.test.ts +122 -0
- package/packages/arcgis-rest-portal/test/items/remove.test.ts +238 -0
- package/packages/arcgis-rest-portal/test/items/search.test.ts +272 -0
- package/packages/arcgis-rest-portal/test/items/update.test.ts +515 -0
- package/packages/arcgis-rest-portal/test/mocks/groups/responses.ts +144 -0
- package/packages/arcgis-rest-portal/test/mocks/items/foo.zip +0 -0
- package/packages/arcgis-rest-portal/test/mocks/items/item.ts +122 -0
- package/packages/arcgis-rest-portal/test/mocks/items/resources.ts +31 -0
- package/packages/arcgis-rest-portal/test/mocks/items/search.ts +121 -0
- package/packages/arcgis-rest-portal/test/mocks/portal/response.ts +112 -0
- package/packages/arcgis-rest-portal/test/mocks/sharing/sharing.ts +18 -0
- package/packages/arcgis-rest-portal/test/mocks/users/invitation.ts +70 -0
- package/packages/arcgis-rest-portal/test/mocks/users/notification.ts +34 -0
- package/packages/arcgis-rest-portal/test/mocks/users/user.ts +173 -0
- package/packages/arcgis-rest-portal/test/sharing/access.test.ts +162 -0
- package/packages/arcgis-rest-portal/test/sharing/group-sharing.test.ts +650 -0
- package/packages/arcgis-rest-portal/test/sharing/helpers.test.ts +55 -0
- package/packages/arcgis-rest-portal/test/users/get-user-url.test.ts +40 -0
- package/packages/arcgis-rest-portal/test/users/get-user.test.ts +90 -0
- package/packages/arcgis-rest-portal/test/users/invitation.test.ts +127 -0
- package/packages/arcgis-rest-portal/test/users/notification.test.ts +77 -0
- package/packages/arcgis-rest-portal/test/users/update.test.ts +151 -0
- package/packages/arcgis-rest-portal/test/util/SearchQueryBuilder.test.ts +340 -0
- package/packages/arcgis-rest-portal/test/util/get-portal-url.test.ts +37 -0
- package/packages/arcgis-rest-portal/test/util/portal.test.ts +97 -0
- package/packages/arcgis-rest-portal/tsconfig.json +6 -0
- package/packages/arcgis-rest-request/README.md +72 -0
- package/packages/arcgis-rest-request/package-lock.json +11 -0
- package/packages/arcgis-rest-request/package.json +60 -0
- package/packages/arcgis-rest-request/src/index.ts +24 -0
- package/packages/arcgis-rest-request/src/request.ts +389 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +76 -0
- package/packages/arcgis-rest-request/src/utils/ErrorTypes.ts +29 -0
- package/packages/arcgis-rest-request/src/utils/GrantTypes.ts +5 -0
- package/packages/arcgis-rest-request/src/utils/HTTPMethods.ts +6 -0
- package/packages/arcgis-rest-request/src/utils/IAuthenticationManager.ts +21 -0
- package/packages/arcgis-rest-request/src/utils/IFetchTokenParams.ts +11 -0
- package/packages/arcgis-rest-request/src/utils/IGenerateTokenParams.ts +9 -0
- package/packages/arcgis-rest-request/src/utils/IParamBuilder.ts +3 -0
- package/packages/arcgis-rest-request/src/utils/IParams.ts +6 -0
- package/packages/arcgis-rest-request/src/utils/IParamsBuilder.ts +5 -0
- package/packages/arcgis-rest-request/src/utils/IRequestOptions.ts +43 -0
- package/packages/arcgis-rest-request/src/utils/ITokenRequestOptions.ts +9 -0
- package/packages/arcgis-rest-request/src/utils/ResponseFormats.ts +10 -0
- package/packages/arcgis-rest-request/src/utils/append-custom-params.ts +49 -0
- package/packages/arcgis-rest-request/src/utils/clean-url.ts +16 -0
- package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +38 -0
- package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +23 -0
- package/packages/arcgis-rest-request/src/utils/process-params.ts +109 -0
- package/packages/arcgis-rest-request/src/utils/retryAuthError.ts +10 -0
- package/packages/arcgis-rest-request/src/utils/warn.ts +11 -0
- package/packages/arcgis-rest-request/src/utils/with-options.ts +48 -0
- package/packages/arcgis-rest-request/test/mocks/errors.ts +76 -0
- package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +13 -0
- package/packages/arcgis-rest-request/test/mocks/param-builder.ts +7 -0
- package/packages/arcgis-rest-request/test/mocks/sharing-rest-info.ts +41 -0
- package/packages/arcgis-rest-request/test/mocks/webmap.ts +41 -0
- package/packages/arcgis-rest-request/test/request.test.ts +496 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +191 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISRequestError.test.ts +51 -0
- package/packages/arcgis-rest-request/test/utils/check-for-errors.test.ts +111 -0
- package/packages/arcgis-rest-request/test/utils/clean-url.test.ts +47 -0
- package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +193 -0
- package/packages/arcgis-rest-request/test/utils/with-options.test.ts +133 -0
- package/packages/arcgis-rest-request/tsconfig.json +4 -0
- package/packages/arcgis-rest-routing/README.md +75 -0
- package/packages/arcgis-rest-routing/package-lock.json +11 -0
- package/packages/arcgis-rest-routing/package.json +63 -0
- package/packages/arcgis-rest-routing/src/helpers.ts +16 -0
- package/packages/arcgis-rest-routing/src/index.ts +11 -0
- package/packages/arcgis-rest-routing/src/solveRoute.ts +124 -0
- package/packages/arcgis-rest-routing/test/mocks/responses.ts +825 -0
- package/packages/arcgis-rest-routing/test/solveRoute.test.ts +509 -0
- package/packages/arcgis-rest-routing/tsconfig.json +6 -0
- package/packages/arcgis-rest-service-admin/README.md +73 -0
- package/packages/arcgis-rest-service-admin/package-lock.json +11 -0
- package/packages/arcgis-rest-service-admin/package.json +65 -0
- package/packages/arcgis-rest-service-admin/src/addTo.ts +70 -0
- package/packages/arcgis-rest-service-admin/src/create.ts +213 -0
- package/packages/arcgis-rest-service-admin/src/index.ts +9 -0
- package/packages/arcgis-rest-service-admin/test/addTo.test.ts +350 -0
- package/packages/arcgis-rest-service-admin/test/create.test.ts +377 -0
- package/packages/arcgis-rest-service-admin/test/mocks/layerDefinition.ts +79 -0
- package/packages/arcgis-rest-service-admin/test/mocks/move.ts +11 -0
- package/packages/arcgis-rest-service-admin/test/mocks/service.ts +69 -0
- package/packages/arcgis-rest-service-admin/tsconfig.json +6 -0
- package/packages/arcgis-rest-types/README.md +66 -0
- package/packages/arcgis-rest-types/package.json +54 -0
- package/packages/arcgis-rest-types/src/feature.ts +39 -0
- package/packages/arcgis-rest-types/src/geometry.ts +272 -0
- package/packages/arcgis-rest-types/src/group.ts +72 -0
- package/packages/arcgis-rest-types/src/index.ts +7 -0
- package/packages/arcgis-rest-types/src/item.ts +65 -0
- package/packages/arcgis-rest-types/src/symbol.ts +170 -0
- package/packages/arcgis-rest-types/src/user.ts +48 -0
- package/packages/arcgis-rest-types/src/webmap.ts +1345 -0
- package/packages/arcgis-rest-types/tsconfig.json +9 -0
- package/support/changelog.js +393 -0
- package/support/deploy-doc-site.js +16 -0
- package/support/dev.sh +6 -0
- package/support/publish.sh +47 -0
- package/support/test-helpers.js +9 -0
- package/tsconfig.json +63 -0
- package/tslint.json +16 -0
- package/umd-base-profile.js +81 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,193 @@
|
|
1
|
+
/* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { IRequestOptions } 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
|
+
| "Map2Service"
|
35
|
+
| "WMA2Code"
|
36
|
+
| "Map2FeatureCollection"
|
37
|
+
| "MobileApp2Code"
|
38
|
+
| "Service2Data"
|
39
|
+
| "Service2Service"
|
40
|
+
| "Map2AppConfig"
|
41
|
+
| "Item2Attachment"
|
42
|
+
| "Item2Report"
|
43
|
+
| "Listed2Provisioned"
|
44
|
+
| "Style2Style"
|
45
|
+
| "Service2Style"
|
46
|
+
| "Survey2Service"
|
47
|
+
| "Survey2Data"
|
48
|
+
| "Service2Route"
|
49
|
+
| "Area2Package"
|
50
|
+
| "Map2Area"
|
51
|
+
| "Service2Layer"
|
52
|
+
| "Area2CustomPackage";
|
53
|
+
|
54
|
+
export interface IItemRelationshipOptions extends IRequestOptions {
|
55
|
+
/**
|
56
|
+
* Unique identifier of the item.
|
57
|
+
*/
|
58
|
+
id: string;
|
59
|
+
/**
|
60
|
+
* The type of relationship between the two items.
|
61
|
+
*/
|
62
|
+
relationshipType: ItemRelationshipType | ItemRelationshipType[];
|
63
|
+
/**
|
64
|
+
* The direction of the relationship. Either forward (from origin -> destination) or reverse (from destination -> origin).
|
65
|
+
*/
|
66
|
+
direction?: "forward" | "reverse";
|
67
|
+
}
|
68
|
+
|
69
|
+
export interface IManageItemRelationshipOptions extends IUserRequestOptions {
|
70
|
+
originItemId: string;
|
71
|
+
destinationItemId: string;
|
72
|
+
relationshipType: ItemRelationshipType;
|
73
|
+
}
|
74
|
+
|
75
|
+
export interface IItemResourceOptions extends IUserItemOptions {
|
76
|
+
/**
|
77
|
+
* New resource filename.
|
78
|
+
*/
|
79
|
+
name?: string;
|
80
|
+
/**
|
81
|
+
* Text input to be added as a file resource.
|
82
|
+
*/
|
83
|
+
content?: string;
|
84
|
+
/**
|
85
|
+
* Controls whether access to the file resource is restricted to the owner or inherited from the sharing permissions set for the associated item.
|
86
|
+
*/
|
87
|
+
private?: boolean;
|
88
|
+
/**
|
89
|
+
* Object to store
|
90
|
+
*/
|
91
|
+
resource?: any;
|
92
|
+
}
|
93
|
+
|
94
|
+
export interface ICreateUpdateItemOptions extends IUserRequestOptions {
|
95
|
+
/**
|
96
|
+
* The owner of the item. If this property is not present, `item.owner` will be passed, or lastly `authentication.username`.
|
97
|
+
*/
|
98
|
+
owner?: string;
|
99
|
+
/**
|
100
|
+
* Id of the folder to house the item.
|
101
|
+
*/
|
102
|
+
folderId?: string;
|
103
|
+
}
|
104
|
+
|
105
|
+
export interface IItemDataOptions extends IRequestOptions {
|
106
|
+
/**
|
107
|
+
* Used to request binary data.
|
108
|
+
*/
|
109
|
+
file?: boolean;
|
110
|
+
}
|
111
|
+
|
112
|
+
export interface IUpdateItemResponse {
|
113
|
+
success: boolean;
|
114
|
+
id: string;
|
115
|
+
}
|
116
|
+
|
117
|
+
export interface IItemResourceResponse {
|
118
|
+
success: boolean;
|
119
|
+
itemId: string;
|
120
|
+
owner: string;
|
121
|
+
folder: string;
|
122
|
+
}
|
123
|
+
|
124
|
+
export interface IAddFolderResponse {
|
125
|
+
/**
|
126
|
+
* Success or failure of request.
|
127
|
+
*/
|
128
|
+
success: boolean;
|
129
|
+
/**
|
130
|
+
* Information about created folder: its alphanumeric id, name, and owner's name.
|
131
|
+
*/
|
132
|
+
folder: {
|
133
|
+
id: string;
|
134
|
+
title: string;
|
135
|
+
username: string;
|
136
|
+
};
|
137
|
+
}
|
138
|
+
|
139
|
+
export interface IMoveItemResponse {
|
140
|
+
/**
|
141
|
+
* Success or failure of request.
|
142
|
+
*/
|
143
|
+
success: boolean;
|
144
|
+
/**
|
145
|
+
* Alphanumeric id of moved item.
|
146
|
+
*/
|
147
|
+
itemId: string;
|
148
|
+
/**
|
149
|
+
* Name of owner of item.
|
150
|
+
*/
|
151
|
+
owner: string;
|
152
|
+
/**
|
153
|
+
* Alphanumeric id of folder now housing item.
|
154
|
+
*/
|
155
|
+
folder: string;
|
156
|
+
}
|
157
|
+
|
158
|
+
/**
|
159
|
+
* Serialize an item and its data into a json format accepted by the Portal API for create and update operations
|
160
|
+
*
|
161
|
+
* @param item Item to be serialized
|
162
|
+
* @returns a formatted json object to be sent to Portal
|
163
|
+
*/
|
164
|
+
export function serializeItem(item: IItemAdd | IItemUpdate | IItem): any {
|
165
|
+
// create a clone so we're not messing with the original
|
166
|
+
const clone = JSON.parse(JSON.stringify(item));
|
167
|
+
|
168
|
+
// binary data needs POSTed as a `file`
|
169
|
+
// JSON object literals should be passed as `text`.
|
170
|
+
if (clone.data) {
|
171
|
+
(typeof Blob !== "undefined" && item.data instanceof Blob) ||
|
172
|
+
// Node.js doesn't implement Blob
|
173
|
+
item.data.constructor.name === "ReadStream"
|
174
|
+
? (clone.file = item.data)
|
175
|
+
: (clone.text = item.data);
|
176
|
+
delete clone.data;
|
177
|
+
}
|
178
|
+
return clone;
|
179
|
+
}
|
180
|
+
|
181
|
+
/**
|
182
|
+
* requestOptions.owner is given priority, requestOptions.item.owner will be checked next. If neither are present, authentication.username will be assumed.
|
183
|
+
*/
|
184
|
+
export function determineOwner(requestOptions: any): string {
|
185
|
+
if (requestOptions.owner) {
|
186
|
+
return requestOptions.owner;
|
187
|
+
}
|
188
|
+
if (requestOptions.item && requestOptions.item.owner) {
|
189
|
+
return requestOptions.item.owner;
|
190
|
+
} else {
|
191
|
+
return requestOptions.authentication.username;
|
192
|
+
}
|
193
|
+
}
|
@@ -0,0 +1,39 @@
|
|
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
|
+
const owner = determineOwner(requestOptions);
|
19
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
20
|
+
requestOptions.id
|
21
|
+
}/protect`;
|
22
|
+
return request(url, requestOptions);
|
23
|
+
}
|
24
|
+
|
25
|
+
/**
|
26
|
+
* Unprotect an item. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/unprotect.htm) for more information.
|
27
|
+
*
|
28
|
+
* @param requestOptions - Options for the request
|
29
|
+
* @returns A Promise to unprotect an item.
|
30
|
+
*/
|
31
|
+
export function unprotectItem(
|
32
|
+
requestOptions: IUserItemOptions
|
33
|
+
): Promise<{ success: boolean }> {
|
34
|
+
const owner = determineOwner(requestOptions);
|
35
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
36
|
+
requestOptions.id
|
37
|
+
}/unprotect`;
|
38
|
+
return request(url, requestOptions);
|
39
|
+
}
|
@@ -0,0 +1,131 @@
|
|
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
|
+
IItemResourceOptions,
|
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
|
+
const owner = determineOwner(requestOptions);
|
33
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
34
|
+
requestOptions.id
|
35
|
+
}/delete`;
|
36
|
+
return request(url, requestOptions);
|
37
|
+
}
|
38
|
+
|
39
|
+
/**
|
40
|
+
* ```js
|
41
|
+
* import { removeItemRelationship } from "@esri/arcgis-rest-portal";
|
42
|
+
* //
|
43
|
+
* removeItemRelationship({
|
44
|
+
* originItemId: '3ef',
|
45
|
+
* destinationItemId: 'ae7',
|
46
|
+
* relationshipType: 'Service2Layer',
|
47
|
+
* authentication
|
48
|
+
* })
|
49
|
+
* .then(response)
|
50
|
+
* ```
|
51
|
+
* 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.
|
52
|
+
*
|
53
|
+
* @param requestOptions - Options for the request
|
54
|
+
* @returns A Promise to add item resources.
|
55
|
+
*/
|
56
|
+
export function removeItemRelationship(
|
57
|
+
requestOptions: IManageItemRelationshipOptions
|
58
|
+
): Promise<{ success: boolean }> {
|
59
|
+
const owner = determineOwner(requestOptions);
|
60
|
+
const url = `${getPortalUrl(
|
61
|
+
requestOptions
|
62
|
+
)}/content/users/${owner}/removeRelationship`;
|
63
|
+
|
64
|
+
const options = appendCustomParams<IManageItemRelationshipOptions>(
|
65
|
+
requestOptions,
|
66
|
+
["originItemId", "destinationItemId", "relationshipType"],
|
67
|
+
{ params: { ...requestOptions.params } }
|
68
|
+
);
|
69
|
+
|
70
|
+
return request(url, options);
|
71
|
+
}
|
72
|
+
|
73
|
+
/**
|
74
|
+
* Remove a resource associated with an item
|
75
|
+
*
|
76
|
+
* @param requestOptions - Options for the request
|
77
|
+
* @returns A Promise that deletes an item resource.
|
78
|
+
*/
|
79
|
+
export function removeItemResource(
|
80
|
+
requestOptions: IItemResourceOptions
|
81
|
+
): Promise<{ success: boolean }> {
|
82
|
+
const owner = determineOwner(requestOptions);
|
83
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
84
|
+
requestOptions.id
|
85
|
+
}/removeResources`;
|
86
|
+
|
87
|
+
// mix in user supplied params
|
88
|
+
requestOptions.params = {
|
89
|
+
...requestOptions.params,
|
90
|
+
resource: requestOptions.resource
|
91
|
+
};
|
92
|
+
return request(url, requestOptions);
|
93
|
+
}
|
94
|
+
|
95
|
+
/**
|
96
|
+
* ```js
|
97
|
+
* import { removeFolder } from "@esri/arcgis-rest-portal";
|
98
|
+
* //
|
99
|
+
* removeFolder({
|
100
|
+
* folderId: "fe4",
|
101
|
+
* owner: "c@sey",
|
102
|
+
* authentication
|
103
|
+
* })
|
104
|
+
* .then(response)
|
105
|
+
*
|
106
|
+
* ```
|
107
|
+
* Delete a non-root folder and all the items it contains. See the [REST
|
108
|
+
* Documentation](https://developers.arcgis.com/rest/users-groups-and-items/delete-folder.htm) for
|
109
|
+
* more information.
|
110
|
+
*
|
111
|
+
* @param requestOptions - Options for the request
|
112
|
+
* @returns A Promise that deletes a folder
|
113
|
+
*/
|
114
|
+
export function removeFolder(
|
115
|
+
requestOptions: IFolderIdOptions
|
116
|
+
): Promise<{
|
117
|
+
success: boolean;
|
118
|
+
folder: {
|
119
|
+
username: string;
|
120
|
+
id: string;
|
121
|
+
title: string;
|
122
|
+
};
|
123
|
+
}> {
|
124
|
+
const owner = determineOwner(requestOptions);
|
125
|
+
const url = `${getPortalUrl(
|
126
|
+
requestOptions
|
127
|
+
)}/content/users/${encodeURIComponent(owner)}/${
|
128
|
+
requestOptions.folderId
|
129
|
+
}/delete`;
|
130
|
+
return request(url, requestOptions);
|
131
|
+
}
|
@@ -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
|
+
}
|
@@ -0,0 +1,145 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { request, IRequestOptions } from "@esri/arcgis-rest-request";
|
5
|
+
import { IItemUpdate } from "@esri/arcgis-rest-types";
|
6
|
+
|
7
|
+
import { getPortalUrl } from "../util/get-portal-url";
|
8
|
+
import {
|
9
|
+
ICreateUpdateItemOptions,
|
10
|
+
IMoveItemResponse,
|
11
|
+
IItemResourceOptions,
|
12
|
+
IItemResourceResponse,
|
13
|
+
IUpdateItemResponse,
|
14
|
+
serializeItem,
|
15
|
+
determineOwner
|
16
|
+
} from "./helpers";
|
17
|
+
|
18
|
+
export interface IUpdateItemOptions extends ICreateUpdateItemOptions {
|
19
|
+
item: IItemUpdate;
|
20
|
+
}
|
21
|
+
|
22
|
+
export interface IMoveItemOptions extends ICreateUpdateItemOptions {
|
23
|
+
/**
|
24
|
+
* Alphanumeric id of item to be moved.
|
25
|
+
*/
|
26
|
+
itemId: string;
|
27
|
+
/**
|
28
|
+
* Alphanumeric id of folder to house moved item. If null, empty, or "/", the destination is the
|
29
|
+
* root folder.
|
30
|
+
*/
|
31
|
+
folderId?: string;
|
32
|
+
}
|
33
|
+
|
34
|
+
/**
|
35
|
+
* ```js
|
36
|
+
* import { updateItem } from "@esri/arcgis-rest-portal";
|
37
|
+
* //
|
38
|
+
* updateItem({
|
39
|
+
* item: {
|
40
|
+
* id: "3ef",
|
41
|
+
* description: "A three hour tour"
|
42
|
+
* },
|
43
|
+
* authentication
|
44
|
+
* })
|
45
|
+
* .then(response)
|
46
|
+
* ```
|
47
|
+
* Update an Item. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/update-item.htm) for more information.
|
48
|
+
*
|
49
|
+
* @param item - The item to update.
|
50
|
+
* @param requestOptions - Options for the request.
|
51
|
+
* @returns A Promise that updates an item.
|
52
|
+
*/
|
53
|
+
export function updateItem(
|
54
|
+
requestOptions: IUpdateItemOptions
|
55
|
+
): Promise<IUpdateItemResponse> {
|
56
|
+
const owner = determineOwner(requestOptions);
|
57
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
58
|
+
requestOptions.item.id
|
59
|
+
}/update`;
|
60
|
+
|
61
|
+
// serialize the item into something Portal will accept
|
62
|
+
requestOptions.params = {
|
63
|
+
...requestOptions.params,
|
64
|
+
...serializeItem(requestOptions.item)
|
65
|
+
};
|
66
|
+
|
67
|
+
return request(url, requestOptions);
|
68
|
+
}
|
69
|
+
|
70
|
+
/**
|
71
|
+
* ```js
|
72
|
+
* import { updateItemResource } from "@esri/arcgis-rest-portal";
|
73
|
+
* //
|
74
|
+
* updateItemResource({
|
75
|
+
* id: '3ef',
|
76
|
+
* resource: file,
|
77
|
+
* name: 'bigkahuna.jpg',
|
78
|
+
* authentication
|
79
|
+
* })
|
80
|
+
* .then(response)
|
81
|
+
* ```
|
82
|
+
* Update a resource associated with an item. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/update-resources.htm) for more information.
|
83
|
+
*
|
84
|
+
* @param requestOptions - Options for the request
|
85
|
+
* @returns A Promise that updates an item resource.
|
86
|
+
*/
|
87
|
+
export function updateItemResource(
|
88
|
+
requestOptions: IItemResourceOptions
|
89
|
+
): Promise<IItemResourceResponse> {
|
90
|
+
const owner = determineOwner(requestOptions);
|
91
|
+
const url = `${getPortalUrl(
|
92
|
+
requestOptions as IRequestOptions
|
93
|
+
)}/content/users/${owner}/items/${requestOptions.id}/updateResources`;
|
94
|
+
|
95
|
+
// mix in user supplied params
|
96
|
+
requestOptions.params = {
|
97
|
+
file: requestOptions.resource,
|
98
|
+
fileName: requestOptions.name,
|
99
|
+
text: requestOptions.content,
|
100
|
+
...requestOptions.params
|
101
|
+
};
|
102
|
+
|
103
|
+
// only override the access specified previously if 'private' is passed explicitly
|
104
|
+
if (typeof requestOptions.private !== "undefined") {
|
105
|
+
requestOptions.params.access = requestOptions.private
|
106
|
+
? "private"
|
107
|
+
: "inherit";
|
108
|
+
}
|
109
|
+
return request(url, requestOptions);
|
110
|
+
}
|
111
|
+
|
112
|
+
/**
|
113
|
+
* ```js
|
114
|
+
* import { moveItem } from "@esri/arcgis-rest-portal";
|
115
|
+
* //
|
116
|
+
* moveItem({
|
117
|
+
* itemId: "3ef",
|
118
|
+
* folderId: "7c5",
|
119
|
+
* authentication: userSession
|
120
|
+
* })
|
121
|
+
* ```
|
122
|
+
* Move an item to a folder. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/move-item.htm) for more information.
|
123
|
+
*
|
124
|
+
* @param requestOptions - Options for the request
|
125
|
+
* @returns A Promise that resolves with owner and folder details once the move has been completed
|
126
|
+
*/
|
127
|
+
export function moveItem(
|
128
|
+
requestOptions: IMoveItemOptions
|
129
|
+
): Promise<IMoveItemResponse> {
|
130
|
+
const owner = determineOwner(requestOptions);
|
131
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
132
|
+
requestOptions.itemId
|
133
|
+
}/move`;
|
134
|
+
|
135
|
+
let folderId = requestOptions.folderId;
|
136
|
+
if (!folderId) {
|
137
|
+
folderId = "/";
|
138
|
+
}
|
139
|
+
requestOptions.params = {
|
140
|
+
folder: folderId,
|
141
|
+
...requestOptions.params
|
142
|
+
};
|
143
|
+
|
144
|
+
return request(url, requestOptions);
|
145
|
+
}
|
@@ -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";
|
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 ${
|
53
|
+
requestOptions.authentication.username
|
54
|
+
}. They are neither the item owner nor an organization admin.`
|
55
|
+
);
|
56
|
+
}
|
57
|
+
});
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
function updateItemAccess(
|
62
|
+
url: string,
|
63
|
+
requestOptions: ISetAccessOptions
|
64
|
+
): Promise<any> {
|
65
|
+
requestOptions.params = {
|
66
|
+
org: false,
|
67
|
+
everyone: false,
|
68
|
+
...requestOptions.params
|
69
|
+
};
|
70
|
+
|
71
|
+
// if the user wants to make the item private, it needs to be unshared from any/all groups as well
|
72
|
+
if (requestOptions.access === "private") {
|
73
|
+
requestOptions.params.groups = " ";
|
74
|
+
}
|
75
|
+
if (requestOptions.access === "org") {
|
76
|
+
requestOptions.params.org = true;
|
77
|
+
}
|
78
|
+
// if sharing with everyone, share with the entire organization as well.
|
79
|
+
if (requestOptions.access === "public") {
|
80
|
+
requestOptions.params.org = true;
|
81
|
+
requestOptions.params.everyone = true;
|
82
|
+
}
|
83
|
+
return request(url, requestOptions);
|
84
|
+
}
|