delectusnon 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierignore +2 -0
- package/.travis.yml +33 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/demos/ago-node-cli/README.md +29 -0
- package/demos/ago-node-cli/ago.js +32 -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 +172 -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 +118 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package-lock.json +116 -0
- package/demos/batch-geocoder-node/package.json +39 -0
- package/demos/express/README.md +10 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package-lock.json +473 -0
- package/demos/express/package.json +18 -0
- package/demos/express/server.js +28 -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 +8 -0
- package/demos/jsapi-integration/config.js +6 -0
- package/demos/jsapi-integration/index.html +79 -0
- package/demos/jsapi-integration/package-lock.json +184 -0
- package/demos/jsapi-integration/package.json +19 -0
- package/demos/oauth2-browser/README.md +12 -0
- package/demos/oauth2-browser/authenticate.html +32 -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 +21 -0
- package/demos/oauth2-browser-retry/index.html +116 -0
- package/demos/oauth2-browser-retry/logo.svg +4 -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 +308 -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/docs/FAQ.md +28 -0
- package/docs/HISTORY.md +62 -0
- package/docs/acetate.config.js +223 -0
- package/docs/build-typedoc.js +301 -0
- package/docs/src/_layout.html +82 -0
- package/docs/src/api/_declaration.html +496 -0
- package/docs/src/api/_layout.html +127 -0
- package/docs/src/api/_package.html +13 -0
- package/docs/src/api/index.html +23 -0
- package/docs/src/guides/_layout.html +24 -0
- package/docs/src/guides/amd-requirejs-dojo.md +40 -0
- package/docs/src/guides/babel-and-rollup.md +30 -0
- package/docs/src/guides/babel-and-webpack.md +30 -0
- package/docs/src/guides/browser-authentication.md +31 -0
- package/docs/src/guides/browserify.md +9 -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 +36 -0
- package/docs/src/guides/index.md +52 -0
- package/docs/src/guides/node.md +70 -0
- package/docs/src/guides/package-overview.md +8 -0
- package/docs/src/guides/server-authentication.md +9 -0
- package/docs/src/guides/typescript-and-webpack.md +9 -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 +169 -0
- package/jasmine.json +7 -0
- package/karma.conf.js +100 -0
- package/lerna.json +8 -0
- package/notes/README.md +88 -0
- package/package.json +88 -0
- package/packages/arcgis-rest-auth/README.md +64 -0
- package/packages/arcgis-rest-auth/package-lock.json +11 -0
- package/packages/arcgis-rest-auth/package.json +51 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +109 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +873 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -0
- package/packages/arcgis-rest-auth/src/fetch-token.ts +52 -0
- package/packages/arcgis-rest-auth/src/generate-token.ts +39 -0
- package/packages/arcgis-rest-auth/src/index.ts +8 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +995 -0
- package/packages/arcgis-rest-auth/test/fetchToken.test.ts +112 -0
- package/packages/arcgis-rest-auth/test/generateToken.test.ts +130 -0
- package/packages/arcgis-rest-auth/test/utils.ts +14 -0
- package/packages/arcgis-rest-auth/tsconfig.json +6 -0
- package/packages/arcgis-rest-common-types/README.md +61 -0
- package/packages/arcgis-rest-common-types/package.json +38 -0
- package/packages/arcgis-rest-common-types/src/group.ts +54 -0
- package/packages/arcgis-rest-common-types/src/index.ts +467 -0
- package/packages/arcgis-rest-common-types/src/item.ts +45 -0
- package/packages/arcgis-rest-common-types/src/webmap.ts +1232 -0
- package/packages/arcgis-rest-common-types/tsconfig.json +11 -0
- package/packages/arcgis-rest-feature-service/README.md +70 -0
- package/packages/arcgis-rest-feature-service/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-service/package.json +50 -0
- package/packages/arcgis-rest-feature-service/src/add.ts +81 -0
- package/packages/arcgis-rest-feature-service/src/addAttachment.ts +65 -0
- package/packages/arcgis-rest-feature-service/src/delete.ts +85 -0
- package/packages/arcgis-rest-feature-service/src/deleteAttachments.ts +68 -0
- package/packages/arcgis-rest-feature-service/src/getAttachments.ts +64 -0
- package/packages/arcgis-rest-feature-service/src/helpers.ts +80 -0
- package/packages/arcgis-rest-feature-service/src/index.ts +12 -0
- package/packages/arcgis-rest-feature-service/src/query.ts +172 -0
- package/packages/arcgis-rest-feature-service/src/queryRelated.ts +91 -0
- package/packages/arcgis-rest-feature-service/src/update.ts +81 -0
- package/packages/arcgis-rest-feature-service/src/updateAttachment.ts +74 -0
- package/packages/arcgis-rest-feature-service/test/attachments.test.ts +203 -0
- package/packages/arcgis-rest-feature-service/test/features.test.ts +252 -0
- package/packages/arcgis-rest-feature-service/test/mocks/feature.ts +279 -0
- package/packages/arcgis-rest-feature-service/test/mocks/foo.txt +1 -0
- package/packages/arcgis-rest-feature-service/tsconfig.json +6 -0
- package/packages/arcgis-rest-feature-service-admin/README.md +66 -0
- package/packages/arcgis-rest-feature-service-admin/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-service-admin/package.json +53 -0
- package/packages/arcgis-rest-feature-service-admin/src/addTo.ts +70 -0
- package/packages/arcgis-rest-feature-service-admin/src/create.ts +195 -0
- package/packages/arcgis-rest-feature-service-admin/src/index.ts +2 -0
- package/packages/arcgis-rest-feature-service-admin/test/addTo.test.ts +310 -0
- package/packages/arcgis-rest-feature-service-admin/test/create.test.ts +412 -0
- package/packages/arcgis-rest-feature-service-admin/test/mocks/move.ts +14 -0
- package/packages/arcgis-rest-feature-service-admin/test/mocks/service.ts +72 -0
- package/packages/arcgis-rest-feature-service-admin/tsconfig.json +6 -0
- package/packages/arcgis-rest-geocoder/README.md +79 -0
- package/packages/arcgis-rest-geocoder/package-lock.json +11 -0
- package/packages/arcgis-rest-geocoder/package.json +52 -0
- package/packages/arcgis-rest-geocoder/src/bulk.ts +102 -0
- package/packages/arcgis-rest-geocoder/src/geocode.ts +117 -0
- package/packages/arcgis-rest-geocoder/src/helpers.ts +79 -0
- package/packages/arcgis-rest-geocoder/src/index.ts +8 -0
- package/packages/arcgis-rest-geocoder/src/reverse.ts +84 -0
- package/packages/arcgis-rest-geocoder/src/suggest.ts +72 -0
- package/packages/arcgis-rest-geocoder/test/bulk.test.ts +113 -0
- package/packages/arcgis-rest-geocoder/test/geocode.test.ts +121 -0
- package/packages/arcgis-rest-geocoder/test/helpers.test.ts +113 -0
- package/packages/arcgis-rest-geocoder/test/mocks/responses.ts +591 -0
- package/packages/arcgis-rest-geocoder/test/reverse.test.ts +126 -0
- package/packages/arcgis-rest-geocoder/test/suggest.test.ts +77 -0
- package/packages/arcgis-rest-geocoder/tsconfig.json +6 -0
- package/packages/arcgis-rest-groups/README.md +64 -0
- package/packages/arcgis-rest-groups/package-lock.json +11 -0
- package/packages/arcgis-rest-groups/package.json +52 -0
- package/packages/arcgis-rest-groups/src/create.ts +34 -0
- package/packages/arcgis-rest-groups/src/get.ts +95 -0
- package/packages/arcgis-rest-groups/src/helpers.ts +26 -0
- package/packages/arcgis-rest-groups/src/index.ts +11 -0
- package/packages/arcgis-rest-groups/src/notification.ts +77 -0
- package/packages/arcgis-rest-groups/src/protect.ts +40 -0
- package/packages/arcgis-rest-groups/src/remove.ts +23 -0
- package/packages/arcgis-rest-groups/src/search.ts +64 -0
- package/packages/arcgis-rest-groups/src/update.ts +36 -0
- package/packages/arcgis-rest-groups/test/crud.test.ts +104 -0
- package/packages/arcgis-rest-groups/test/get.test.ts +101 -0
- package/packages/arcgis-rest-groups/test/mocks/responses.ts +141 -0
- package/packages/arcgis-rest-groups/test/notification.test.ts +102 -0
- package/packages/arcgis-rest-groups/test/protect.test.ts +64 -0
- package/packages/arcgis-rest-groups/test/search.test.ts +85 -0
- package/packages/arcgis-rest-groups/tsconfig.json +6 -0
- package/packages/arcgis-rest-items/README.md +66 -0
- package/packages/arcgis-rest-items/package-lock.json +11 -0
- package/packages/arcgis-rest-items/package.json +52 -0
- package/packages/arcgis-rest-items/src/add.ts +103 -0
- package/packages/arcgis-rest-items/src/create.ts +110 -0
- package/packages/arcgis-rest-items/src/get.ts +79 -0
- package/packages/arcgis-rest-items/src/helpers.ts +147 -0
- package/packages/arcgis-rest-items/src/index.ts +11 -0
- package/packages/arcgis-rest-items/src/protect.ts +38 -0
- package/packages/arcgis-rest-items/src/remove.ts +58 -0
- package/packages/arcgis-rest-items/src/search.ts +78 -0
- package/packages/arcgis-rest-items/src/update.ts +134 -0
- package/packages/arcgis-rest-items/test/add.test.ts +256 -0
- package/packages/arcgis-rest-items/test/create.test.ts +371 -0
- package/packages/arcgis-rest-items/test/get.test.ts +181 -0
- package/packages/arcgis-rest-items/test/mocks/foo.zip +0 -0
- package/packages/arcgis-rest-items/test/mocks/item.ts +33 -0
- package/packages/arcgis-rest-items/test/mocks/resources.ts +31 -0
- package/packages/arcgis-rest-items/test/mocks/search.ts +63 -0
- package/packages/arcgis-rest-items/test/protect.test.ts +122 -0
- package/packages/arcgis-rest-items/test/remove.test.ts +161 -0
- package/packages/arcgis-rest-items/test/search.test.ts +159 -0
- package/packages/arcgis-rest-items/test/update.test.ts +450 -0
- package/packages/arcgis-rest-items/tsconfig.json +6 -0
- package/packages/arcgis-rest-request/README.md +65 -0
- package/packages/arcgis-rest-request/package-lock.json +11 -0
- package/packages/arcgis-rest-request/package.json +42 -0
- package/packages/arcgis-rest-request/src/index.ts +13 -0
- package/packages/arcgis-rest-request/src/request.ts +293 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISAuthError.ts +67 -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/check-for-errors.ts +65 -0
- package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +34 -0
- package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +23 -0
- package/packages/arcgis-rest-request/src/utils/get-portal-url.ts +25 -0
- package/packages/arcgis-rest-request/src/utils/get-portal.ts +45 -0
- package/packages/arcgis-rest-request/src/utils/process-params.ts +99 -0
- package/packages/arcgis-rest-request/test/mocks/errors.ts +68 -0
- package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +13 -0
- package/packages/arcgis-rest-request/test/mocks/portal.ts +112 -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 +299 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +170 -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/encode-form-data.test.ts +133 -0
- package/packages/arcgis-rest-request/test/utils/get-portal-url.test.ts +37 -0
- package/packages/arcgis-rest-request/test/utils/portal.test.ts +97 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +193 -0
- package/packages/arcgis-rest-request/tsconfig.json +6 -0
- package/packages/arcgis-rest-sharing/README.md +67 -0
- package/packages/arcgis-rest-sharing/package-lock.json +11 -0
- package/packages/arcgis-rest-sharing/package.json +57 -0
- package/packages/arcgis-rest-sharing/src/access.ts +85 -0
- package/packages/arcgis-rest-sharing/src/group-sharing.ts +211 -0
- package/packages/arcgis-rest-sharing/src/helpers.ts +82 -0
- package/packages/arcgis-rest-sharing/src/index.ts +5 -0
- package/packages/arcgis-rest-sharing/test/access.test.ts +154 -0
- package/packages/arcgis-rest-sharing/test/group-sharing.test.ts +566 -0
- package/packages/arcgis-rest-sharing/test/helpers.test.ts +55 -0
- package/packages/arcgis-rest-sharing/test/mocks/sharing.ts +18 -0
- package/packages/arcgis-rest-sharing/tsconfig.json +6 -0
- package/packages/arcgis-rest-users/README.md +71 -0
- package/packages/arcgis-rest-users/package-lock.json +11 -0
- package/packages/arcgis-rest-users/package.json +51 -0
- package/packages/arcgis-rest-users/src/get.ts +69 -0
- package/packages/arcgis-rest-users/src/index.ts +6 -0
- package/packages/arcgis-rest-users/src/invitation.ts +166 -0
- package/packages/arcgis-rest-users/src/notification.ts +73 -0
- package/packages/arcgis-rest-users/test/get.test.ts +99 -0
- package/packages/arcgis-rest-users/test/invitation.test.ts +169 -0
- package/packages/arcgis-rest-users/test/mocks/invitation.ts +70 -0
- package/packages/arcgis-rest-users/test/mocks/notification.ts +34 -0
- package/packages/arcgis-rest-users/test/mocks/user.ts +173 -0
- package/packages/arcgis-rest-users/test/notification.test.ts +83 -0
- package/packages/arcgis-rest-users/tsconfig.json +6 -0
- package/support/changelog.js +394 -0
- package/support/deploy-doc-site.js +16 -0
- package/support/publish.sh +43 -0
- package/support/test-helpers.js +8 -0
- package/tsconfig.json +69 -0
- package/tslint.json +15 -0
- package/umd-base-profile.js +82 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,193 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { processParams, requiresFormData } from "../../src/index";
|
5
|
+
|
6
|
+
describe("processParams", () => {
|
7
|
+
it("should pass non Date, Function, Array and Object params through", () => {
|
8
|
+
const params = {
|
9
|
+
foo: "foo",
|
10
|
+
bar: 1
|
11
|
+
};
|
12
|
+
|
13
|
+
const expected = {
|
14
|
+
foo: "foo",
|
15
|
+
bar: 1
|
16
|
+
};
|
17
|
+
expect(processParams(params)).toEqual(expected);
|
18
|
+
});
|
19
|
+
|
20
|
+
it("should encode Dates as timestamps", () => {
|
21
|
+
const date = new Date();
|
22
|
+
|
23
|
+
const params = {
|
24
|
+
foo: date
|
25
|
+
};
|
26
|
+
|
27
|
+
const expected = {
|
28
|
+
foo: date.getTime()
|
29
|
+
};
|
30
|
+
expect(processParams(params)).toEqual(expected);
|
31
|
+
});
|
32
|
+
|
33
|
+
it("should not encode a function", () => {
|
34
|
+
const params = {
|
35
|
+
foo() {} // tslint:disable-line no-empty
|
36
|
+
};
|
37
|
+
|
38
|
+
expect(processParams(params)).toEqual({});
|
39
|
+
});
|
40
|
+
|
41
|
+
it("should stringify objects", () => {
|
42
|
+
const params = {
|
43
|
+
foo: {
|
44
|
+
bar: "bar"
|
45
|
+
}
|
46
|
+
};
|
47
|
+
|
48
|
+
const expected = {
|
49
|
+
foo: '{"bar":"bar"}'
|
50
|
+
};
|
51
|
+
|
52
|
+
expect(processParams(params)).toEqual(expected);
|
53
|
+
});
|
54
|
+
|
55
|
+
it("should stringify arrays of objects", () => {
|
56
|
+
const params = {
|
57
|
+
foo: [
|
58
|
+
{
|
59
|
+
bar: "bar"
|
60
|
+
}
|
61
|
+
]
|
62
|
+
};
|
63
|
+
|
64
|
+
const expected = {
|
65
|
+
foo: '[{"bar":"bar"}]'
|
66
|
+
};
|
67
|
+
|
68
|
+
expect(processParams(params)).toEqual(expected);
|
69
|
+
});
|
70
|
+
|
71
|
+
it("should comma seperate arrays of non objects", () => {
|
72
|
+
const params = {
|
73
|
+
foo: ["bar", "baz"]
|
74
|
+
};
|
75
|
+
|
76
|
+
const expected = {
|
77
|
+
foo: "bar,baz"
|
78
|
+
};
|
79
|
+
|
80
|
+
expect(processParams(params)).toEqual(expected);
|
81
|
+
});
|
82
|
+
|
83
|
+
it("should stringify booleans", () => {
|
84
|
+
const params = {
|
85
|
+
foo: true,
|
86
|
+
bar: false
|
87
|
+
};
|
88
|
+
|
89
|
+
const expected = {
|
90
|
+
foo: "true",
|
91
|
+
bar: "false"
|
92
|
+
};
|
93
|
+
|
94
|
+
expect(processParams(params)).toEqual(expected);
|
95
|
+
});
|
96
|
+
|
97
|
+
it("should exclude null and undefined, but not a zero", () => {
|
98
|
+
const params: any = {
|
99
|
+
foo: null,
|
100
|
+
bar: undefined,
|
101
|
+
baz: 0
|
102
|
+
};
|
103
|
+
|
104
|
+
const expected = {
|
105
|
+
baz: 0
|
106
|
+
};
|
107
|
+
|
108
|
+
expect(processParams(params)).toEqual(expected);
|
109
|
+
});
|
110
|
+
|
111
|
+
it("should not require form data for simple requests", () => {
|
112
|
+
expect(
|
113
|
+
requiresFormData({
|
114
|
+
string: "string"
|
115
|
+
})
|
116
|
+
).toBeFalsy();
|
117
|
+
|
118
|
+
expect(
|
119
|
+
requiresFormData({
|
120
|
+
number: 123
|
121
|
+
})
|
122
|
+
).toBeFalsy();
|
123
|
+
|
124
|
+
expect(
|
125
|
+
requiresFormData({
|
126
|
+
date: new Date()
|
127
|
+
})
|
128
|
+
).toBeFalsy();
|
129
|
+
|
130
|
+
expect(
|
131
|
+
requiresFormData({
|
132
|
+
boolean: true
|
133
|
+
})
|
134
|
+
).toBeFalsy();
|
135
|
+
|
136
|
+
expect(
|
137
|
+
requiresFormData({
|
138
|
+
array: []
|
139
|
+
})
|
140
|
+
).toBeFalsy();
|
141
|
+
|
142
|
+
expect(
|
143
|
+
requiresFormData({
|
144
|
+
object: {}
|
145
|
+
})
|
146
|
+
).toBeFalsy();
|
147
|
+
|
148
|
+
expect(
|
149
|
+
requiresFormData({
|
150
|
+
fn: () => {
|
151
|
+
return;
|
152
|
+
}
|
153
|
+
})
|
154
|
+
).toBeFalsy();
|
155
|
+
|
156
|
+
expect(
|
157
|
+
requiresFormData({
|
158
|
+
falsy: null
|
159
|
+
})
|
160
|
+
).toBeFalsy();
|
161
|
+
});
|
162
|
+
|
163
|
+
it("should require form data for multipart requests", () => {
|
164
|
+
const binaryObj =
|
165
|
+
typeof File !== "undefined"
|
166
|
+
? new File(["foo"], "foo.txt", {
|
167
|
+
type: "text/plain"
|
168
|
+
})
|
169
|
+
: Buffer.from("");
|
170
|
+
|
171
|
+
expect(
|
172
|
+
requiresFormData({
|
173
|
+
binary: binaryObj
|
174
|
+
})
|
175
|
+
).toBeTruthy();
|
176
|
+
});
|
177
|
+
|
178
|
+
it("should require form data for mixed multipart requests", () => {
|
179
|
+
const binaryObj =
|
180
|
+
typeof File !== "undefined"
|
181
|
+
? new File(["foo"], "foo.txt", {
|
182
|
+
type: "text/plain"
|
183
|
+
})
|
184
|
+
: Buffer.from("");
|
185
|
+
|
186
|
+
expect(
|
187
|
+
requiresFormData({
|
188
|
+
string: "string",
|
189
|
+
binary: binaryObj
|
190
|
+
})
|
191
|
+
).toBeTruthy();
|
192
|
+
});
|
193
|
+
});
|
@@ -0,0 +1,67 @@
|
|
1
|
+
[![npm version][npm-img]][npm-url]
|
2
|
+
[![build status][travis-img]][travis-url]
|
3
|
+
[](https://raw.githubusercontent.com/Esri/arcgis-rest-js/master/LICENSE)
|
4
|
+
|
5
|
+
[npm-img]: https://img.shields.io/npm/v/@esri/arcgis-rest-sharing.svg?style=flat-square
|
6
|
+
[npm-url]: https://www.npmjs.com/package/@esri/arcgis-rest-sharing
|
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-sharing
|
11
|
+
|
12
|
+
> Helper utilities for managing access to ArcGIS content 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-sharing
|
19
|
+
```
|
20
|
+
|
21
|
+
```js
|
22
|
+
import { setItemAccess } from '@esri/arcgis-rest-sharing';
|
23
|
+
|
24
|
+
const itemId = "abc123";
|
25
|
+
|
26
|
+
setItemAccess({
|
27
|
+
id: itemId,
|
28
|
+
access: "public",
|
29
|
+
authentication: session
|
30
|
+
})
|
31
|
+
```
|
32
|
+
|
33
|
+
### [API Reference](https://esri.github.io/arcgis-rest-js/api/sharing/)
|
34
|
+
|
35
|
+
### Issues
|
36
|
+
|
37
|
+
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.
|
38
|
+
|
39
|
+
If you're looking for help you can also post issues on [GIS Stackexchange](http://gis.stackexchange.com/questions/ask?tags=esri-oss).
|
40
|
+
|
41
|
+
### Versioning
|
42
|
+
|
43
|
+
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.
|
44
|
+
|
45
|
+
For more information on SemVer, please visit <http://semver.org/>.
|
46
|
+
|
47
|
+
### Contributing
|
48
|
+
|
49
|
+
Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](CONTRIBUTING.md).
|
50
|
+
|
51
|
+
### License
|
52
|
+
|
53
|
+
Copyright © 2018 Esri
|
54
|
+
|
55
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
56
|
+
you may not use this file except in compliance with the License.
|
57
|
+
You may obtain a copy of the License at
|
58
|
+
|
59
|
+
> http://www.apache.org/licenses/LICENSE-2.0
|
60
|
+
|
61
|
+
Unless required by applicable law or agreed to in writing, software
|
62
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
63
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
64
|
+
See the License for the specific language governing permissions and
|
65
|
+
limitations under the License.
|
66
|
+
|
67
|
+
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.9.1",
|
7
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.1.tgz",
|
8
|
+
"integrity": "sha512-avfPS28HmGLLc2o4elcc2EIq2FcH++Yo5YxpBZi9Yw93BCTGFthI4HPE4Rpep6vSYQaK8e69PelM44tPj+RaQg=="
|
9
|
+
}
|
10
|
+
}
|
11
|
+
}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
{
|
2
|
+
"name": "@esri/arcgis-rest-sharing",
|
3
|
+
"version": "1.13.0",
|
4
|
+
"description": "Helper utilities for managing access to ArcGIS content in Node.js and modern browsers.",
|
5
|
+
"main": "dist/node/index.js",
|
6
|
+
"browser": "dist/umd/sharing.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
|
+
"dependencies": {
|
12
|
+
"tslib": "^1.8.0"
|
13
|
+
},
|
14
|
+
"peerDependencies": {
|
15
|
+
"@esri/arcgis-rest-auth": "^1.11.0",
|
16
|
+
"@esri/arcgis-rest-common-types": "^1.11.0",
|
17
|
+
"@esri/arcgis-rest-groups": "^1.11.0",
|
18
|
+
"@esri/arcgis-rest-request": "^1.11.0"
|
19
|
+
},
|
20
|
+
"devDependencies": {
|
21
|
+
"@esri/arcgis-rest-auth": "^1.13.0",
|
22
|
+
"@esri/arcgis-rest-common-types": "^1.13.0",
|
23
|
+
"@esri/arcgis-rest-groups": "^1.13.0",
|
24
|
+
"@esri/arcgis-rest-request": "^1.13.0"
|
25
|
+
},
|
26
|
+
"files": [
|
27
|
+
"dist/**"
|
28
|
+
],
|
29
|
+
"scripts": {
|
30
|
+
"prepare": "npm run build",
|
31
|
+
"build": "npm run build:node && npm run build:umd && npm run build:esm",
|
32
|
+
"build:esm": "tsc --module es2015 --outDir ./dist/esm --declaration",
|
33
|
+
"build:umd": "rollup -c ../../umd-base-profile.js && rollup -c ../../umd-production-profile.js",
|
34
|
+
"build:node": "tsc --module commonjs --outDir ./dist/node"
|
35
|
+
},
|
36
|
+
"publishConfig": {
|
37
|
+
"access": "public"
|
38
|
+
},
|
39
|
+
"repository": {
|
40
|
+
"type": "git",
|
41
|
+
"url": "git+https://github.com/Esri/arcgis-rest-js.git"
|
42
|
+
},
|
43
|
+
"contributors": [
|
44
|
+
{
|
45
|
+
"name": "John Gravois",
|
46
|
+
"email": "john@esri.com"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"name": "Tom Wayson",
|
50
|
+
"email": "tom@tomwayson.com"
|
51
|
+
}
|
52
|
+
],
|
53
|
+
"bugs": {
|
54
|
+
"url": "https://github.com/Esri/arcgis-rest-js/issues"
|
55
|
+
},
|
56
|
+
"homepage": "https://github.com/Esri/arcgis-rest-js#readme"
|
57
|
+
}
|
@@ -0,0 +1,85 @@
|
|
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
|
+
ISharingRequestOptions,
|
8
|
+
ISharingResponse,
|
9
|
+
isItemOwner,
|
10
|
+
getSharingUrl,
|
11
|
+
isOrgAdmin
|
12
|
+
} from "./helpers";
|
13
|
+
|
14
|
+
export interface ISetAccessRequestOptions extends ISharingRequestOptions {
|
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
|
+
* Set access level of an item to 'public', 'org', or 'private'.
|
23
|
+
*
|
24
|
+
* ```js
|
25
|
+
* import { setItemAccess } from '@esri/arcgis-rest-sharing';
|
26
|
+
*
|
27
|
+
* setItemAccess({
|
28
|
+
* id: "abc123",
|
29
|
+
* access: "public",
|
30
|
+
* authentication: session
|
31
|
+
* })
|
32
|
+
* ```
|
33
|
+
*
|
34
|
+
* @param requestOptions - Options for the request.
|
35
|
+
* @returns A Promise that will resolve with the data from the response.
|
36
|
+
*/
|
37
|
+
export function setItemAccess(
|
38
|
+
requestOptions: ISetAccessRequestOptions
|
39
|
+
): Promise<ISharingResponse> {
|
40
|
+
const url = getSharingUrl(requestOptions);
|
41
|
+
|
42
|
+
if (isItemOwner(requestOptions)) {
|
43
|
+
// if the user owns the item, proceed
|
44
|
+
return updateItemAccess(url, requestOptions);
|
45
|
+
} else {
|
46
|
+
// otherwise we need to check to see if they are an organization admin
|
47
|
+
return isOrgAdmin(requestOptions).then(admin => {
|
48
|
+
if (admin) {
|
49
|
+
return updateItemAccess(url, requestOptions);
|
50
|
+
} else {
|
51
|
+
// if neither, updating the sharing isnt possible
|
52
|
+
throw Error(
|
53
|
+
`This item can not be shared by ${
|
54
|
+
requestOptions.authentication.username
|
55
|
+
}. They are neither the item owner nor an organization admin.`
|
56
|
+
);
|
57
|
+
}
|
58
|
+
});
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
function updateItemAccess(
|
63
|
+
url: string,
|
64
|
+
requestOptions: ISetAccessRequestOptions
|
65
|
+
): Promise<any> {
|
66
|
+
requestOptions.params = {
|
67
|
+
org: false,
|
68
|
+
everyone: false,
|
69
|
+
...requestOptions.params
|
70
|
+
};
|
71
|
+
|
72
|
+
// if the user wants to make the item private, it needs to be unshared from any/all groups as well
|
73
|
+
if (requestOptions.access === "private") {
|
74
|
+
requestOptions.params.groups = " ";
|
75
|
+
}
|
76
|
+
if (requestOptions.access === "org") {
|
77
|
+
requestOptions.params.org = true;
|
78
|
+
}
|
79
|
+
// if sharing with everyone, share with the entire organization as well.
|
80
|
+
if (requestOptions.access === "public") {
|
81
|
+
requestOptions.params.org = true;
|
82
|
+
requestOptions.params.everyone = true;
|
83
|
+
}
|
84
|
+
return request(url, requestOptions);
|
85
|
+
}
|
@@ -0,0 +1,211 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { request, getPortalUrl } from "@esri/arcgis-rest-request";
|
5
|
+
import { IItem } from "@esri/arcgis-rest-common-types";
|
6
|
+
|
7
|
+
import {
|
8
|
+
ISharingRequestOptions,
|
9
|
+
ISharingResponse,
|
10
|
+
isOrgAdmin,
|
11
|
+
getUserMembership
|
12
|
+
} from "./helpers";
|
13
|
+
|
14
|
+
export interface IGroupSharingRequestOptions extends ISharingRequestOptions {
|
15
|
+
/**
|
16
|
+
* Group identifier
|
17
|
+
*/
|
18
|
+
groupId: string;
|
19
|
+
confirmItemControl?: boolean;
|
20
|
+
}
|
21
|
+
|
22
|
+
interface IGroupSharingUnsharingRequestOptions
|
23
|
+
extends IGroupSharingRequestOptions {
|
24
|
+
action: "share" | "unshare";
|
25
|
+
}
|
26
|
+
|
27
|
+
/**
|
28
|
+
* Share an item with a group.
|
29
|
+
*
|
30
|
+
* ```js
|
31
|
+
* import { shareItemWithGroup } from '@esri/arcgis-rest-sharing';
|
32
|
+
*
|
33
|
+
* shareItemWithGroup({
|
34
|
+
* id: "abc123",
|
35
|
+
* groupId: "xyz987",
|
36
|
+
* authentication: session
|
37
|
+
* })
|
38
|
+
* ```
|
39
|
+
*
|
40
|
+
* @param requestOptions - Options for the request.
|
41
|
+
* @returns A Promise that will resolve with the data from the response.
|
42
|
+
*/
|
43
|
+
export function shareItemWithGroup(
|
44
|
+
requestOptions: IGroupSharingRequestOptions
|
45
|
+
): Promise<ISharingResponse> {
|
46
|
+
return changeGroupSharing({ action: "share", ...requestOptions });
|
47
|
+
}
|
48
|
+
|
49
|
+
/**
|
50
|
+
* Stop sharing an item with a group.
|
51
|
+
*
|
52
|
+
* ```js
|
53
|
+
* import { unshareItemWithGroup } from '@esri/arcgis-rest-sharing';
|
54
|
+
*
|
55
|
+
* unshareItemWithGroup({
|
56
|
+
* id: "abc123",
|
57
|
+
* groupId: "xyz987",
|
58
|
+
* authentication: session
|
59
|
+
* })
|
60
|
+
* ```
|
61
|
+
*
|
62
|
+
* @param requestOptions - Options for the request.
|
63
|
+
* @returns A Promise that will resolve with the data from the response.
|
64
|
+
*/
|
65
|
+
export function unshareItemWithGroup(
|
66
|
+
requestOptions: IGroupSharingRequestOptions
|
67
|
+
): Promise<ISharingResponse> {
|
68
|
+
return changeGroupSharing({ action: "unshare", ...requestOptions });
|
69
|
+
}
|
70
|
+
|
71
|
+
/**
|
72
|
+
* @param requestOptions - Options for the request.
|
73
|
+
* @returns A Promise that will resolve with the data from the response.
|
74
|
+
*/
|
75
|
+
function changeGroupSharing(
|
76
|
+
requestOptions: IGroupSharingUnsharingRequestOptions
|
77
|
+
): Promise<ISharingResponse> {
|
78
|
+
const username = requestOptions.authentication.username;
|
79
|
+
const owner = requestOptions.owner || username;
|
80
|
+
|
81
|
+
return isOrgAdmin(requestOptions).then(admin => {
|
82
|
+
const resultProp =
|
83
|
+
requestOptions.action === "share" ? "notSharedWith" : "notUnsharedFrom";
|
84
|
+
// check if the item has already been shared with the group...
|
85
|
+
return isItemSharedWithGroup(requestOptions).then(result => {
|
86
|
+
// console.log(admin);
|
87
|
+
// if we are sharing and result is true OR we are unsharing and result is false... short circuit
|
88
|
+
if (
|
89
|
+
(requestOptions.action === "share" && result === true) ||
|
90
|
+
(requestOptions.action === "unshare" && result === false)
|
91
|
+
) {
|
92
|
+
// and send back the same response structure ArcGIS Online would
|
93
|
+
const response = { itemId: requestOptions.id, shortcut: true } as any;
|
94
|
+
response[resultProp] = [];
|
95
|
+
return response;
|
96
|
+
} else {
|
97
|
+
// next check to ensure the user is a member of the group
|
98
|
+
return getUserMembership(requestOptions)
|
99
|
+
.then(membership => {
|
100
|
+
if (membership === "nonmember") {
|
101
|
+
// abort and reject promise
|
102
|
+
throw Error(
|
103
|
+
`This item can not be ${
|
104
|
+
requestOptions.action
|
105
|
+
}d by ${username} as they are not a member of the specified group ${
|
106
|
+
requestOptions.groupId
|
107
|
+
}.`
|
108
|
+
);
|
109
|
+
} else {
|
110
|
+
// if orgAdmin or owner (and member of group) share using the owner url
|
111
|
+
if (owner === username || admin) {
|
112
|
+
return `${getPortalUrl(
|
113
|
+
requestOptions
|
114
|
+
)}/content/users/${owner}/items/${requestOptions.id}/${
|
115
|
+
requestOptions.action
|
116
|
+
}`;
|
117
|
+
} else {
|
118
|
+
// if they are a group admin/owner, use the bare item url
|
119
|
+
if (membership === "admin" || membership === "owner") {
|
120
|
+
return `${getPortalUrl(requestOptions)}/content/items/${
|
121
|
+
requestOptions.id
|
122
|
+
}/${requestOptions.action}`;
|
123
|
+
} else {
|
124
|
+
// otherwise abort
|
125
|
+
throw Error(
|
126
|
+
`This item can not be ${
|
127
|
+
requestOptions.action
|
128
|
+
}d by ${username} as they are neither the owner, a groupAdmin of ${
|
129
|
+
requestOptions.groupId
|
130
|
+
}, nor an org_admin.`
|
131
|
+
);
|
132
|
+
}
|
133
|
+
}
|
134
|
+
}
|
135
|
+
})
|
136
|
+
.then(url => {
|
137
|
+
// now its finally time to do the sharing
|
138
|
+
requestOptions.params = {
|
139
|
+
groups: requestOptions.groupId,
|
140
|
+
confirmItemControl: requestOptions.confirmItemControl
|
141
|
+
};
|
142
|
+
// dont mixin to ensure that old query parameters from the search request arent included
|
143
|
+
return request(url, requestOptions);
|
144
|
+
})
|
145
|
+
.then(sharingResponse => {
|
146
|
+
if (sharingResponse[resultProp].length) {
|
147
|
+
throw Error(
|
148
|
+
`Item ${requestOptions.id} could not be ${
|
149
|
+
requestOptions.action
|
150
|
+
}d to group ${requestOptions.groupId}.`
|
151
|
+
);
|
152
|
+
} else {
|
153
|
+
// all is well
|
154
|
+
return sharingResponse;
|
155
|
+
}
|
156
|
+
});
|
157
|
+
} // else
|
158
|
+
}); // then
|
159
|
+
});
|
160
|
+
}
|
161
|
+
|
162
|
+
/**
|
163
|
+
* Find out whether or not an item is already shared with a group.
|
164
|
+
*
|
165
|
+
* @param requestOptions - Options for the request.
|
166
|
+
* @returns A Promise that will resolve with the data from the response.
|
167
|
+
*/
|
168
|
+
function isItemSharedWithGroup(
|
169
|
+
requestOptions: IGroupSharingRequestOptions
|
170
|
+
): Promise<boolean> {
|
171
|
+
const query = {
|
172
|
+
q: `id: ${requestOptions.id} AND group: ${requestOptions.groupId}`,
|
173
|
+
start: 1,
|
174
|
+
num: 10,
|
175
|
+
sortField: "title"
|
176
|
+
};
|
177
|
+
|
178
|
+
// we need to append some params into requestOptions, so make a clone
|
179
|
+
// instead of mutating the params on the inbound requestOptions object
|
180
|
+
const options = { ...requestOptions };
|
181
|
+
// instead of calling out to "@esri/arcgis-rest-items, make the request manually to forgoe another dependency
|
182
|
+
options.params = {
|
183
|
+
...query,
|
184
|
+
...requestOptions.params
|
185
|
+
};
|
186
|
+
|
187
|
+
const url = `${getPortalUrl(options)}/search`;
|
188
|
+
|
189
|
+
return request(url, options).then(searchResponse => {
|
190
|
+
// if there are no search results at all, we know the item hasnt already been shared with the group
|
191
|
+
if (searchResponse.total === 0) {
|
192
|
+
return false;
|
193
|
+
} else {
|
194
|
+
let sharedItem: IItem;
|
195
|
+
// otherwise loop through and search for the id
|
196
|
+
searchResponse.results.some((item: IItem) => {
|
197
|
+
const matchedItem = item.id === requestOptions.id;
|
198
|
+
if (matchedItem) {
|
199
|
+
sharedItem = item;
|
200
|
+
}
|
201
|
+
return matchedItem;
|
202
|
+
});
|
203
|
+
|
204
|
+
if (sharedItem) {
|
205
|
+
return true;
|
206
|
+
} else {
|
207
|
+
return false;
|
208
|
+
}
|
209
|
+
}
|
210
|
+
});
|
211
|
+
}
|