delectusnon 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (276) hide show
  1. package/.prettierignore +2 -0
  2. package/.travis.yml +33 -0
  3. package/.vscode/launch.json +24 -0
  4. package/.vscode/settings.json +3 -0
  5. package/demos/ago-node-cli/README.md +29 -0
  6. package/demos/ago-node-cli/ago.js +32 -0
  7. package/demos/ago-node-cli/index.js +11 -0
  8. package/demos/ago-node-cli/lib/item-export-command.js +48 -0
  9. package/demos/ago-node-cli/lib/item-search-command.js +35 -0
  10. package/demos/ago-node-cli/package-lock.json +172 -0
  11. package/demos/ago-node-cli/package.json +30 -0
  12. package/demos/attachments/README.md +5 -0
  13. package/demos/attachments/index.html +164 -0
  14. package/demos/attachments/package-lock.json +182 -0
  15. package/demos/attachments/package.json +18 -0
  16. package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
  17. package/demos/batch-geocoder-node/README.md +15 -0
  18. package/demos/batch-geocoder-node/batch-geocode.js +118 -0
  19. package/demos/batch-geocoder-node/config-template.js +18 -0
  20. package/demos/batch-geocoder-node/package-lock.json +116 -0
  21. package/demos/batch-geocoder-node/package.json +39 -0
  22. package/demos/express/README.md +10 -0
  23. package/demos/express/config.json.template +3 -0
  24. package/demos/express/package-lock.json +473 -0
  25. package/demos/express/package.json +18 -0
  26. package/demos/express/server.js +28 -0
  27. package/demos/feature-service-browser/README.md +6 -0
  28. package/demos/feature-service-browser/index.html +122 -0
  29. package/demos/feature-service-browser/package-lock.json +182 -0
  30. package/demos/feature-service-browser/package.json +18 -0
  31. package/demos/geocoder-browser/README.md +10 -0
  32. package/demos/geocoder-browser/config.js.template +1 -0
  33. package/demos/geocoder-browser/index.html +131 -0
  34. package/demos/geocoder-browser/package-lock.json +182 -0
  35. package/demos/geocoder-browser/package.json +19 -0
  36. package/demos/geocoder-browser/post-sign-in.html +25 -0
  37. package/demos/jsapi-integration/README.md +8 -0
  38. package/demos/jsapi-integration/config.js +6 -0
  39. package/demos/jsapi-integration/index.html +79 -0
  40. package/demos/jsapi-integration/package-lock.json +184 -0
  41. package/demos/jsapi-integration/package.json +19 -0
  42. package/demos/oauth2-browser/README.md +12 -0
  43. package/demos/oauth2-browser/authenticate.html +32 -0
  44. package/demos/oauth2-browser/config.js.template +6 -0
  45. package/demos/oauth2-browser/index.html +202 -0
  46. package/demos/oauth2-browser/logo.svg +4 -0
  47. package/demos/oauth2-browser/package-lock.json +163 -0
  48. package/demos/oauth2-browser/package.json +18 -0
  49. package/demos/oauth2-browser/style.css +36 -0
  50. package/demos/oauth2-browser-retry/README.md +25 -0
  51. package/demos/oauth2-browser-retry/authenticate.html +21 -0
  52. package/demos/oauth2-browser-retry/index.html +116 -0
  53. package/demos/oauth2-browser-retry/logo.svg +4 -0
  54. package/demos/vue/.env.example +11 -0
  55. package/demos/vue/.eslintrc.js +17 -0
  56. package/demos/vue/.postcssrc.js +5 -0
  57. package/demos/vue/README.md +17 -0
  58. package/demos/vue/babel.config.js +3 -0
  59. package/demos/vue/package-lock.json +11323 -0
  60. package/demos/vue/package.json +33 -0
  61. package/demos/vue/public/favicon.ico +0 -0
  62. package/demos/vue/public/index.html +24 -0
  63. package/demos/vue/src/assets/logo.svg +29 -0
  64. package/demos/vue/src/components/App.vue +308 -0
  65. package/demos/vue/src/components/Authenticate.vue +65 -0
  66. package/demos/vue/src/components/Loader.vue +230 -0
  67. package/demos/vue/src/main.js +92 -0
  68. package/docs/FAQ.md +28 -0
  69. package/docs/HISTORY.md +62 -0
  70. package/docs/acetate.config.js +223 -0
  71. package/docs/build-typedoc.js +301 -0
  72. package/docs/src/_layout.html +82 -0
  73. package/docs/src/api/_declaration.html +496 -0
  74. package/docs/src/api/_layout.html +127 -0
  75. package/docs/src/api/_package.html +13 -0
  76. package/docs/src/api/index.html +23 -0
  77. package/docs/src/guides/_layout.html +24 -0
  78. package/docs/src/guides/amd-requirejs-dojo.md +40 -0
  79. package/docs/src/guides/babel-and-rollup.md +30 -0
  80. package/docs/src/guides/babel-and-webpack.md +30 -0
  81. package/docs/src/guides/browser-authentication.md +31 -0
  82. package/docs/src/guides/browserify.md +9 -0
  83. package/docs/src/guides/cli-authentication.md +9 -0
  84. package/docs/src/guides/client-server-authentication.md +9 -0
  85. package/docs/src/guides/from-a-cdn.md +36 -0
  86. package/docs/src/guides/index.md +52 -0
  87. package/docs/src/guides/node.md +70 -0
  88. package/docs/src/guides/package-overview.md +8 -0
  89. package/docs/src/guides/server-authentication.md +9 -0
  90. package/docs/src/guides/typescript-and-webpack.md +9 -0
  91. package/docs/src/img/icons.png +0 -0
  92. package/docs/src/img/icons@2x.png +0 -0
  93. package/docs/src/index.html +12 -0
  94. package/docs/src/js/api-search.js +112 -0
  95. package/docs/src/js/nav-toggle.js +41 -0
  96. package/docs/src/sass/_highlight.scss +96 -0
  97. package/docs/src/sass/_icons.scss +157 -0
  98. package/docs/src/sass/style.scss +169 -0
  99. package/jasmine.json +7 -0
  100. package/karma.conf.js +100 -0
  101. package/lerna.json +8 -0
  102. package/notes/README.md +88 -0
  103. package/package.json +88 -0
  104. package/packages/arcgis-rest-auth/README.md +64 -0
  105. package/packages/arcgis-rest-auth/package-lock.json +11 -0
  106. package/packages/arcgis-rest-auth/package.json +51 -0
  107. package/packages/arcgis-rest-auth/src/ApplicationSession.ts +109 -0
  108. package/packages/arcgis-rest-auth/src/UserSession.ts +873 -0
  109. package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -0
  110. package/packages/arcgis-rest-auth/src/fetch-token.ts +52 -0
  111. package/packages/arcgis-rest-auth/src/generate-token.ts +39 -0
  112. package/packages/arcgis-rest-auth/src/index.ts +8 -0
  113. package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
  114. package/packages/arcgis-rest-auth/test/UserSession.test.ts +995 -0
  115. package/packages/arcgis-rest-auth/test/fetchToken.test.ts +112 -0
  116. package/packages/arcgis-rest-auth/test/generateToken.test.ts +130 -0
  117. package/packages/arcgis-rest-auth/test/utils.ts +14 -0
  118. package/packages/arcgis-rest-auth/tsconfig.json +6 -0
  119. package/packages/arcgis-rest-common-types/README.md +61 -0
  120. package/packages/arcgis-rest-common-types/package.json +38 -0
  121. package/packages/arcgis-rest-common-types/src/group.ts +54 -0
  122. package/packages/arcgis-rest-common-types/src/index.ts +467 -0
  123. package/packages/arcgis-rest-common-types/src/item.ts +45 -0
  124. package/packages/arcgis-rest-common-types/src/webmap.ts +1232 -0
  125. package/packages/arcgis-rest-common-types/tsconfig.json +11 -0
  126. package/packages/arcgis-rest-feature-service/README.md +70 -0
  127. package/packages/arcgis-rest-feature-service/package-lock.json +11 -0
  128. package/packages/arcgis-rest-feature-service/package.json +50 -0
  129. package/packages/arcgis-rest-feature-service/src/add.ts +81 -0
  130. package/packages/arcgis-rest-feature-service/src/addAttachment.ts +65 -0
  131. package/packages/arcgis-rest-feature-service/src/delete.ts +85 -0
  132. package/packages/arcgis-rest-feature-service/src/deleteAttachments.ts +68 -0
  133. package/packages/arcgis-rest-feature-service/src/getAttachments.ts +64 -0
  134. package/packages/arcgis-rest-feature-service/src/helpers.ts +80 -0
  135. package/packages/arcgis-rest-feature-service/src/index.ts +12 -0
  136. package/packages/arcgis-rest-feature-service/src/query.ts +172 -0
  137. package/packages/arcgis-rest-feature-service/src/queryRelated.ts +91 -0
  138. package/packages/arcgis-rest-feature-service/src/update.ts +81 -0
  139. package/packages/arcgis-rest-feature-service/src/updateAttachment.ts +74 -0
  140. package/packages/arcgis-rest-feature-service/test/attachments.test.ts +203 -0
  141. package/packages/arcgis-rest-feature-service/test/features.test.ts +252 -0
  142. package/packages/arcgis-rest-feature-service/test/mocks/feature.ts +279 -0
  143. package/packages/arcgis-rest-feature-service/test/mocks/foo.txt +1 -0
  144. package/packages/arcgis-rest-feature-service/tsconfig.json +6 -0
  145. package/packages/arcgis-rest-feature-service-admin/README.md +66 -0
  146. package/packages/arcgis-rest-feature-service-admin/package-lock.json +11 -0
  147. package/packages/arcgis-rest-feature-service-admin/package.json +53 -0
  148. package/packages/arcgis-rest-feature-service-admin/src/addTo.ts +70 -0
  149. package/packages/arcgis-rest-feature-service-admin/src/create.ts +195 -0
  150. package/packages/arcgis-rest-feature-service-admin/src/index.ts +2 -0
  151. package/packages/arcgis-rest-feature-service-admin/test/addTo.test.ts +310 -0
  152. package/packages/arcgis-rest-feature-service-admin/test/create.test.ts +412 -0
  153. package/packages/arcgis-rest-feature-service-admin/test/mocks/move.ts +14 -0
  154. package/packages/arcgis-rest-feature-service-admin/test/mocks/service.ts +72 -0
  155. package/packages/arcgis-rest-feature-service-admin/tsconfig.json +6 -0
  156. package/packages/arcgis-rest-geocoder/README.md +79 -0
  157. package/packages/arcgis-rest-geocoder/package-lock.json +11 -0
  158. package/packages/arcgis-rest-geocoder/package.json +52 -0
  159. package/packages/arcgis-rest-geocoder/src/bulk.ts +102 -0
  160. package/packages/arcgis-rest-geocoder/src/geocode.ts +117 -0
  161. package/packages/arcgis-rest-geocoder/src/helpers.ts +79 -0
  162. package/packages/arcgis-rest-geocoder/src/index.ts +8 -0
  163. package/packages/arcgis-rest-geocoder/src/reverse.ts +84 -0
  164. package/packages/arcgis-rest-geocoder/src/suggest.ts +72 -0
  165. package/packages/arcgis-rest-geocoder/test/bulk.test.ts +113 -0
  166. package/packages/arcgis-rest-geocoder/test/geocode.test.ts +121 -0
  167. package/packages/arcgis-rest-geocoder/test/helpers.test.ts +113 -0
  168. package/packages/arcgis-rest-geocoder/test/mocks/responses.ts +591 -0
  169. package/packages/arcgis-rest-geocoder/test/reverse.test.ts +126 -0
  170. package/packages/arcgis-rest-geocoder/test/suggest.test.ts +77 -0
  171. package/packages/arcgis-rest-geocoder/tsconfig.json +6 -0
  172. package/packages/arcgis-rest-groups/README.md +64 -0
  173. package/packages/arcgis-rest-groups/package-lock.json +11 -0
  174. package/packages/arcgis-rest-groups/package.json +52 -0
  175. package/packages/arcgis-rest-groups/src/create.ts +34 -0
  176. package/packages/arcgis-rest-groups/src/get.ts +95 -0
  177. package/packages/arcgis-rest-groups/src/helpers.ts +26 -0
  178. package/packages/arcgis-rest-groups/src/index.ts +11 -0
  179. package/packages/arcgis-rest-groups/src/notification.ts +77 -0
  180. package/packages/arcgis-rest-groups/src/protect.ts +40 -0
  181. package/packages/arcgis-rest-groups/src/remove.ts +23 -0
  182. package/packages/arcgis-rest-groups/src/search.ts +64 -0
  183. package/packages/arcgis-rest-groups/src/update.ts +36 -0
  184. package/packages/arcgis-rest-groups/test/crud.test.ts +104 -0
  185. package/packages/arcgis-rest-groups/test/get.test.ts +101 -0
  186. package/packages/arcgis-rest-groups/test/mocks/responses.ts +141 -0
  187. package/packages/arcgis-rest-groups/test/notification.test.ts +102 -0
  188. package/packages/arcgis-rest-groups/test/protect.test.ts +64 -0
  189. package/packages/arcgis-rest-groups/test/search.test.ts +85 -0
  190. package/packages/arcgis-rest-groups/tsconfig.json +6 -0
  191. package/packages/arcgis-rest-items/README.md +66 -0
  192. package/packages/arcgis-rest-items/package-lock.json +11 -0
  193. package/packages/arcgis-rest-items/package.json +52 -0
  194. package/packages/arcgis-rest-items/src/add.ts +103 -0
  195. package/packages/arcgis-rest-items/src/create.ts +110 -0
  196. package/packages/arcgis-rest-items/src/get.ts +79 -0
  197. package/packages/arcgis-rest-items/src/helpers.ts +147 -0
  198. package/packages/arcgis-rest-items/src/index.ts +11 -0
  199. package/packages/arcgis-rest-items/src/protect.ts +38 -0
  200. package/packages/arcgis-rest-items/src/remove.ts +58 -0
  201. package/packages/arcgis-rest-items/src/search.ts +78 -0
  202. package/packages/arcgis-rest-items/src/update.ts +134 -0
  203. package/packages/arcgis-rest-items/test/add.test.ts +256 -0
  204. package/packages/arcgis-rest-items/test/create.test.ts +371 -0
  205. package/packages/arcgis-rest-items/test/get.test.ts +181 -0
  206. package/packages/arcgis-rest-items/test/mocks/foo.zip +0 -0
  207. package/packages/arcgis-rest-items/test/mocks/item.ts +33 -0
  208. package/packages/arcgis-rest-items/test/mocks/resources.ts +31 -0
  209. package/packages/arcgis-rest-items/test/mocks/search.ts +63 -0
  210. package/packages/arcgis-rest-items/test/protect.test.ts +122 -0
  211. package/packages/arcgis-rest-items/test/remove.test.ts +161 -0
  212. package/packages/arcgis-rest-items/test/search.test.ts +159 -0
  213. package/packages/arcgis-rest-items/test/update.test.ts +450 -0
  214. package/packages/arcgis-rest-items/tsconfig.json +6 -0
  215. package/packages/arcgis-rest-request/README.md +65 -0
  216. package/packages/arcgis-rest-request/package-lock.json +11 -0
  217. package/packages/arcgis-rest-request/package.json +42 -0
  218. package/packages/arcgis-rest-request/src/index.ts +13 -0
  219. package/packages/arcgis-rest-request/src/request.ts +293 -0
  220. package/packages/arcgis-rest-request/src/utils/ArcGISAuthError.ts +67 -0
  221. package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +76 -0
  222. package/packages/arcgis-rest-request/src/utils/ErrorTypes.ts +29 -0
  223. package/packages/arcgis-rest-request/src/utils/check-for-errors.ts +65 -0
  224. package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +34 -0
  225. package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +23 -0
  226. package/packages/arcgis-rest-request/src/utils/get-portal-url.ts +25 -0
  227. package/packages/arcgis-rest-request/src/utils/get-portal.ts +45 -0
  228. package/packages/arcgis-rest-request/src/utils/process-params.ts +99 -0
  229. package/packages/arcgis-rest-request/test/mocks/errors.ts +68 -0
  230. package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +13 -0
  231. package/packages/arcgis-rest-request/test/mocks/portal.ts +112 -0
  232. package/packages/arcgis-rest-request/test/mocks/sharing-rest-info.ts +41 -0
  233. package/packages/arcgis-rest-request/test/mocks/webmap.ts +41 -0
  234. package/packages/arcgis-rest-request/test/request.test.ts +299 -0
  235. package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +170 -0
  236. package/packages/arcgis-rest-request/test/utils/ArcGISRequestError.test.ts +51 -0
  237. package/packages/arcgis-rest-request/test/utils/check-for-errors.test.ts +111 -0
  238. package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
  239. package/packages/arcgis-rest-request/test/utils/get-portal-url.test.ts +37 -0
  240. package/packages/arcgis-rest-request/test/utils/portal.test.ts +97 -0
  241. package/packages/arcgis-rest-request/test/utils/process-params.test.ts +193 -0
  242. package/packages/arcgis-rest-request/tsconfig.json +6 -0
  243. package/packages/arcgis-rest-sharing/README.md +67 -0
  244. package/packages/arcgis-rest-sharing/package-lock.json +11 -0
  245. package/packages/arcgis-rest-sharing/package.json +57 -0
  246. package/packages/arcgis-rest-sharing/src/access.ts +85 -0
  247. package/packages/arcgis-rest-sharing/src/group-sharing.ts +211 -0
  248. package/packages/arcgis-rest-sharing/src/helpers.ts +82 -0
  249. package/packages/arcgis-rest-sharing/src/index.ts +5 -0
  250. package/packages/arcgis-rest-sharing/test/access.test.ts +154 -0
  251. package/packages/arcgis-rest-sharing/test/group-sharing.test.ts +566 -0
  252. package/packages/arcgis-rest-sharing/test/helpers.test.ts +55 -0
  253. package/packages/arcgis-rest-sharing/test/mocks/sharing.ts +18 -0
  254. package/packages/arcgis-rest-sharing/tsconfig.json +6 -0
  255. package/packages/arcgis-rest-users/README.md +71 -0
  256. package/packages/arcgis-rest-users/package-lock.json +11 -0
  257. package/packages/arcgis-rest-users/package.json +51 -0
  258. package/packages/arcgis-rest-users/src/get.ts +69 -0
  259. package/packages/arcgis-rest-users/src/index.ts +6 -0
  260. package/packages/arcgis-rest-users/src/invitation.ts +166 -0
  261. package/packages/arcgis-rest-users/src/notification.ts +73 -0
  262. package/packages/arcgis-rest-users/test/get.test.ts +99 -0
  263. package/packages/arcgis-rest-users/test/invitation.test.ts +169 -0
  264. package/packages/arcgis-rest-users/test/mocks/invitation.ts +70 -0
  265. package/packages/arcgis-rest-users/test/mocks/notification.ts +34 -0
  266. package/packages/arcgis-rest-users/test/mocks/user.ts +173 -0
  267. package/packages/arcgis-rest-users/test/notification.test.ts +83 -0
  268. package/packages/arcgis-rest-users/tsconfig.json +6 -0
  269. package/support/changelog.js +394 -0
  270. package/support/deploy-doc-site.js +16 -0
  271. package/support/publish.sh +43 -0
  272. package/support/test-helpers.js +8 -0
  273. package/tsconfig.json +69 -0
  274. package/tslint.json +15 -0
  275. package/umd-base-profile.js +82 -0
  276. package/umd-production-profile.js +13 -0
