dce-reactkit 3.11.4 → 3.12.1-beta-cross-server.2
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/.vscode/settings.json +1 -3
- package/README.md +20 -0
- package/dist/cjs/index.js +294 -162
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/helpers/dataSigner.d.ts +38 -0
- package/dist/cjs/types/helpers/genRouteHandler.d.ts +10 -10
- package/dist/cjs/types/helpers/visitEndpointOnAnotherServer/index.d.ts +15 -13
- package/dist/cjs/types/helpers/visitEndpointOnAnotherServer/sendServerToServerRequest.d.ts +0 -6
- package/dist/cjs/types/index.d.ts +3 -2
- package/dist/cjs/types/server/initCrossServerCredentialCollection.d.ts +8 -0
- package/dist/cjs/types/server/initServer.d.ts +11 -0
- package/dist/cjs/types/types/CrossServerCredential.d.ts +11 -0
- package/dist/cjs/types/types/ReactKitErrorCode.d.ts +13 -1
- package/dist/esm/index.js +293 -162
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/helpers/dataSigner.d.ts +38 -0
- package/dist/esm/types/helpers/genRouteHandler.d.ts +10 -10
- package/dist/esm/types/helpers/visitEndpointOnAnotherServer/index.d.ts +15 -13
- package/dist/esm/types/helpers/visitEndpointOnAnotherServer/sendServerToServerRequest.d.ts +0 -6
- package/dist/esm/types/index.d.ts +3 -2
- package/dist/esm/types/server/initCrossServerCredentialCollection.d.ts +8 -0
- package/dist/esm/types/server/initServer.d.ts +11 -0
- package/dist/esm/types/types/CrossServerCredential.d.ts +11 -0
- package/dist/esm/types/types/ReactKitErrorCode.d.ts +13 -1
- package/dist/index.d.ts +62 -35
- package/genEncodedSecret.ts +28 -0
- package/package.json +5 -2
- package/src/components/IntelliTable.tsx +1 -1
- package/src/components/ItemPicker/NestableItemList.tsx +0 -1
- package/src/helpers/dataSigner.ts +232 -0
- package/src/helpers/genRouteHandler.ts +55 -95
- package/src/helpers/visitEndpointOnAnotherServer/index.ts +42 -41
- package/src/helpers/visitEndpointOnAnotherServer/sendServerToServerRequest.ts +3 -5
- package/src/index.ts +4 -2
- package/src/server/initCrossServerCredentialCollection.ts +16 -0
- package/src/server/initServer.ts +18 -0
- package/src/types/CrossServerCredential.ts +16 -0
- package/src/types/ReactKitErrorCode.tsx +13 -1
- package/dist/cjs/types/helpers/getWordCount.d.ts +0 -10
- package/dist/esm/types/helpers/getWordCount.d.ts +0 -10
- package/src/helpers/getWordCount.ts +0 -26
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Sign data with a private reactkit key, package it into a signed data pack
|
|
3
|
+
* @author Gabe Abrams
|
|
4
|
+
* @param opts object containing all arguments
|
|
5
|
+
* @param opts.method the method to sign
|
|
6
|
+
* @param opts.path the http request path
|
|
7
|
+
* @param opts.params the data in the body to sign
|
|
8
|
+
* @param opts.key the reactkit key to sign with
|
|
9
|
+
* @param opts.secret the reactkit secret to sign with
|
|
10
|
+
* @return the signed data
|
|
11
|
+
*/
|
|
12
|
+
export declare const createSignedPack: (opts: {
|
|
13
|
+
method: string;
|
|
14
|
+
path: string;
|
|
15
|
+
params: {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
};
|
|
18
|
+
key: string;
|
|
19
|
+
secret: string;
|
|
20
|
+
}) => string;
|
|
21
|
+
/**
|
|
22
|
+
* Parse signed pack. Throws an error if invalid
|
|
23
|
+
* @author Gabe Abrams
|
|
24
|
+
* @param opts object containing all arguments
|
|
25
|
+
* @param opts.method the method of the data validate
|
|
26
|
+
* @param opts.path the http request path to validate
|
|
27
|
+
* @param opts.scope the name of the scope to validate
|
|
28
|
+
* @param opts.signedPack the signed data pack to validate
|
|
29
|
+
* @returns parsed and validated params
|
|
30
|
+
*/
|
|
31
|
+
export declare const parseSignedPack: (opts: {
|
|
32
|
+
method: string;
|
|
33
|
+
path: string;
|
|
34
|
+
scope: string;
|
|
35
|
+
signedPack: string;
|
|
36
|
+
}) => Promise<{
|
|
37
|
+
[key: string]: any;
|
|
38
|
+
}>;
|
|
@@ -7,14 +7,15 @@ import LogFunction from '../types/LogFunction';
|
|
|
7
7
|
* @param opts.paramTypes map containing the types for each parameter that is
|
|
8
8
|
* included in the request (map: param name => type)
|
|
9
9
|
* @param opts.handler function that processes the request
|
|
10
|
-
* @param [opts.
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
10
|
+
* @param [opts.crossServerScope] the scope associated with this endpoint.
|
|
11
|
+
* If defined, this is a cross-server endpoint, which will never
|
|
12
|
+
* have any launch data, will never check Canvas roles or launch status, and will
|
|
13
|
+
* instead use scopes and reactkit credentials to sign and validate requests.
|
|
14
|
+
* Never start the path with /api/ttm or /api/admin if the endpoint is a cross-server
|
|
15
|
+
* endpoint because those roles will not be validated
|
|
16
|
+
* @param [opts.skipSessionCheck=true if crossServerScope defined] if true, skip
|
|
17
|
+
* the session check (allow users to not be logged in and launched via LTI).
|
|
18
|
+
* If crossServerScope is defined, this is always true
|
|
18
19
|
* @param [opts.unhandledErrorMessagePrefix] if included, when an error that
|
|
19
20
|
* is not of type ErrorWithCode is thrown, the client will receive an error
|
|
20
21
|
* where the error message is prefixed with this string. For example,
|
|
@@ -68,9 +69,8 @@ declare const genRouteHandler: (opts: {
|
|
|
68
69
|
}) => void;
|
|
69
70
|
logServerEvent: LogFunction;
|
|
70
71
|
}) => any;
|
|
72
|
+
crossServerScope?: string | undefined;
|
|
71
73
|
skipSessionCheck?: boolean | undefined;
|
|
72
|
-
allowedHosts?: string | string[] | undefined;
|
|
73
|
-
bannedHosts?: string | string[] | undefined;
|
|
74
74
|
unhandledErrorMessagePrefix?: string | undefined;
|
|
75
75
|
}) => (req: any, res: any, next: () => void) => Promise<undefined>;
|
|
76
76
|
export default genRouteHandler;
|
|
@@ -1,24 +1,26 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* dce-reactkit [for server only]
|
|
2
|
+
* Visit an endpoint on another server
|
|
4
3
|
* @author Gabe Abrams
|
|
5
4
|
* @param opts object containing all arguments
|
|
6
|
-
* @param opts.
|
|
7
|
-
* @param opts.path
|
|
8
|
-
* @param
|
|
9
|
-
* @param [opts.
|
|
10
|
-
*
|
|
11
|
-
* @
|
|
5
|
+
* @param opts.method the method of the endpoint
|
|
6
|
+
* @param opts.path the path of the other server's endpoint
|
|
7
|
+
* @param opts.host the host of the other server
|
|
8
|
+
* @param [opts.key=process.env.REACTKIT_CROSS_SERVER_CREDENTIAL_KEY] reactkit cross-server
|
|
9
|
+
* credential key
|
|
10
|
+
* @param [opts.secret=process.env.REACTKIT_CROSS_SERVER_CREDENTIAL_SECRET reactkit cross-server
|
|
11
|
+
* credential secret
|
|
12
|
+
* @param [opts.params={}] query/body parameters to include
|
|
13
|
+
* @param [opts.responseType=JSON] the response type from the other server
|
|
12
14
|
*/
|
|
13
15
|
declare const visitEndpointOnAnotherServer: (opts: {
|
|
14
|
-
|
|
16
|
+
method: 'GET' | 'POST' | 'DELETE' | 'PUT';
|
|
15
17
|
path: string;
|
|
16
|
-
|
|
18
|
+
host: string;
|
|
19
|
+
key?: string | undefined;
|
|
20
|
+
secret?: string | undefined;
|
|
17
21
|
params?: {
|
|
18
22
|
[x: string]: any;
|
|
19
23
|
} | undefined;
|
|
20
|
-
|
|
21
|
-
[x: string]: any;
|
|
22
|
-
} | undefined;
|
|
24
|
+
responseType?: "Text" | "JSON" | undefined;
|
|
23
25
|
}) => Promise<any>;
|
|
24
26
|
export default visitEndpointOnAnotherServer;
|
|
@@ -6,9 +6,6 @@
|
|
|
6
6
|
* @param [opts.host] host to send request to
|
|
7
7
|
* @param [opts.method=GET] http method to use
|
|
8
8
|
* @param [opts.params] body/data to include in the request
|
|
9
|
-
* @param [opts.headers] headers to include in the request
|
|
10
|
-
* @param [opts.sendCrossDomainCredentials=true if in development mode] if true,
|
|
11
|
-
* send cross-domain credentials even if not in dev mode
|
|
12
9
|
* @param [opts.responseType=JSON] expected response type
|
|
13
10
|
* @returns { body, status, headers } on success
|
|
14
11
|
*/
|
|
@@ -19,9 +16,6 @@ declare const sendServerToServerRequest: (opts: {
|
|
|
19
16
|
params?: {
|
|
20
17
|
[x: string]: any;
|
|
21
18
|
} | undefined;
|
|
22
|
-
headers?: {
|
|
23
|
-
[x: string]: any;
|
|
24
|
-
} | undefined;
|
|
25
19
|
responseType?: "Text" | "JSON" | undefined;
|
|
26
20
|
}) => Promise<{
|
|
27
21
|
body: any;
|
|
@@ -54,6 +54,7 @@ import onlyKeepLetters from './helpers/onlyKeepLetters';
|
|
|
54
54
|
import parallelLimit from './helpers/parallelLimit';
|
|
55
55
|
import logClientEvent, { setClientEventMetadataPopulator } from './helpers/logClientEvent';
|
|
56
56
|
import initLogCollection from './server/initLogCollection';
|
|
57
|
+
import initCrossServerCredentialCollection from './server/initCrossServerCredentialCollection';
|
|
57
58
|
import getMonthName from './helpers/getMonthName';
|
|
58
59
|
import genCSV from './helpers/genCSV';
|
|
59
60
|
import canReviewLogs from './helpers/canReviewLogs';
|
|
@@ -79,7 +80,6 @@ import someAsync from './helpers/asyncArrayFunctions/someAsync';
|
|
|
79
80
|
import capitalize from './helpers/capitalize';
|
|
80
81
|
import shuffleArray from './helpers/shuffleArray';
|
|
81
82
|
import visitEndpointOnAnotherServer from './helpers/visitEndpointOnAnotherServer';
|
|
82
|
-
import getWordCount from './helpers/getWordCount';
|
|
83
83
|
import ModalButtonType from './types/ModalButtonType';
|
|
84
84
|
import ModalSize from './types/ModalSize';
|
|
85
85
|
import ModalType from './types/ModalType';
|
|
@@ -96,8 +96,9 @@ import LogMetadataType from './types/LogMetadataType';
|
|
|
96
96
|
import LogFunction from './types/LogFunction';
|
|
97
97
|
import IntelliTableColumn from './types/IntelliTableColumn';
|
|
98
98
|
import DropdownItemType from './types/DropdownItemType';
|
|
99
|
+
import CrossServerCredential from './types/CrossServerCredential';
|
|
99
100
|
import PickableItem from './components/ItemPicker/types/PickableItem';
|
|
100
101
|
import DBEntry from './components/DBEntryManagerPanel/types/DBEntry';
|
|
101
102
|
import DBEntryField from './components/DBEntryManagerPanel/types/DBEntryField';
|
|
102
103
|
import DBEntryFieldType from './components/DBEntryManagerPanel/types/DBEntryFieldType';
|
|
103
|
-
export { AppWrapper, LoadingSpinner, ErrorBox, Modal, TabBox, RadioButton, CheckboxButton, ButtonInputGroup, SimpleDateChooser, Drawer, PopSuccessMark, PopFailureMark, PopPendingMark, CopiableBox, ItemPicker, LogReviewer, IntelliTable, CSVDownloadButton, DBEntryManagerPanel, Tooltip, ToggleSwitch, AutoscrollToBottomContainer, MultiSwitch, Dropdown, alert, prompt, confirm, showFatalError, ErrorWithCode, MINUTE_IN_MS, HOUR_IN_MS, DAY_IN_MS, DynamicWord, abbreviate, avg, ceilToNumDecimals, floorToNumDecimals, forceNumIntoBounds, padDecimalZeros, padZerosLeft, roundToNumDecimals, sum, waitMs, getOrdinal, getTimeInfoInET, stubServerEndpoint, startMinWait, getHumanReadableDate, getPartOfDay, stringsToHumanReadableList, onlyKeepLetters, parallelLimit, getMonthName, genCSV, canReviewLogs, isMobileOrTablet, extractProp, compareArraysByProp, genCommaList, validateEmail, validatePhoneNumber, validateString, getLocalTimeInfo, idify, makeLinksClickable, prefixWithAOrAn, everyAsync, filterAsync, forEachAsync, mapAsync, someAsync, capitalize, shuffleArray,
|
|
104
|
+
export { AppWrapper, LoadingSpinner, ErrorBox, Modal, TabBox, RadioButton, CheckboxButton, ButtonInputGroup, SimpleDateChooser, Drawer, PopSuccessMark, PopFailureMark, PopPendingMark, CopiableBox, ItemPicker, LogReviewer, IntelliTable, CSVDownloadButton, DBEntryManagerPanel, Tooltip, ToggleSwitch, AutoscrollToBottomContainer, MultiSwitch, Dropdown, alert, prompt, confirm, showFatalError, ErrorWithCode, MINUTE_IN_MS, HOUR_IN_MS, DAY_IN_MS, DynamicWord, abbreviate, avg, ceilToNumDecimals, floorToNumDecimals, forceNumIntoBounds, padDecimalZeros, padZerosLeft, roundToNumDecimals, sum, waitMs, getOrdinal, getTimeInfoInET, stubServerEndpoint, startMinWait, getHumanReadableDate, getPartOfDay, stringsToHumanReadableList, onlyKeepLetters, parallelLimit, getMonthName, genCSV, canReviewLogs, isMobileOrTablet, extractProp, compareArraysByProp, genCommaList, validateEmail, validatePhoneNumber, validateString, getLocalTimeInfo, idify, makeLinksClickable, prefixWithAOrAn, everyAsync, filterAsync, forEachAsync, mapAsync, someAsync, capitalize, shuffleArray, initClient, visitServerEndpoint, logClientEvent, addFatalErrorHandler, leaveToURL, combineClassNames, useForceRender, setClientEventMetadataPopulator, initServer, genRouteHandler, handleError, handleSuccess, initLogCollection, initCrossServerCredentialCollection, addDBEditorEndpoints, visitEndpointOnAnotherServer, ModalButtonType, ModalSize, ModalType, ReactKitErrorCode, Variant, DayOfWeek, Log, LogType, LogSource, LogAction, LogBuiltInMetadata, LogMetadataType, LogFunction, IntelliTableColumn, DropdownItemType, CrossServerCredential, PickableItem, DBEntry, DBEntryField, DBEntryFieldType, ParamType, };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Initialize a cross-server credential collection given the dce-mango Collection class
|
|
3
|
+
* @author Gabe Abrams
|
|
4
|
+
* @param Collection the Collection class from dce-mango
|
|
5
|
+
* @returns initialized logCollection
|
|
6
|
+
*/
|
|
7
|
+
declare const initCrossServerCredentialCollection: (Collection: any) => any;
|
|
8
|
+
export default initCrossServerCredentialCollection;
|
|
@@ -16,6 +16,13 @@ export declare const cacclGetLaunchInfo: GetLaunchInfoFunction;
|
|
|
16
16
|
* have a log collection (yet)
|
|
17
17
|
*/
|
|
18
18
|
export declare const internalGetLogCollection: () => any;
|
|
19
|
+
/**
|
|
20
|
+
* Get cross-server credential collection
|
|
21
|
+
* @author Gabe Abrams
|
|
22
|
+
* @return cross-server credential collection if one was included during launch or null
|
|
23
|
+
* if we don't have a cross-server credential collection (yet)
|
|
24
|
+
*/
|
|
25
|
+
export declare const internalGetCrossServerCredentialCollection: () => any;
|
|
19
26
|
/**
|
|
20
27
|
* Prepare dce-reactkit to run on the server
|
|
21
28
|
* @author Gabe Abrams
|
|
@@ -32,11 +39,15 @@ export declare const internalGetLogCollection: () => any;
|
|
|
32
39
|
* userIds are allowed to review logs. If a dce-mango collection, only
|
|
33
40
|
* Canvas admins with entries in that collection ({ userId, ...}) are allowed
|
|
34
41
|
* to review logs
|
|
42
|
+
* @param [opts.crossServerCredentialCollection] mongo collection from dce-mango to use for
|
|
43
|
+
* storing cross-server credentials. If none is included, cross-server credentials
|
|
44
|
+
* are not supported
|
|
35
45
|
*/
|
|
36
46
|
declare const initServer: (opts: {
|
|
37
47
|
app: any;
|
|
38
48
|
getLaunchInfo: GetLaunchInfoFunction;
|
|
39
49
|
logCollection?: any;
|
|
40
50
|
logReviewAdmins?: (number[] | any);
|
|
51
|
+
crossServerCredentialCollection?: any;
|
|
41
52
|
}) => void;
|
|
42
53
|
export default initServer;
|
|
@@ -20,6 +20,18 @@ declare enum ReactKitErrorCode {
|
|
|
20
20
|
SessionExpiredMessageGottenBeforeReactKitReady = "DRK13",
|
|
21
21
|
NotConnected = "DRK14",
|
|
22
22
|
SelfSigned = "DRK15",
|
|
23
|
-
ResponseParseError = "DRK16"
|
|
23
|
+
ResponseParseError = "DRK16",
|
|
24
|
+
PackUnparseable = "DRK28",
|
|
25
|
+
PackInvalidMethod = "DRK19",
|
|
26
|
+
PackInvalidPath = "DRK20",
|
|
27
|
+
PackInvalidCollection = "DRK21",
|
|
28
|
+
PackInvalidCredential = "DRK23",
|
|
29
|
+
PackInvalidScope = "DRK22",
|
|
30
|
+
PackInvalidTimestamp = "DRK24",
|
|
31
|
+
PackInvalidSignature = "DRK25",
|
|
32
|
+
PackInvalidBody = "DRK26",
|
|
33
|
+
CrossServerNoCredentialsToSignWith = "DRK27",
|
|
34
|
+
CrossServerNoPack = "DRK29",
|
|
35
|
+
CrossServerNoCredentialEncodingSalt = "DRK30"
|
|
24
36
|
}
|
|
25
37
|
export default ReactKitErrorCode;
|