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,56 @@
|
|
1
|
+
/* Copyright (c) 2017-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 { IUserGroupOptions } from "./helpers";
|
8
|
+
|
9
|
+
/**
|
10
|
+
* ```js
|
11
|
+
* import { protectGroup } from '@esri/arcgis-rest-portal';
|
12
|
+
* //
|
13
|
+
* protectGroup({
|
14
|
+
* id: groupId,
|
15
|
+
* authentication
|
16
|
+
* })
|
17
|
+
* .then(response)
|
18
|
+
* ```
|
19
|
+
* Protect a group to avoid accidental deletion. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/protect-group.htm) for more information.
|
20
|
+
*
|
21
|
+
* @param requestOptions - Options for the request
|
22
|
+
* @returns A Promise that will resolve with the success/failure status of the request
|
23
|
+
*/
|
24
|
+
export function protectGroup(
|
25
|
+
requestOptions: IUserGroupOptions
|
26
|
+
): Promise<{ success: boolean }> {
|
27
|
+
const url = `${getPortalUrl(requestOptions)}/community/groups/${
|
28
|
+
requestOptions.id
|
29
|
+
}/protect`;
|
30
|
+
|
31
|
+
return request(url, requestOptions);
|
32
|
+
}
|
33
|
+
|
34
|
+
/**
|
35
|
+
* ```js
|
36
|
+
* import { unprotectGroup } from '@esri/arcgis-rest-portal';
|
37
|
+
* //
|
38
|
+
* unprotectGroup({
|
39
|
+
* id: groupId,
|
40
|
+
* authentication
|
41
|
+
* })
|
42
|
+
* .then(response)
|
43
|
+
* ```
|
44
|
+
* Unprotect a Group. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/unprotect-group.htm) for more information.
|
45
|
+
* @param requestOptions - Options for the request
|
46
|
+
* @returns A Promise that will resolve with the success/failure status of the request
|
47
|
+
*/
|
48
|
+
export function unprotectGroup(
|
49
|
+
requestOptions: IUserGroupOptions
|
50
|
+
): Promise<{ success: boolean }> {
|
51
|
+
const url = `${getPortalUrl(requestOptions)}/community/groups/${
|
52
|
+
requestOptions.id
|
53
|
+
}/unprotect`;
|
54
|
+
|
55
|
+
return request(url, requestOptions);
|
56
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
/* Copyright (c) 2017-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 { IUserGroupOptions } from "./helpers";
|
8
|
+
|
9
|
+
/**
|
10
|
+
* ```js
|
11
|
+
* import { removeGroup } from '@esri/arcgis-rest-portal';
|
12
|
+
* //
|
13
|
+
* removeGroup({
|
14
|
+
* id: groupId,
|
15
|
+
* authentication
|
16
|
+
* })
|
17
|
+
* .then(response)
|
18
|
+
* ```
|
19
|
+
* Delete a group. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/delete-group.htm) for more information.
|
20
|
+
*
|
21
|
+
* @param requestOptions - Options for the request
|
22
|
+
* @returns A Promise that will resolve with the success/failure status of the request
|
23
|
+
*/
|
24
|
+
export function removeGroup(requestOptions: IUserGroupOptions): Promise<any> {
|
25
|
+
const url = `${getPortalUrl(requestOptions)}/community/groups/${
|
26
|
+
requestOptions.id
|
27
|
+
}/delete`;
|
28
|
+
const options: IUserGroupOptions = {
|
29
|
+
...requestOptions
|
30
|
+
};
|
31
|
+
return request(url, options);
|
32
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
/* Copyright (c) 2018-2019 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { IGroup } 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 { searchGroups } from "@esri/arcgis-rest-portal";
|
12
|
+
* //
|
13
|
+
* searchGroups('water')
|
14
|
+
* .then(response) // response.total => 355
|
15
|
+
* ```
|
16
|
+
* Search a portal for groups. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/group-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 searchGroups(
|
22
|
+
search: string | ISearchOptions | SearchQueryBuilder
|
23
|
+
): Promise<ISearchResult<IGroup>> {
|
24
|
+
return genericSearch<IGroup>(search, "group");
|
25
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
/* Copyright (c) 2017-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
|
+
import { getPortalUrl } from "../util/get-portal-url";
|
7
|
+
|
8
|
+
export interface IUpdateGroupOptions extends IRequestOptions {
|
9
|
+
group: IItemUpdate;
|
10
|
+
}
|
11
|
+
|
12
|
+
/**
|
13
|
+
* ```js
|
14
|
+
* import { updateGroup } from '@esri/arcgis-rest-portal';
|
15
|
+
* //
|
16
|
+
* updateGroup({
|
17
|
+
* group: { id: "fgr344", title: "new" }
|
18
|
+
* })
|
19
|
+
* .then(response)
|
20
|
+
* ```
|
21
|
+
* Update the properties of a group. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/update-group.htm) for more information.
|
22
|
+
*
|
23
|
+
* @param requestOptions - Options for the request, including the group
|
24
|
+
* @returns A Promise that will resolve with the success/failure status of the request
|
25
|
+
*/
|
26
|
+
export function updateGroup(
|
27
|
+
requestOptions: IUpdateGroupOptions
|
28
|
+
): Promise<{ success: boolean; groupId: string }> {
|
29
|
+
const url = `${getPortalUrl(requestOptions)}/community/groups/${
|
30
|
+
requestOptions.group.id
|
31
|
+
}/update`;
|
32
|
+
|
33
|
+
requestOptions.params = {
|
34
|
+
...requestOptions.params,
|
35
|
+
...requestOptions.group
|
36
|
+
};
|
37
|
+
|
38
|
+
return request(url, requestOptions);
|
39
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
/* Copyright (c) 2018-2019 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
export * from "./items/add";
|
5
|
+
export * from "./items/create";
|
6
|
+
export * from "./items/get";
|
7
|
+
export * from "./items/protect";
|
8
|
+
export * from "./items/remove";
|
9
|
+
export * from "./items/search";
|
10
|
+
export * from "./items/update";
|
11
|
+
export * from "./items/helpers";
|
12
|
+
|
13
|
+
export * from "./groups/create";
|
14
|
+
export * from "./groups/get";
|
15
|
+
export * from "./groups/helpers";
|
16
|
+
export * from "./groups/notification";
|
17
|
+
export * from "./groups/protect";
|
18
|
+
export * from "./groups/remove";
|
19
|
+
export * from "./groups/search";
|
20
|
+
export * from "./groups/update";
|
21
|
+
export * from "./groups/join";
|
22
|
+
|
23
|
+
export * from "./users/get-user";
|
24
|
+
export * from "./users/get-user-url";
|
25
|
+
export * from "./users/invitation";
|
26
|
+
export * from "./users/notification";
|
27
|
+
export * from "./users/update";
|
28
|
+
|
29
|
+
export * from "./sharing/access";
|
30
|
+
export * from "./sharing/group-sharing";
|
31
|
+
export * from "./sharing/helpers";
|
32
|
+
|
33
|
+
export * from "./util/get-portal";
|
34
|
+
export * from "./util/get-portal-url";
|
35
|
+
export * from "./util/search";
|
36
|
+
export * from "./util/SearchQueryBuilder";
|
37
|
+
// we dont export 'generic-search' because its an internal utility method
|
38
|
+
// export * from "./util/generic-search"; because its an internal utility method
|
39
|
+
export {
|
40
|
+
IPagingParams,
|
41
|
+
IUser,
|
42
|
+
IItemAdd,
|
43
|
+
IItemUpdate,
|
44
|
+
IItem,
|
45
|
+
IGroupAdd,
|
46
|
+
IGroup,
|
47
|
+
GroupMembership
|
48
|
+
} from "@esri/arcgis-rest-types";
|
@@ -0,0 +1,137 @@
|
|
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
|
+
IUpdateItemResponse,
|
11
|
+
IItemResourceResponse,
|
12
|
+
determineOwner,
|
13
|
+
IManageItemRelationshipOptions
|
14
|
+
} from "./helpers";
|
15
|
+
import { updateItem, IUpdateItemOptions } from "./update";
|
16
|
+
|
17
|
+
export interface IAddItemDataOptions extends IUserItemOptions {
|
18
|
+
/**
|
19
|
+
* Object to store
|
20
|
+
*/
|
21
|
+
data: any;
|
22
|
+
}
|
23
|
+
|
24
|
+
/**
|
25
|
+
* ```js
|
26
|
+
* import { addItemData } from "@esri/arcgis-rest-portal";
|
27
|
+
* //
|
28
|
+
* addItemData({
|
29
|
+
* id: '3ef',
|
30
|
+
* data: file,
|
31
|
+
* authentication
|
32
|
+
* })
|
33
|
+
* .then(response)
|
34
|
+
* ```
|
35
|
+
* Send a file or blob to an item to be stored as the `/data` resource. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/update-item.htm) for more information.
|
36
|
+
*
|
37
|
+
* @param requestOptions - Options for the request
|
38
|
+
* @returns A Promise that will resolve with an object reporting
|
39
|
+
* success/failure and echoing the item id.
|
40
|
+
*/
|
41
|
+
export function addItemData(
|
42
|
+
requestOptions: IAddItemDataOptions
|
43
|
+
): Promise<IUpdateItemResponse> {
|
44
|
+
const owner = determineOwner(requestOptions);
|
45
|
+
const options: any = {
|
46
|
+
item: {
|
47
|
+
id: requestOptions.id,
|
48
|
+
data: requestOptions.data
|
49
|
+
},
|
50
|
+
...requestOptions
|
51
|
+
};
|
52
|
+
|
53
|
+
delete options.id;
|
54
|
+
delete options.data;
|
55
|
+
|
56
|
+
return updateItem(options as IUpdateItemOptions);
|
57
|
+
}
|
58
|
+
|
59
|
+
/**
|
60
|
+
* ```js
|
61
|
+
* import { addItemRelationship } from "@esri/arcgis-rest-portal";
|
62
|
+
* //
|
63
|
+
* addItemRelationship({
|
64
|
+
* originItemId: '3ef',
|
65
|
+
* destinationItemId: 'ae7',
|
66
|
+
* relationshipType: 'Service2Layer',
|
67
|
+
* authentication
|
68
|
+
* })
|
69
|
+
* .then(response)
|
70
|
+
* ```
|
71
|
+
* Add a relationship between two items. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/add-relationship.htm) for more information.
|
72
|
+
*
|
73
|
+
* @param requestOptions - Options for the request
|
74
|
+
* @returns A Promise to add item resources.
|
75
|
+
*/
|
76
|
+
export function addItemRelationship(
|
77
|
+
requestOptions: IManageItemRelationshipOptions
|
78
|
+
): Promise<{ success: boolean }> {
|
79
|
+
const owner = determineOwner(requestOptions);
|
80
|
+
const url = `${getPortalUrl(
|
81
|
+
requestOptions
|
82
|
+
)}/content/users/${owner}/addRelationship`;
|
83
|
+
|
84
|
+
const options = appendCustomParams<IManageItemRelationshipOptions>(
|
85
|
+
requestOptions,
|
86
|
+
["originItemId", "destinationItemId", "relationshipType"],
|
87
|
+
{ params: { ...requestOptions.params } }
|
88
|
+
);
|
89
|
+
|
90
|
+
return request(url, options);
|
91
|
+
}
|
92
|
+
|
93
|
+
/**
|
94
|
+
* ```js
|
95
|
+
* import { addItemResource } from "@esri/arcgis-rest-portal";
|
96
|
+
*
|
97
|
+
* // Add a file resource
|
98
|
+
* addItemResource({
|
99
|
+
* id: '3ef',
|
100
|
+
* resource: file,
|
101
|
+
* name: 'bigkahuna.jpg',
|
102
|
+
* authentication
|
103
|
+
* })
|
104
|
+
* .then(response)
|
105
|
+
*
|
106
|
+
* // Add a text resource
|
107
|
+
* addItemResource({
|
108
|
+
* id: '4fg',
|
109
|
+
* content: "Text content",
|
110
|
+
* name: 'bigkahuna.txt',
|
111
|
+
* authentication
|
112
|
+
* })
|
113
|
+
* .then(response)
|
114
|
+
* ```
|
115
|
+
* Add a resource associated with an item. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/add-resources.htm) for more information.
|
116
|
+
*
|
117
|
+
* @param requestOptions - Options for the request
|
118
|
+
* @returns A Promise to add item resources.
|
119
|
+
*/
|
120
|
+
export function addItemResource(
|
121
|
+
requestOptions: IItemResourceOptions
|
122
|
+
): Promise<IItemResourceResponse> {
|
123
|
+
const owner = determineOwner(requestOptions);
|
124
|
+
const url = `${getPortalUrl(requestOptions)}/content/users/${owner}/items/${
|
125
|
+
requestOptions.id
|
126
|
+
}/addResources`;
|
127
|
+
|
128
|
+
requestOptions.params = {
|
129
|
+
file: requestOptions.resource,
|
130
|
+
fileName: requestOptions.name,
|
131
|
+
text: requestOptions.content,
|
132
|
+
access: requestOptions.private ? "private" : "inherit",
|
133
|
+
...requestOptions.params
|
134
|
+
};
|
135
|
+
|
136
|
+
return request(url, requestOptions);
|
137
|
+
}
|
@@ -0,0 +1,128 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { request } from "@esri/arcgis-rest-request";
|
5
|
+
import { IItemAdd } from "@esri/arcgis-rest-types";
|
6
|
+
|
7
|
+
import { getPortalUrl } from "../util/get-portal-url";
|
8
|
+
import {
|
9
|
+
IAddFolderResponse,
|
10
|
+
IUpdateItemResponse,
|
11
|
+
ICreateUpdateItemOptions,
|
12
|
+
serializeItem,
|
13
|
+
determineOwner
|
14
|
+
} from "./helpers";
|
15
|
+
|
16
|
+
export interface ICreateFolderOptions extends ICreateUpdateItemOptions {
|
17
|
+
/**
|
18
|
+
* Name of the folder to create.
|
19
|
+
*/
|
20
|
+
title: string;
|
21
|
+
}
|
22
|
+
|
23
|
+
export interface ICreateItemOptions extends ICreateUpdateItemOptions {
|
24
|
+
item: IItemAdd;
|
25
|
+
}
|
26
|
+
|
27
|
+
export interface ICreateItemResponse extends IUpdateItemResponse {
|
28
|
+
folder: string;
|
29
|
+
}
|
30
|
+
|
31
|
+
/**
|
32
|
+
* ```js
|
33
|
+
* import { createFolder } from "@esri/arcgis-rest-portal";
|
34
|
+
* //
|
35
|
+
* createFolder({
|
36
|
+
* title: 'Map Collection',
|
37
|
+
* authentication: userSession
|
38
|
+
* })
|
39
|
+
* .then(response)
|
40
|
+
* ```
|
41
|
+
* Create a folder. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/create-folder.htm) for more information.
|
42
|
+
*
|
43
|
+
* @param requestOptions - Options for the request
|
44
|
+
* @returns A Promise that resolves with folder details once the folder has been created
|
45
|
+
*/
|
46
|
+
export function createFolder(
|
47
|
+
requestOptions: ICreateFolderOptions
|
48
|
+
): Promise<IAddFolderResponse> {
|
49
|
+
const owner = determineOwner(requestOptions);
|
50
|
+
|
51
|
+
const baseUrl = `${getPortalUrl(requestOptions)}/content/users/${owner}`;
|
52
|
+
const url = `${baseUrl}/createFolder`;
|
53
|
+
|
54
|
+
requestOptions.params = {
|
55
|
+
title: requestOptions.title,
|
56
|
+
...requestOptions.params
|
57
|
+
};
|
58
|
+
|
59
|
+
return request(url, requestOptions);
|
60
|
+
}
|
61
|
+
|
62
|
+
/**
|
63
|
+
* ```js
|
64
|
+
* import { createItemInFolder } from "@esri/arcgis-rest-portal";
|
65
|
+
* //
|
66
|
+
* createItem({
|
67
|
+
* item: {
|
68
|
+
* title: "The Amazing Voyage",
|
69
|
+
* type: "Web Map",
|
70
|
+
* data: {}
|
71
|
+
* },
|
72
|
+
* folderId: 'fe8',
|
73
|
+
* authentication
|
74
|
+
* })
|
75
|
+
* ```
|
76
|
+
* Create an item in a folder. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/add-item.htm) for more information.
|
77
|
+
*
|
78
|
+
* @param requestOptions = Options for the request
|
79
|
+
*/
|
80
|
+
export function createItemInFolder(
|
81
|
+
requestOptions: ICreateItemOptions
|
82
|
+
): Promise<ICreateItemResponse> {
|
83
|
+
const owner = determineOwner(requestOptions);
|
84
|
+
|
85
|
+
const baseUrl = `${getPortalUrl(requestOptions)}/content/users/${owner}`;
|
86
|
+
let url = `${baseUrl}/addItem`;
|
87
|
+
|
88
|
+
if (requestOptions.folderId) {
|
89
|
+
url = `${baseUrl}/${requestOptions.folderId}/addItem`;
|
90
|
+
}
|
91
|
+
|
92
|
+
// serialize the item into something Portal will accept
|
93
|
+
requestOptions.params = {
|
94
|
+
...requestOptions.params,
|
95
|
+
...serializeItem(requestOptions.item)
|
96
|
+
};
|
97
|
+
|
98
|
+
return request(url, requestOptions);
|
99
|
+
}
|
100
|
+
|
101
|
+
/**
|
102
|
+
* ```js
|
103
|
+
* import { createItem } from "@esri/arcgis-rest-portal";
|
104
|
+
* //
|
105
|
+
* createItem({
|
106
|
+
* item: {
|
107
|
+
* title: "The Amazing Voyage",
|
108
|
+
* type: "Web Map",
|
109
|
+
* data: {}
|
110
|
+
* },
|
111
|
+
* authentication
|
112
|
+
* })
|
113
|
+
* ```
|
114
|
+
* Create an Item in the user's root folder. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/add-item.htm) for more information.
|
115
|
+
*
|
116
|
+
* @param requestOptions - Options for the request
|
117
|
+
* @returns A Promise that creates an item.
|
118
|
+
*/
|
119
|
+
export function createItem(
|
120
|
+
requestOptions: ICreateItemOptions
|
121
|
+
): Promise<ICreateItemResponse> {
|
122
|
+
// delegate to createItemInFolder placing in the root of the filestore
|
123
|
+
const options = {
|
124
|
+
folderId: null,
|
125
|
+
...requestOptions
|
126
|
+
} as ICreateItemOptions;
|
127
|
+
return createItemInFolder(options);
|
128
|
+
}
|
@@ -0,0 +1,177 @@
|
|
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 { IItem, IGroup } from "@esri/arcgis-rest-types";
|
6
|
+
|
7
|
+
import { getPortalUrl } from "../util/get-portal-url";
|
8
|
+
import { IItemDataOptions, IItemRelationshipOptions } from "./helpers";
|
9
|
+
|
10
|
+
/**
|
11
|
+
* ```
|
12
|
+
* import { getItem } from "@esri/arcgis-rest-portal";
|
13
|
+
* //
|
14
|
+
* getItem("ae7")
|
15
|
+
* .then(response);
|
16
|
+
* // or
|
17
|
+
* getItem("ae7", { authentication })
|
18
|
+
* .then(response)
|
19
|
+
* ```
|
20
|
+
* Get an item by id. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/item.htm) for more information.
|
21
|
+
*
|
22
|
+
* @param id - Item Id
|
23
|
+
* @param requestOptions - Options for the request
|
24
|
+
* @returns A Promise that will resolve with the data from the response.
|
25
|
+
*/
|
26
|
+
export function getItem(
|
27
|
+
id: string,
|
28
|
+
requestOptions?: IRequestOptions
|
29
|
+
): Promise<IItem> {
|
30
|
+
const url = `${getPortalUrl(requestOptions)}/content/items/${id}`;
|
31
|
+
|
32
|
+
// default to a GET request
|
33
|
+
const options: IRequestOptions = {
|
34
|
+
...{ httpMethod: "GET" },
|
35
|
+
...requestOptions
|
36
|
+
};
|
37
|
+
return request(url, options);
|
38
|
+
}
|
39
|
+
|
40
|
+
/**
|
41
|
+
* ```
|
42
|
+
* import { getItemData } from "@esri/arcgis-rest-portal";
|
43
|
+
* //
|
44
|
+
* getItemData("ae7")
|
45
|
+
* .then(response)
|
46
|
+
* // or
|
47
|
+
* getItemData("ae7", { authentication })
|
48
|
+
* .then(response)
|
49
|
+
* ```
|
50
|
+
* Get the /data for an item. If no data exists, returns `undefined`. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/item-data.htm) for more information.
|
51
|
+
* @param id - Item Id
|
52
|
+
* @param requestOptions - Options for the request
|
53
|
+
* @returns A Promise that will resolve with the json data for the item.
|
54
|
+
*/
|
55
|
+
export function getItemData(
|
56
|
+
id: string,
|
57
|
+
requestOptions?: IItemDataOptions
|
58
|
+
): Promise<any> {
|
59
|
+
const url = `${getPortalUrl(requestOptions)}/content/items/${id}/data`;
|
60
|
+
// default to a GET request
|
61
|
+
const options: IItemDataOptions = {
|
62
|
+
...{ httpMethod: "GET", params: {} },
|
63
|
+
...requestOptions
|
64
|
+
};
|
65
|
+
|
66
|
+
if (options.file) {
|
67
|
+
options.params.f = null;
|
68
|
+
}
|
69
|
+
|
70
|
+
return request(url, options).catch(err => {
|
71
|
+
/* if the item doesn't include data, the response will be empty
|
72
|
+
and the internal call to response.json() will fail */
|
73
|
+
const emptyResponseErr = RegExp(
|
74
|
+
/Unexpected end of (JSON input|data at line 1 column 1)/i
|
75
|
+
);
|
76
|
+
/* istanbul ignore else */
|
77
|
+
if (emptyResponseErr.test(err.message)) {
|
78
|
+
return;
|
79
|
+
} else throw err;
|
80
|
+
});
|
81
|
+
}
|
82
|
+
|
83
|
+
export interface IGetRelatedItemsResponse {
|
84
|
+
total: number;
|
85
|
+
relatedItems: IItem[];
|
86
|
+
}
|
87
|
+
|
88
|
+
/**
|
89
|
+
* ```
|
90
|
+
* import { getRelatedItems } from "@esri/arcgis-rest-portal";
|
91
|
+
* //
|
92
|
+
* getRelatedItems({
|
93
|
+
* id: "ae7",
|
94
|
+
* relationshipType: "Service2Layer" // or several ["Service2Layer", "Map2Area"]
|
95
|
+
* })
|
96
|
+
* .then(response)
|
97
|
+
* ```
|
98
|
+
* Get the related items. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/related-items.htm) for more information.
|
99
|
+
*
|
100
|
+
* @param requestOptions - Options for the request
|
101
|
+
* @returns A Promise to get some item resources.
|
102
|
+
*/
|
103
|
+
export function getRelatedItems(
|
104
|
+
requestOptions: IItemRelationshipOptions
|
105
|
+
): Promise<IGetRelatedItemsResponse> {
|
106
|
+
const url = `${getPortalUrl(requestOptions)}/content/items/${
|
107
|
+
requestOptions.id
|
108
|
+
}/relatedItems`;
|
109
|
+
|
110
|
+
const options: IItemRelationshipOptions = {
|
111
|
+
httpMethod: "GET",
|
112
|
+
params: {
|
113
|
+
direction: requestOptions.direction
|
114
|
+
},
|
115
|
+
...requestOptions
|
116
|
+
};
|
117
|
+
|
118
|
+
if (typeof requestOptions.relationshipType === "string") {
|
119
|
+
options.params.relationshipType = requestOptions.relationshipType;
|
120
|
+
} else {
|
121
|
+
options.params.relationshipTypes = requestOptions.relationshipType;
|
122
|
+
}
|
123
|
+
|
124
|
+
delete options.direction;
|
125
|
+
delete options.relationshipType;
|
126
|
+
|
127
|
+
return request(url, options);
|
128
|
+
}
|
129
|
+
|
130
|
+
/**
|
131
|
+
* Get the resources associated with an item
|
132
|
+
*
|
133
|
+
* @param requestOptions - Options for the request
|
134
|
+
* @returns A Promise to get some item resources.
|
135
|
+
*/
|
136
|
+
export function getItemResources(
|
137
|
+
id: string,
|
138
|
+
requestOptions?: IRequestOptions
|
139
|
+
): Promise<any> {
|
140
|
+
const url = `${getPortalUrl(requestOptions)}/content/items/${id}/resources`;
|
141
|
+
|
142
|
+
// mix in user supplied params
|
143
|
+
requestOptions.params = {
|
144
|
+
...requestOptions.params,
|
145
|
+
num: 1000
|
146
|
+
};
|
147
|
+
|
148
|
+
return request(url, requestOptions);
|
149
|
+
}
|
150
|
+
|
151
|
+
export interface IGetItemGroupsResponse {
|
152
|
+
admin?: IGroup[];
|
153
|
+
member?: IGroup[];
|
154
|
+
other?: IGroup[];
|
155
|
+
}
|
156
|
+
|
157
|
+
/**
|
158
|
+
* ```js
|
159
|
+
* import { getItemGroups } from "@esri/arcgis-rest-portal";
|
160
|
+
* //
|
161
|
+
* getItemGroups("30e5fe3149c34df1ba922e6f5bbf808f")
|
162
|
+
* .then(response)
|
163
|
+
* ```
|
164
|
+
* Lists the groups of which the item is a part, only showing the groups that the calling user can access. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/groups.htm) for more information.
|
165
|
+
*
|
166
|
+
* @param id - The Id of the item to query group association for.
|
167
|
+
* @param requestOptions - Options for the request
|
168
|
+
* @returns A Promise to get some item groups.
|
169
|
+
*/
|
170
|
+
export function getItemGroups(
|
171
|
+
id: string,
|
172
|
+
requestOptions?: IRequestOptions
|
173
|
+
): Promise<IGetItemGroupsResponse> {
|
174
|
+
const url = `${getPortalUrl(requestOptions)}/content/items/${id}/groups`;
|
175
|
+
|
176
|
+
return request(url, requestOptions);
|
177
|
+
}
|