delectusnon 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 +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,112 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import * as fetchMock from "fetch-mock";
|
5
|
+
import { fetchToken } from "../src/index";
|
6
|
+
|
7
|
+
const TOKEN_URL = "https://www.arcgis.com/sharing/rest/oauth2/token";
|
8
|
+
|
9
|
+
describe("fetchToken()", () => {
|
10
|
+
afterEach(fetchMock.restore);
|
11
|
+
|
12
|
+
it("should request a token with `client_credentials`, `client_id` and `client_secret`", done => {
|
13
|
+
fetchMock.postOnce(TOKEN_URL, {
|
14
|
+
access_token: "token",
|
15
|
+
expires_in: 1800,
|
16
|
+
ssl: true
|
17
|
+
});
|
18
|
+
|
19
|
+
fetchToken(TOKEN_URL, {
|
20
|
+
params: {
|
21
|
+
client_id: "clientId",
|
22
|
+
client_secret: "clientSecret",
|
23
|
+
grant_type: "client_credentials"
|
24
|
+
}
|
25
|
+
})
|
26
|
+
.then(response => {
|
27
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
28
|
+
TOKEN_URL
|
29
|
+
);
|
30
|
+
expect(url).toEqual(TOKEN_URL);
|
31
|
+
expect(options.body).toContain("f=json");
|
32
|
+
expect(options.body).toContain("client_id=clientId");
|
33
|
+
expect(options.body).toContain("client_secret=clientSecret");
|
34
|
+
expect(options.body).toContain("grant_type=client_credentials");
|
35
|
+
expect(response.token).toEqual("token");
|
36
|
+
expect(response.expires).toBeGreaterThan(Date.now());
|
37
|
+
expect(response.ssl).toEqual(true);
|
38
|
+
done();
|
39
|
+
})
|
40
|
+
.catch(e => {
|
41
|
+
fail(e);
|
42
|
+
});
|
43
|
+
});
|
44
|
+
|
45
|
+
it("should request a token with `authorization_code`, `client_id` and `redirect_uri`", done => {
|
46
|
+
fetchMock.postOnce(TOKEN_URL, {
|
47
|
+
access_token: "token",
|
48
|
+
expires_in: 1800,
|
49
|
+
refresh_token: "refreshToken",
|
50
|
+
username: "Casey",
|
51
|
+
ssl: true
|
52
|
+
});
|
53
|
+
|
54
|
+
fetchToken(TOKEN_URL, {
|
55
|
+
params: {
|
56
|
+
client_id: "clientId",
|
57
|
+
redirect_uri: "https://example-app.com/redirect-uri",
|
58
|
+
code: "authorizationCode",
|
59
|
+
grant_type: "authorization_code"
|
60
|
+
}
|
61
|
+
})
|
62
|
+
.then(response => {
|
63
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
64
|
+
TOKEN_URL
|
65
|
+
);
|
66
|
+
expect(url).toEqual(TOKEN_URL);
|
67
|
+
expect(options.body).toContain("f=json");
|
68
|
+
expect(options.body).toContain("client_id=clientId");
|
69
|
+
expect(options.body).toContain(
|
70
|
+
`redirect_uri=${encodeURIComponent(
|
71
|
+
"https://example-app.com/redirect-uri"
|
72
|
+
)}`
|
73
|
+
);
|
74
|
+
expect(options.body).toContain("grant_type=authorization_code");
|
75
|
+
expect(options.body).toContain("code=authorizationCode");
|
76
|
+
expect(response.token).toEqual("token");
|
77
|
+
expect(response.refreshToken).toEqual("refreshToken");
|
78
|
+
expect(response.username).toEqual("Casey");
|
79
|
+
expect(response.expires).toBeGreaterThan(Date.now());
|
80
|
+
expect(response.ssl).toEqual(true);
|
81
|
+
done();
|
82
|
+
})
|
83
|
+
.catch(e => {
|
84
|
+
fail(e);
|
85
|
+
});
|
86
|
+
});
|
87
|
+
|
88
|
+
it("should return ssl: false when there is no ssl property returned from endpoint response", done => {
|
89
|
+
fetchMock.postOnce(TOKEN_URL, {
|
90
|
+
access_token: "token",
|
91
|
+
expires_in: 1800,
|
92
|
+
refresh_token: "refreshToken",
|
93
|
+
username: "Casey"
|
94
|
+
});
|
95
|
+
|
96
|
+
fetchToken(TOKEN_URL, {
|
97
|
+
params: {
|
98
|
+
client_id: "clientId",
|
99
|
+
redirect_uri: "https://example-app.com/redirect-uri",
|
100
|
+
code: "authorizationCode",
|
101
|
+
grant_type: "authorization_code"
|
102
|
+
}
|
103
|
+
})
|
104
|
+
.then(response => {
|
105
|
+
expect(response.ssl).toEqual(false);
|
106
|
+
done();
|
107
|
+
})
|
108
|
+
.catch(e => {
|
109
|
+
fail(e);
|
110
|
+
});
|
111
|
+
});
|
112
|
+
});
|
@@ -0,0 +1,130 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import * as fetchMock from "fetch-mock";
|
5
|
+
import { generateToken } from "../src/index";
|
6
|
+
import { TOMORROW } from "./utils";
|
7
|
+
|
8
|
+
const TOKEN_URL = "https://www.arcgis.com/sharing/rest/generateToken";
|
9
|
+
|
10
|
+
describe("generateToken()", () => {
|
11
|
+
afterEach(fetchMock.restore);
|
12
|
+
|
13
|
+
// to do: remove next time we have a breaking change
|
14
|
+
it("should generate a token for a username and password", done => {
|
15
|
+
fetchMock.postOnce(TOKEN_URL, {
|
16
|
+
token: "token",
|
17
|
+
expires: TOMORROW.getTime()
|
18
|
+
});
|
19
|
+
|
20
|
+
generateToken(TOKEN_URL, {
|
21
|
+
username: "Casey",
|
22
|
+
password: "Jones"
|
23
|
+
})
|
24
|
+
.then(response => {
|
25
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
26
|
+
TOKEN_URL
|
27
|
+
);
|
28
|
+
expect(url).toEqual(TOKEN_URL);
|
29
|
+
expect(options.body).toContain("f=json");
|
30
|
+
expect(options.body).toContain("username=Casey");
|
31
|
+
expect(options.body).toContain("password=Jones");
|
32
|
+
expect(response.token).toEqual("token");
|
33
|
+
expect(response.expires).toEqual(TOMORROW.getTime());
|
34
|
+
done();
|
35
|
+
})
|
36
|
+
.catch(e => {
|
37
|
+
fail(e);
|
38
|
+
});
|
39
|
+
});
|
40
|
+
|
41
|
+
it("should generate a token for a username and password as params", done => {
|
42
|
+
fetchMock.postOnce(TOKEN_URL, {
|
43
|
+
token: "token",
|
44
|
+
expires: TOMORROW.getTime()
|
45
|
+
});
|
46
|
+
|
47
|
+
generateToken(TOKEN_URL, {
|
48
|
+
params: {
|
49
|
+
username: "Casey",
|
50
|
+
password: "Jones"
|
51
|
+
}
|
52
|
+
})
|
53
|
+
.then(response => {
|
54
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall(
|
55
|
+
TOKEN_URL
|
56
|
+
);
|
57
|
+
expect(url).toEqual(TOKEN_URL);
|
58
|
+
expect(options.body).toContain("f=json");
|
59
|
+
expect(options.body).toContain("username=Casey");
|
60
|
+
expect(options.body).toContain("password=Jones");
|
61
|
+
expect(response.token).toEqual("token");
|
62
|
+
expect(response.expires).toEqual(TOMORROW.getTime());
|
63
|
+
done();
|
64
|
+
})
|
65
|
+
.catch(e => {
|
66
|
+
fail(e);
|
67
|
+
});
|
68
|
+
});
|
69
|
+
});
|
70
|
+
|
71
|
+
describe("generateToken() with custom fetch", () => {
|
72
|
+
const oldPromise = Promise;
|
73
|
+
const oldFetch = fetch;
|
74
|
+
const oldFormData = FormData;
|
75
|
+
|
76
|
+
beforeEach(() => {
|
77
|
+
Promise = undefined;
|
78
|
+
FormData = undefined;
|
79
|
+
Function("return this")().fetch = undefined;
|
80
|
+
});
|
81
|
+
|
82
|
+
afterEach(() => {
|
83
|
+
Promise = oldPromise;
|
84
|
+
FormData = oldFormData;
|
85
|
+
Function("return this")().fetch = oldFetch;
|
86
|
+
});
|
87
|
+
|
88
|
+
it("should generate a token for a username and password with custom fetch", done => {
|
89
|
+
Promise = oldPromise;
|
90
|
+
FormData = oldFormData;
|
91
|
+
|
92
|
+
const tokenResponse = {
|
93
|
+
token: "token",
|
94
|
+
expires: TOMORROW.getTime()
|
95
|
+
};
|
96
|
+
|
97
|
+
const MockFetchResponse = {
|
98
|
+
ok: true,
|
99
|
+
json() {
|
100
|
+
return Promise.resolve(tokenResponse);
|
101
|
+
},
|
102
|
+
blob() {
|
103
|
+
return Promise.resolve(new Blob([JSON.stringify(tokenResponse)]));
|
104
|
+
},
|
105
|
+
text() {
|
106
|
+
return Promise.resolve(JSON.stringify(tokenResponse));
|
107
|
+
}
|
108
|
+
};
|
109
|
+
|
110
|
+
const MockFetch = function() {
|
111
|
+
return Promise.resolve(MockFetchResponse);
|
112
|
+
};
|
113
|
+
|
114
|
+
generateToken(TOKEN_URL, {
|
115
|
+
params: {
|
116
|
+
username: "Casey",
|
117
|
+
password: "Jones"
|
118
|
+
},
|
119
|
+
fetch: MockFetch as any
|
120
|
+
})
|
121
|
+
.then(response => {
|
122
|
+
expect(response.token).toEqual(tokenResponse.token);
|
123
|
+
expect(response.expires).toEqual(tokenResponse.expires);
|
124
|
+
done();
|
125
|
+
})
|
126
|
+
.catch(e => {
|
127
|
+
fail(e);
|
128
|
+
});
|
129
|
+
});
|
130
|
+
});
|
@@ -0,0 +1,14 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
export const TOMORROW = (function() {
|
5
|
+
const now = new Date();
|
6
|
+
now.setDate(now.getDate() + 1);
|
7
|
+
return now;
|
8
|
+
})();
|
9
|
+
|
10
|
+
export const YESTERDAY = (function() {
|
11
|
+
const now = new Date();
|
12
|
+
now.setDate(now.getDate() - 1);
|
13
|
+
return now;
|
14
|
+
})();
|
@@ -0,0 +1,61 @@
|
|
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-common-types.svg?style=flat-square
|
6
|
+
[npm-url]: https://www.npmjs.com/package/@esri/arcgis-rest-common-types
|
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-common-types
|
11
|
+
|
12
|
+
> Common TypeScript types for [`@esri/arcgis-rest-*`](https://github.com/Esri/arcgis-rest-js) packages.
|
13
|
+
|
14
|
+
### Example
|
15
|
+
|
16
|
+
```bash
|
17
|
+
npm install @esri/arcgis-rest-common-types
|
18
|
+
```
|
19
|
+
|
20
|
+
```ts
|
21
|
+
import { IPoint } from '@esri/arcgis-rest-common-types';
|
22
|
+
|
23
|
+
const myPoint = { x: -118.409, y: 33.943 } as IPoint
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
### [API Reference](https://esri.github.io/arcgis-rest-js/api/common-types/)
|
28
|
+
|
29
|
+
### Issues
|
30
|
+
|
31
|
+
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.
|
32
|
+
|
33
|
+
If you're looking for help you can also post issues on [GIS Stackexchange](http://gis.stackexchange.com/questions/ask?tags=esri-oss).
|
34
|
+
|
35
|
+
### Versioning
|
36
|
+
|
37
|
+
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.
|
38
|
+
|
39
|
+
For more information on SemVer, please visit <http://semver.org/>.
|
40
|
+
|
41
|
+
### Contributing
|
42
|
+
|
43
|
+
Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](CONTRIBUTING.md).
|
44
|
+
|
45
|
+
### License
|
46
|
+
|
47
|
+
Copyright 2017 Esri
|
48
|
+
|
49
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
50
|
+
you may not use this file except in compliance with the License.
|
51
|
+
You may obtain a copy of the License at
|
52
|
+
|
53
|
+
> http://www.apache.org/licenses/LICENSE-2.0
|
54
|
+
|
55
|
+
Unless required by applicable law or agreed to in writing, software
|
56
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
57
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
58
|
+
See the License for the specific language governing permissions and
|
59
|
+
limitations under the License.
|
60
|
+
|
61
|
+
A copy of the license is available in the repository's [LICENSE](../../LICENSE) file.
|
@@ -0,0 +1,38 @@
|
|
1
|
+
{
|
2
|
+
"name": "@esri/arcgis-rest-common-types",
|
3
|
+
"version": "1.13.0",
|
4
|
+
"description": "Common TypeScript types for @esri/arcgis-rest-* packages.",
|
5
|
+
"types": "dist/types/index.d.ts",
|
6
|
+
"author": "",
|
7
|
+
"license": "Apache-2.0",
|
8
|
+
"files": [
|
9
|
+
"dist/types/*.d.ts"
|
10
|
+
],
|
11
|
+
"scripts": {
|
12
|
+
"prepare": "npm run build",
|
13
|
+
"build": "npm run build:esm",
|
14
|
+
"build:esm": "tsc"
|
15
|
+
},
|
16
|
+
"publishConfig": {
|
17
|
+
"access": "public"
|
18
|
+
},
|
19
|
+
"repository": {
|
20
|
+
"type": "git",
|
21
|
+
"url": "git+https://github.com/Esri/arcgis-rest-js.git"
|
22
|
+
},
|
23
|
+
"contributors": [
|
24
|
+
{
|
25
|
+
"name": "Patrick Arlt",
|
26
|
+
"email": "parlt@esri.com",
|
27
|
+
"url": "http://patrickarlt.com/"
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"name": "Jeff Jacobson",
|
31
|
+
"url": "http://github.com/jeffjacobson"
|
32
|
+
}
|
33
|
+
],
|
34
|
+
"bugs": {
|
35
|
+
"url": "https://github.com/Esri/arcgis-rest-js/issues"
|
36
|
+
},
|
37
|
+
"homepage": "https://github.com/Esri/arcgis-rest-js#readme"
|
38
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
// if you want to get *really* pedantic, nonmember is more _derived_
|
5
|
+
export type GroupMembership = "owner" | "admin" | "member" | "nonmember";
|
6
|
+
|
7
|
+
/**
|
8
|
+
* A [Group](https://developers.arcgis.com/rest/users-groups-and-items/common-parameters.htm) that has not been created yet.
|
9
|
+
*/
|
10
|
+
export interface IGroupAdd {
|
11
|
+
title: string;
|
12
|
+
owner?: string;
|
13
|
+
tags?: string[];
|
14
|
+
description?: string;
|
15
|
+
access?: "private" | "org" | "public";
|
16
|
+
phone?: string;
|
17
|
+
sortField?:
|
18
|
+
| "title"
|
19
|
+
| "owner"
|
20
|
+
| "avgrating"
|
21
|
+
| "numviews"
|
22
|
+
| "created"
|
23
|
+
| "modified";
|
24
|
+
sortOrder?: "asc" | "desc";
|
25
|
+
isViewOnly?: boolean;
|
26
|
+
isInvitationOnly?: boolean;
|
27
|
+
thumbnail?: string;
|
28
|
+
autoJoin?: boolean;
|
29
|
+
snippet?: string;
|
30
|
+
[key: string]: any;
|
31
|
+
}
|
32
|
+
|
33
|
+
/**
|
34
|
+
* Existing Portal [Group](https://developers.arcgis.com/rest/users-groups-and-items/group.htm).
|
35
|
+
*/
|
36
|
+
export interface IGroup extends IGroupAdd {
|
37
|
+
id: string;
|
38
|
+
owner: string;
|
39
|
+
tags: string[];
|
40
|
+
created: number;
|
41
|
+
modified: number;
|
42
|
+
protected: boolean;
|
43
|
+
isInvitationOnly: boolean;
|
44
|
+
isViewOnly: boolean;
|
45
|
+
isOpenData?: boolean;
|
46
|
+
isFav: boolean;
|
47
|
+
autoJoin: boolean;
|
48
|
+
userMembership?: {
|
49
|
+
username?: string;
|
50
|
+
memberType?: GroupMembership;
|
51
|
+
applications?: number;
|
52
|
+
};
|
53
|
+
hasCategorySchema?: boolean;
|
54
|
+
}
|