@@ -0,0 +1,126 @@
1
+ /* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import { reverseGeocode } from "../src/reverse";
5
+
6
+ import * as fetchMock from "fetch-mock";
7
+
8
+ import { ReverseGeocode } from "./mocks/responses";
9
+
10
+ describe("geocode", () => {
11
+ afterEach(fetchMock.restore);
12
+
13
+ it("should make a reverse geocoding request", done => {
14
+ fetchMock.once("*", ReverseGeocode);
15
+
16
+ reverseGeocode({ x: -118.409, y: 33.9425 })
17
+ .then(response => {
18
+ expect(fetchMock.called()).toEqual(true);
19
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
20
+ expect(url).toEqual(
21
+ "https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/reverseGeocode"
22
+ );
23
+ expect(options.method).toBe("POST");
24
+ expect(options.body).toContain("f=json");
25
+ expect(options.body).toContain(
26
+ `location=${encodeURIComponent('{"x":-118.409,"y":33.9425}')}`
27
+ );
28
+ expect(response).toEqual(ReverseGeocode); // introspect the entire response
29
+ done();
30
+ })
31
+ .catch(e => {
32
+ fail(e);
33
+ });
34
+ });
35
+
36
+ it("should make a reverse geocoding GET request and pass through a spatial reference", done => {
37
+ fetchMock.once("*", ReverseGeocode);
38
+
39
+ reverseGeocode(
40
+ { x: -118.409, y: 33.9425, spatialReference: { wkid: 4326 } },
41
+ { httpMethod: "GET" }
42
+ )
43
+ .then(response => {
44
+ expect(fetchMock.called()).toEqual(true);
45
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
46
+ expect(url).toEqual(
47
+ "https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/reverseGeocode?f=json&location=%7B%22x%22%3A-118.409%2C%22y%22%3A33.9425%2C%22spatialReference%22%3A%7B%22wkid%22%3A4326%7D%7D"
48
+ );
49
+ expect(options.method).toBe("GET");
50
+ expect(response).toEqual(ReverseGeocode); // this introspects the entire response
51
+ done();
52
+ })
53
+ .catch(e => {
54
+ fail(e);
55
+ });
56
+ });
57
+
58
+ it("should make a reverse geocoding request and translate lat/long JSON objects", done => {
59
+ fetchMock.once("*", ReverseGeocode);
60
+
61
+ reverseGeocode({ longitude: -118.409, latitude: 33.9425 })
62
+ .then(response => {
63
+ expect(fetchMock.called()).toEqual(true);
64
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
65
+ expect(url).toEqual(
66
+ "https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/reverseGeocode"
67
+ );
68
+ expect(options.method).toBe("POST");
69
+ expect(options.body).toContain("f=json");
70
+ expect(options.body).toContain(
71
+ `location=${encodeURIComponent("-118.409,33.9425")}`
72
+ );
73
+ expect(response).toEqual(ReverseGeocode); // this introspects the entire response
74
+ done();
75
+ })
76
+ .catch(e => {
77
+ fail(e);
78
+ });
79
+ });
80
+
81
+ it("should make a reverse geocoding request and translate lat/long JSON abbreviated objects", done => {
82
+ fetchMock.once("*", ReverseGeocode);
83
+
84
+ reverseGeocode({ lat: 33.9425, long: -118.409 })
85
+ .then(response => {
86
+ expect(fetchMock.called()).toEqual(true);
87
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
88
+ expect(url).toEqual(
89
+ "https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/reverseGeocode"
90
+ );
91
+ expect(options.method).toBe("POST");
92
+ expect(options.body).toContain("f=json");
93
+ expect(options.body).toContain(
94
+ `location=${encodeURIComponent("-118.409,33.9425")}`
95
+ );
96
+ expect(response).toEqual(ReverseGeocode); // this introspects the entire response
97
+ done();
98
+ })
99
+ .catch(e => {
100
+ fail(e);
101
+ });
102
+ });
103
+
104
+ it("should make a reverse geocoding request and translate a raw long,lat array", done => {
105
+ fetchMock.once("*", ReverseGeocode);
106
+
107
+ reverseGeocode([-118, 34])
108
+ .then(response => {
109
+ expect(fetchMock.called()).toEqual(true);
110
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
111
+ expect(url).toEqual(
112
+ "https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/reverseGeocode"
113
+ );
114
+ expect(options.method).toBe("POST");
115
+ expect(options.body).toContain("f=json");
116
+ expect(options.body).toContain(
117
+ `location=${encodeURIComponent("-118,34")}`
118
+ );
119
+ expect(response).toEqual(ReverseGeocode); // this introspects the entire response
120
+ done();
121
+ })
122
+ .catch(e => {
123
+ fail(e);
124
+ });
125
+ });
126
+ });
@@ -0,0 +1,77 @@
1
+ /* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import { suggest } from "../src/suggest";
5
+
6
+ import * as fetchMock from "fetch-mock";
7
+
8
+ import { Suggest } from "./mocks/responses";
9
+
10
+ describe("geocode", () => {
11
+ afterEach(fetchMock.restore);
12
+
13
+ it("should make a request for suggestions", done => {
14
+ fetchMock.once("*", Suggest);
15
+
16
+ suggest("LAX")
17
+ .then(response => {
18
+ expect(fetchMock.called()).toEqual(true);
19
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
20
+ expect(url).toEqual(
21
+ "https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/suggest"
22
+ );
23
+ expect(options.method).toBe("POST");
24
+ expect(options.body).toContain("f=json");
25
+ expect(options.body).toContain("text=LAX");
26
+ expect(response).toEqual(Suggest); // this introspects the entire response
27
+ done();
28
+ })
29
+ .catch(e => {
30
+ fail(e);
31
+ });
32
+ });
33
+
34
+ it("should make a request for suggestions with magic key", done => {
35
+ fetchMock.once("*", Suggest);
36
+
37
+ suggest("LAX", { magicKey: "foo" })
38
+ .then(response => {
39
+ expect(fetchMock.called()).toEqual(true);
40
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
41
+ expect(url).toEqual(
42
+ "https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/suggest"
43
+ );
44
+ expect(options.method).toBe("POST");
45
+ expect(options.body).toContain("f=json");
46
+ expect(options.body).toContain("text=LAX");
47
+ expect(options.body).toContain("magicKey=foo");
48
+ expect(response).toEqual(Suggest); // this introspects the entire response
49
+ done();
50
+ })
51
+ .catch(e => {
52
+ fail(e);
53
+ });
54
+ });
55
+
56
+ it("should make a request for suggestions with other parameters", done => {
57
+ fetchMock.once("*", Suggest);
58
+
59
+ suggest("LAX", { params: { category: "Address,Postal" } })
60
+ .then(response => {
61
+ expect(fetchMock.called()).toEqual(true);
62
+ const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
63
+ expect(url).toEqual(
64
+ "https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/suggest"
65
+ );
66
+ expect(options.method).toBe("POST");
67
+ expect(options.body).toContain("f=json");
68
+ expect(options.body).toContain("text=LAX");
69
+ expect(options.body).toContain("category=Address%2CPostal");
70
+ expect(response).toEqual(Suggest); // this introspects the entire response
71
+ done();
72
+ })
73
+ .catch(e => {
74
+ fail(e);
75
+ });
76
+ });
77
+ });
@@ -0,0 +1,6 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "include": [
4
+ "src/**/*.ts"
5
+ ]
6
+ }
@@ -0,0 +1,64 @@
1
+ [![npm version][npm-img]][npm-url]
2
+ [![build status][travis-img]][travis-url]
3
+ [![apache licensed](https://img.shields.io/badge/license-Apache-green.svg?style=flat-square)](https://raw.githubusercontent.com/Esri/arcgis-rest-js/master/LICENSE)
4
+
5
+ [npm-img]: https://img.shields.io/npm/v/@esri/arcgis-rest-groups.svg?style=flat-square
6
+ [npm-url]: https://www.npmjs.com/package/@esri/arcgis-rest-groups
7
+ [travis-img]: https://img.shields.io/travis/Esri/arcgis-rest-js/master.svg?style=flat-square
8
+ [travis-url]: https://travis-ci.org/Esri/arcgis-rest-js
9
+
10
+ # @esri/arcgis-rest-groups
11
+
12
+ > A module for working with groups in the ArcGIS REST API that runs in Node.js and modern browsers.
13
+
14
+ ### Example
15
+
16
+ ```bash
17
+ npm install @esri/arcgis-rest-request
18
+ npm install @esri/arcgis-rest-groups
19
+ ```
20
+
21
+ ```js
22
+ import { searchGroups } from '@esri/arcgis-rest-groups';
23
+
24
+ searchGroups({q:"water"})
25
+ .then(response => {
26
+ console.log(response.results.length) // 10
27
+ });
28
+ ```
29
+
30
+ ### [API Reference](https://esri.github.io/arcgis-rest-js/api/groups/)
31
+
32
+ ### Issues
33
+
34
+ If something isn't working the way you expected, please take a look at [previously logged issues](https://github.com/Esri/arcgis-rest-js/issues) first. Have you found a new bug? Want to request a new feature? We'd [**love**](https://github.com/Esri/arcgis-rest-js/issues/new) to hear from you.
35
+
36
+ If you're looking for help you can also post issues on [GIS Stackexchange](http://gis.stackexchange.com/questions/ask?tags=esri-oss).
37
+
38
+ ### Versioning
39
+
40
+ For transparency into the release cycle and in striving to maintain backward compatibility, @esri/arcgis-rest-js is maintained under Semantic Versioning guidelines and will adhere to these rules whenever possible.
41
+
42
+ For more information on SemVer, please visit <http://semver.org/>.
43
+
44
+ ### Contributing
45
+
46
+ Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](CONTRIBUTING.md).
47
+
48
+ ### License
49
+
50
+ Copyright &copy; 2017-2018 Esri
51
+
52
+ Licensed under the Apache License, Version 2.0 (the "License");
53
+ you may not use this file except in compliance with the License.
54
+ You may obtain a copy of the License at
55
+
56
+ > http://www.apache.org/licenses/LICENSE-2.0
57
+
58
+ Unless required by applicable law or agreed to in writing, software
59
+ distributed under the License is distributed on an "AS IS" BASIS,
60
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
61
+ See the License for the specific language governing permissions and
62
+ limitations under the License.
63
+
64
+ A copy of the license is available in the repository's [LICENSE](../../LICENSE) file.
@@ -0,0 +1,11 @@
1
+ {
2
+ "requires": true,
3
+ "lockfileVersion": 1,
4
+ "dependencies": {
5
+ "tslib": {
6
+ "version": "1.8.0",
7
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.8.0.tgz",
8
+ "integrity": "sha512-ymKWWZJST0/CkgduC2qkzjMOWr4bouhuURNXCn/inEX0L57BnRG6FhX76o7FOnsjHazCjfU2LKeSrlS2sIKQJg=="
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@esri/arcgis-rest-groups",
3
+ "version": "1.13.0",
4
+ "description": "Portal Group helpers for @esri/arcgis-rest-request",
5
+ "main": "dist/node/index.js",
6
+ "browser": "dist/umd/groups.umd.js",
7
+ "module": "dist/esm/index.js",
8
+ "js:next": "dist/esm/index.js",
9
+ "types": "dist/esm/index.d.ts",
10
+ "license": "Apache-2.0",
11
+ "files": [
12
+ "dist/**"
13
+ ],
14
+ "dependencies": {
15
+ "tslib": "^1.7.1"
16
+ },
17
+ "peerDependencies": {
18
+ "@esri/arcgis-rest-auth": "^1.11.0",
19
+ "@esri/arcgis-rest-common-types": "^1.11.0",
20
+ "@esri/arcgis-rest-request": "^1.11.0"
21
+ },
22
+ "devDependencies": {
23
+ "@esri/arcgis-rest-auth": "^1.13.0",
24
+ "@esri/arcgis-rest-common-types": "^1.13.0",
25
+ "@esri/arcgis-rest-request": "^1.13.0"
26
+ },
27
+ "scripts": {
28
+ "prepare": "npm run build",
29
+ "build": "npm run build:node && npm run build:umd && npm run build:esm",
30
+ "build:esm": "tsc -p ./tsconfig.json --module es2015 --outDir ./dist/esm --declaration",
31
+ "build:umd": "rollup -c ../../umd-base-profile.js && rollup -c ../../umd-production-profile.js",
32
+ "build:node": "tsc -p ./tsconfig.json --module commonjs --outDir ./dist/node"
33
+ },
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "git+https://github.com/Esri/arcgis-rest-js.git"
40
+ },
41
+ "contributors": [
42
+ {
43
+ "name": "Dave Bouwman",
44
+ "email": "dbouwman@esri.com",
45
+ "url": "http://blog.davebouwman.com/"
46
+ }
47
+ ],
48
+ "bugs": {
49
+ "url": "https://github.com/Esri/arcgis-rest-js/issues"
50
+ },
51
+ "homepage": "https://github.com/Esri/arcgis-rest-js#readme"
52
+ }
@@ -0,0 +1,34 @@
1
+ /* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import {
5
+ request,
6
+ IRequestOptions,
7
+ getPortalUrl
8
+ } from "@esri/arcgis-rest-request";
9
+
10
+ import { IGroupAdd } from "@esri/arcgis-rest-common-types";
11
+
12
+ import { serializeGroup } from "./helpers";
13
+
14
+ export interface IGroupAddRequestOptions extends IRequestOptions {
15
+ group: IGroupAdd;
16
+ }
17
+
18
+ /**
19
+ * Create a new Group.
20
+ * Note: The group name must be unique within the user's organization.
21
+ * @param requestOptions - Options for the request, including a group object
22
+ * @returns A Promise that will resolve with the success/failure status of the request
23
+ */
24
+ export function createGroup(
25
+ requestOptions: IGroupAddRequestOptions
26
+ ): Promise<any> {
27
+ const url = `${getPortalUrl(requestOptions)}/community/createGroup`;
28
+ const options: IGroupAddRequestOptions = {
29
+ ...requestOptions
30
+ };
31
+ // serialize the group into something Portal will accept
32
+ options.params = serializeGroup(requestOptions.group);
33
+ return request(url, options);
34
+ }
@@ -0,0 +1,95 @@
1
+ /* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import {
5
+ request,
6
+ IRequestOptions,
7
+ getPortalUrl
8
+ } from "@esri/arcgis-rest-request";
9
+
10
+ import { IPagingParams, IGroup, IItem } from "@esri/arcgis-rest-common-types";
11
+
12
+ export interface IPagingParamsRequestOptions extends IRequestOptions {
13
+ paging: IPagingParams;
14
+ }
15
+
16
+ export interface IGroupContentResult {
17
+ total: number;
18
+ start: number;
19
+ num: number;
20
+ nextStart: number;
21
+ items: IItem[];
22
+ }
23
+
24
+ export interface IGroupUsersResult {
25
+ owner: string;
26
+ admins: string[];
27
+ users: string[];
28
+ }
29
+
30
+ /**
31
+ *
32
+ * @param id - Group Id
33
+ * @param requestOptions - Options for the request
34
+ * @returns A Promise that will resolve with the data from the response.
35
+ */
36
+ export function getGroup(
37
+ id: string,
38
+ requestOptions?: IRequestOptions
39
+ ): Promise<IGroup> {
40
+ const url = `${getPortalUrl(requestOptions)}/community/groups/${id}`;
41
+ // default to a GET request
42
+ const options: IRequestOptions = {
43
+ ...{ httpMethod: "GET" },
44
+ ...requestOptions
45
+ };
46
+ return request(url, options);
47
+ }
48
+
49
+ /**
50
+ * Returns the content of a Group. Since the group may contain 1000s of items
51
+ * the requestParams allow for paging.
52
+ * @param id - Group Id
53
+ * @param requestOptions - Options for the request, including paging parameters.
54
+ * @returns A Promise that will resolve with the content of the group.
55
+ */
56
+ export function getGroupContent(
57
+ id: string,
58
+ requestOptions?: IPagingParamsRequestOptions
59
+ ): Promise<IGroup> {
60
+ const url = `${getPortalUrl(requestOptions)}/content/groups/${id}`;
61
+
62
+ // default to a GET request
63
+ const options: IRequestOptions = {
64
+ ...{ httpMethod: "GET" },
65
+ params: { start: 1, num: 100 },
66
+ ...requestOptions
67
+ } as IPagingParamsRequestOptions;
68
+
69
+ // is this the most concise way to mixin with the defaults above?
70
+ if (requestOptions && requestOptions.paging) {
71
+ options.params = { ...requestOptions.paging };
72
+ }
73
+
74
+ return request(url, options);
75
+ }
76
+
77
+ /**
78
+ * Get the usernames of the admins and members. Does not return actual 'User' objects. Those must be
79
+ * retrieved via separate calls to the User's API.
80
+ * @param id - Group Id
81
+ * @param requestOptions - Options for the request
82
+ * @returns A Promise that will resolve with arrays of the group admin usernames and the member usernames
83
+ */
84
+ export function getGroupUsers(
85
+ id: string,
86
+ requestOptions?: IRequestOptions
87
+ ): Promise<IGroupUsersResult> {
88
+ const url = `${getPortalUrl(requestOptions)}/community/groups/${id}/users`;
89
+ // default to a GET request
90
+ const options: IRequestOptions = {
91
+ ...{ httpMethod: "GET" },
92
+ ...requestOptions
93
+ };
94
+ return request(url, options);
95
+ }
@@ -0,0 +1,26 @@
1
+ /* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import { IRequestOptions } from "@esri/arcgis-rest-request";
5
+
6
+ import { IItemUpdate, IGroupAdd, IGroup } from "@esri/arcgis-rest-common-types";
7
+
8
+ export interface IGroupIdRequestOptions extends IRequestOptions {
9
+ id: string;
10
+ }
11
+
12
+ /**
13
+ * Serialize a group into a json format accepted by the Portal API
14
+ * for create and update operations
15
+ *
16
+ * @param group IGroup to be serialized
17
+ * @returns a formatted JSON object to be sent to Portal
18
+ * @private
19
+ */
20
+ export function serializeGroup(group: IGroupAdd | IItemUpdate | IGroup): any {
21
+ // create a clone so we're not messing with the original
22
+ const clone = JSON.parse(JSON.stringify(group));
23
+ // join and tags...
24
+ clone.tags = clone.tags.join(", ");
25
+ return clone;
26
+ }
@@ -0,0 +1,11 @@
1
+ /* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ export * from "./create";
5
+ export * from "./get";
6
+ export * from "./helpers";
7
+ export * from "./notification";
8
+ export * from "./protect";
9
+ export * from "./remove";
10
+ export * from "./search";
11
+ export * from "./update";
@@ -0,0 +1,77 @@
1
+ /* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import { request, getPortalUrl } from "@esri/arcgis-rest-request";
5
+ import { IGroupIdRequestOptions } from "./helpers";
6
+
7
+ export type NotificationChannelType = "push" | "email" | "builtin";
8
+
9
+ export interface IGroupNotificationRequestOptions
10
+ extends IGroupIdRequestOptions {
11
+ /**
12
+ * Subject of the notification. This only applies to email and builtin notifications. For push notifications, subject/title is provided as a part of the message payload.
13
+ */
14
+ subject?: string;
15
+ /**
16
+ * Message to be sent. For builtin and email notifications this is a string. For push notifications, this will be JSON.
17
+ */
18
+ message: string | object;
19
+ /**
20
+ * Array of usernames of the users in the group to whom the message should be sent. If not provided, the message will be sent to all users in the group if the user is an admin. Only group admins will be able to send notifications to a list of users. Group users will be able to send notifications to only one user at a time.
21
+ */
22
+ users?: string[];
23
+ /**
24
+ * The channel through which the notification is to be delivered. Supported values are push, email, or builtin. If push is chosen, a message will be delivered only to those group members that have registered their devices to receive push notifications. If the user has registered more than one device for the app, then message will be sent to all the registered devices. Email will be sent when the email option is chosen. If the builtin option is chosen, a notification will be added to the notifications list that the user can see when logged into the home app.
25
+ */
26
+ notificationChannelType?: NotificationChannelType;
27
+ /**
28
+ * ClientId of the application through which user receives messages on the mobile device. This only applies to push notifications.
29
+ */
30
+ clientId?: string;
31
+ /**
32
+ * This only applies to push notifications. When set to true, message will be delivered to the app and it will not show as an alert to the user.
33
+ */
34
+ silentNotification?: boolean;
35
+ }
36
+
37
+ /**
38
+ * Create a group notification.
39
+ *
40
+ * ```js
41
+ * import { createGroupNotification } from '@esri/arcgis-rest-groups';
42
+ *
43
+ * // send an email to an entire group
44
+ * createGroupNotification({
45
+ * authentication: UserSession,
46
+ * subject: "hello",
47
+ * message: "world!",
48
+ * id: groupId
49
+ * })
50
+ * ```
51
+ * @param requestOptions - Options for the request
52
+ *
53
+ * @returns A Promise that will resolve with the success/failure status of the request
54
+ */
55
+ export function createGroupNotification(
56
+ requestOptions: IGroupNotificationRequestOptions
57
+ ): Promise<any> {
58
+ const url = `${getPortalUrl(requestOptions)}/community/groups/${
59
+ requestOptions.id
60
+ }/createNotification`;
61
+
62
+ const options: IGroupNotificationRequestOptions = {
63
+ params: {
64
+ subject: requestOptions.subject,
65
+ message: requestOptions.message,
66
+ users: requestOptions.users,
67
+ notificationChannelType:
68
+ requestOptions.notificationChannelType || "email",
69
+ clientId: requestOptions.clientId,
70
+ silentNotification: requestOptions.silentNotification,
71
+ notifyAll: !requestOptions.users || requestOptions.users.length === 0,
72
+ ...requestOptions.params
73
+ },
74
+ ...requestOptions
75
+ };
76
+ return request(url, options);
77
+ }
@@ -0,0 +1,40 @@
1
+ /* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import { request, getPortalUrl } from "@esri/arcgis-rest-request";
5
+
6
+ import { IGroupIdRequestOptions } from "./helpers";
7
+
8
+ /**
9
+ * Protect a Group. This simply means a user must unprotect the group prior to deleting it
10
+ * @param requestOptions - Options for the request
11
+ * @returns A Promise that will resolve with the success/failure status of the request
12
+ */
13
+ export function protectGroup(
14
+ requestOptions: IGroupIdRequestOptions
15
+ ): Promise<any> {
16
+ const url = `${getPortalUrl(requestOptions)}/community/groups/${
17
+ requestOptions.id
18
+ }/protect`;
19
+ const options: IGroupIdRequestOptions = {
20
+ ...requestOptions
21
+ };
22
+ return request(url, options);
23
+ }
24
+
25
+ /**
26
+ * Unprotect a Group.
27
+ * @param requestOptions - Options for the request
28
+ * @returns A Promise that will resolve with the success/failure status of the request
29
+ */
30
+ export function unprotectGroup(
31
+ requestOptions: IGroupIdRequestOptions
32
+ ): Promise<any> {
33
+ const url = `${getPortalUrl(requestOptions)}/community/groups/${
34
+ requestOptions.id
35
+ }/unprotect`;
36
+ const options: IGroupIdRequestOptions = {
37
+ ...requestOptions
38
+ };
39
+ return request(url, options);
40
+ }
@@ -0,0 +1,23 @@
1
+ /* Copyright (c) 2017-2018 Environmental Systems Research Institute, Inc.
2
+ * Apache-2.0 */
3
+
4
+ import { request, getPortalUrl } from "@esri/arcgis-rest-request";
5
+
6
+ import { IGroupIdRequestOptions } from "./helpers";
7
+
8
+ /**
9
+ * Delete a group.
10
+ * @param requestOptions - Options for the request
11
+ * @returns A Promise that will resolve with the success/failure status of the request
12
+ */
13
+ export function removeGroup(
14
+ requestOptions: IGroupIdRequestOptions
15
+ ): Promise<any> {
16
+ const url = `${getPortalUrl(requestOptions)}/community/groups/${
17
+ requestOptions.id
18
+ }/delete`;
19
+ const options: IGroupIdRequestOptions = {
20
+ ...requestOptions
21
+ };
22
+ return request(url, options);
23
+ }