dce-reactkit 3.0.0-beta.25 → 3.0.0-beta.27

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.
@@ -0,0 +1,323 @@
1
+ // Import caccl functions
2
+ import { cacclGetLaunchInfo } from '../server/initServer';
3
+
4
+ // Import shared types
5
+ import ReactKitErrorCode from '../types/ReactKitErrorCode';
6
+ import ParamType from '../types/ParamType';
7
+
8
+ // Import helpers
9
+ import handleError from './handleError';
10
+ import handleSuccess from './handleSuccess';
11
+
12
+ /**
13
+ * Generate an express API route handler
14
+ * @author Gabe Abrams
15
+ * @param params map containing parameters that are included in the request
16
+ * (map: param name => type)
17
+ * @param handler function that processes the request
18
+ * @returns express route handler that takes the following arguments:
19
+ * params (map: param name => value), handleSuccess (function for handling
20
+ * successful requests), handleError (function for handling failed requests),
21
+ * req (express request object), res (express response object)
22
+ */
23
+ const genRouteHandler = (
24
+ params: {
25
+ [k: string]: ParamType
26
+ },
27
+ handler: (
28
+ opts: {
29
+ params: {
30
+ [k: string]: any
31
+ },
32
+ handleSuccess: (body: any) => void,
33
+ handleError: (error: any) => void,
34
+ req: any,
35
+ res: any,
36
+ },
37
+ ) => void,
38
+ ) => {
39
+ // Return a route handler
40
+ return async (req: any, res: any) => {
41
+ // Output params
42
+ const output: { [k in string]: any } = {};
43
+
44
+ /*----------------------------------------*/
45
+ /* Parse Params */
46
+ /*----------------------------------------*/
47
+
48
+ // Process items one by one
49
+ const paramList = Object.entries(params);
50
+ for (let i = 0; i < paramList.length; i++) {
51
+ const [name, type] = paramList[i];
52
+
53
+ // Find the value as a string
54
+ const value = (
55
+ req.params[name]
56
+ || req.query[name]
57
+ || req.body[name]
58
+ );
59
+
60
+ // Parse
61
+ if (type === ParamType.Boolean || type === ParamType.BooleanOptional) {
62
+ // Boolean
63
+
64
+ // Handle case where value doesn't exist
65
+ if (value === undefined) {
66
+ if (type === ParamType.BooleanOptional) {
67
+ output[name] = undefined;
68
+ } else {
69
+ return handleError(
70
+ res,
71
+ {
72
+ message: `Parameter ${name} is required, but it was not included.`,
73
+ code: ReactKitErrorCode.MissingParameter,
74
+ status: 422,
75
+ },
76
+ );
77
+ }
78
+ } else {
79
+ // Value exists
80
+
81
+ // Simplify value
82
+ const simpleVal = (
83
+ String(value)
84
+ .trim()
85
+ .toLowerCase()
86
+ );
87
+
88
+ // Parse
89
+ output[name] = (
90
+ [
91
+ 'true',
92
+ 'yes',
93
+ 'y',
94
+ '1',
95
+ 't',
96
+ ].indexOf(simpleVal) >= 0
97
+ );
98
+ }
99
+ } else if (type === ParamType.Float || type === ParamType.FloatOptional) {
100
+ // Float
101
+
102
+ // Handle case where value doesn't exist
103
+ if (value === undefined) {
104
+ if (type === ParamType.FloatOptional) {
105
+ output[name] = undefined;
106
+ } else {
107
+ return handleError(
108
+ res,
109
+ {
110
+ message: `Parameter ${name} is required, but it was not included.`,
111
+ code: ReactKitErrorCode.MissingParameter,
112
+ status: 422,
113
+ },
114
+ );
115
+ }
116
+ } else if (!Number.isNaN(Number.parseFloat(String(value)))) {
117
+ // Value is a number
118
+ output[name] = Number.parseFloat(String(value));
119
+ } else {
120
+ // Issue!
121
+ return handleError(
122
+ res,
123
+ {
124
+ message: `Request data was malformed: ${name} was not a valid float.`,
125
+ code: ReactKitErrorCode.InvalidParameter,
126
+ status: 422,
127
+ },
128
+ );
129
+ }
130
+ } else if (type === ParamType.Int || type === ParamType.IntOptional) {
131
+ // Int
132
+
133
+ // Handle case where value doesn't exist
134
+ if (value === undefined) {
135
+ if (type === ParamType.IntOptional) {
136
+ output[name] = undefined;
137
+ } else {
138
+ return handleError(
139
+ res,
140
+ {
141
+ message: `Parameter ${name} is required, but it was not included.`,
142
+ code: ReactKitErrorCode.MissingParameter,
143
+ status: 422,
144
+ },
145
+ );
146
+ }
147
+ } else if (!Number.isNaN(Number.parseInt(String(value), 10))) {
148
+ // Value is a number
149
+ output[name] = Number.parseInt(String(value), 10);
150
+ } else {
151
+ // Issue!
152
+ return handleError(
153
+ res,
154
+ {
155
+ message: `Request data was malformed: ${name} was not a valid int.`,
156
+ code: ReactKitErrorCode.InvalidParameter,
157
+ status: 422,
158
+ },
159
+ );
160
+ }
161
+ } else if (type === ParamType.JSON || type === ParamType.JSONOptional) {
162
+ // Stringified JSON
163
+
164
+ // Handle case where value doesn't exist
165
+ if (value === undefined) {
166
+ if (type === ParamType.JSONOptional) {
167
+ output[name] = undefined;
168
+ } else {
169
+ return handleError(
170
+ res,
171
+ {
172
+ message: `Parameter ${name} is required, but it was not included.`,
173
+ code: ReactKitErrorCode.MissingParameter,
174
+ status: 422,
175
+ },
176
+ );
177
+ }
178
+ } else {
179
+ // Value exists
180
+
181
+ // Parse
182
+ try {
183
+ output[name] = JSON.parse(String(value));
184
+ } catch (err) {
185
+ return handleError(
186
+ res,
187
+ {
188
+ message: `Request data was malformed: ${name} was not a valid JSON payload.`,
189
+ code: ReactKitErrorCode.InvalidParameter,
190
+ status: 422,
191
+ },
192
+ );
193
+ }
194
+ }
195
+ } else if (type === ParamType.String || type === ParamType.StringOptional) {
196
+ // String
197
+
198
+ // Handle case where value doesn't exist
199
+ if (value === undefined) {
200
+ if (type === ParamType.StringOptional) {
201
+ output[name] = undefined;
202
+ } else {
203
+ return handleError(
204
+ res,
205
+ {
206
+ message: `Parameter ${name} is required, but it was not included.`,
207
+ code: ReactKitErrorCode.MissingParameter,
208
+ status: 422,
209
+ },
210
+ );
211
+ }
212
+ } else {
213
+ // Value exists
214
+
215
+ // Leave as is
216
+ output[name] = value;
217
+ }
218
+ } else {
219
+ // No valid data type
220
+ return handleError(
221
+ res,
222
+ {
223
+ message: `An internal error occurred: we could not determine the type of ${name}.`,
224
+ code: ReactKitErrorCode.InvalidParameter,
225
+ status: 422,
226
+ },
227
+ );
228
+ }
229
+ }
230
+
231
+ /*----------------------------------------*/
232
+ /* Launch Info */
233
+ /*----------------------------------------*/
234
+
235
+ // Get launch info
236
+ const { launched, launchInfo } = cacclGetLaunchInfo(req);
237
+ if (!launched || !launchInfo) {
238
+ return handleError(
239
+ res,
240
+ {
241
+ message: 'Your session has expired. Please refresh the page and try again.',
242
+ code: ReactKitErrorCode.SessionExpired,
243
+ status: 440,
244
+ },
245
+ );
246
+ }
247
+
248
+ // Error if user info cannot be found
249
+ if (
250
+ !launchInfo.userId
251
+ || !launchInfo.userFirstName
252
+ || !launchInfo.userLastName
253
+ || (
254
+ launchInfo.notInCourse
255
+ && !launchInfo.isAdmin
256
+ )
257
+ || (
258
+ !launchInfo.isTTM
259
+ && !launchInfo.isLearner
260
+ && !launchInfo.isAdmin
261
+ )
262
+ ) {
263
+ return handleError(
264
+ res,
265
+ {
266
+ message: 'Your session was invalid. Please refresh the page and try again.',
267
+ code: ReactKitErrorCode.SessionExpired,
268
+ status: 440,
269
+ },
270
+ );
271
+ }
272
+
273
+ // Add launch info to output
274
+ output.userId = launchInfo.userId;
275
+ output.userFirstName = launchInfo.userFirstName;
276
+ output.userLastName = launchInfo.userLastName;
277
+ output.isLearner = !!launchInfo.isLearner;
278
+ output.isTTM = !!launchInfo.isTTM;
279
+ output.isAdmin = !!launchInfo.isAdmin;
280
+ output.isWatchingInPrivate = !!(req.session.isWatchingInPrivate);
281
+
282
+ /*----------------------------------------*/
283
+ /* Require Course Consistency */
284
+ /*----------------------------------------*/
285
+
286
+ // Make sure the user actually launched from the appropriate course
287
+ if (
288
+ output.courseId
289
+ && launchInfo.courseId
290
+ && output.courseId !== launchInfo.courseId
291
+ && !output.isTTM
292
+ && !output.isAdmin
293
+ ) {
294
+ // Course of interest is not the launch course
295
+ return handleError(
296
+ res,
297
+ {
298
+ message: 'You switched sessions by opening Immersive Classroom in another tab. Please refresh the page and try again.',
299
+ code: ReactKitErrorCode.WrongCourse,
300
+ status: 401,
301
+ },
302
+ );
303
+ }
304
+
305
+ /*------------------------------------------------------------------------*/
306
+ /* Call handler */
307
+ /*------------------------------------------------------------------------*/
308
+
309
+ handler({
310
+ params: output,
311
+ handleSuccess: (body: any) => {
312
+ return handleSuccess(res, body);
313
+ },
314
+ handleError: (error: any) => {
315
+ return handleError(res, error);
316
+ },
317
+ req,
318
+ res,
319
+ });
320
+ };
321
+ };
322
+
323
+ export default genRouteHandler;
@@ -1,10 +1,10 @@
1
- // Initialize caccl
2
- import { sendRequest } from 'caccl/client';
3
-
4
1
  // Import custom error
5
2
  import ErrorWithCode from '../errors/ErrorWithCode';
6
3
  import ReactKitErrorCode from '../types/ReactKitErrorCode';
7
4
 
5
+ // Import helpers from app wrapper
6
+ import { cacclSendRequest } from '../components/AppWrapper';
7
+
8
8
  /*------------------------------------------------------------------------*/
9
9
  /* Listener */
10
10
  /*------------------------------------------------------------------------*/
@@ -45,7 +45,7 @@ const visitServerEndpoint = async (
45
45
  },
46
46
  ): Promise<any> => {
47
47
  // Send the request
48
- const response = await sendRequest({
48
+ const response = await cacclSendRequest({
49
49
  path: opts.path,
50
50
  method: opts.method ?? 'GET',
51
51
  params: opts.params,
package/src/index.ts CHANGED
@@ -19,6 +19,10 @@ import padZerosLeft from './helpers/padZerosLeft';
19
19
  import roundToNumDecimals from './helpers/roundToNumDecimals';
20
20
  import sum from './helpers/sum';
21
21
  import waitMs from './helpers/waitMs';
22
+ import visitServerEndpoint from './helpers/visitServerEndpoint';
23
+ import genRouteHandler from './helpers/genRouteHandler';
24
+ import handleError from './helpers/handleError';
25
+ import handleSuccess from './helpers/handleSuccess';
22
26
 
23
27
  // Import types
24
28
  import ModalButtonType from './types/ModalButtonType';
@@ -26,6 +30,7 @@ import ModalSize from './types/ModalSize';
26
30
  import ModalType from './types/ModalType';
27
31
  import ReactKitErrorCode from './types/ReactKitErrorCode';
28
32
  import Variant from './types/Variant';
33
+ import ParamType from './types/ParamType';
29
34
 
30
35
  // Export each item
31
36
  export {
@@ -52,10 +57,18 @@ export {
52
57
  roundToNumDecimals,
53
58
  sum,
54
59
  waitMs,
60
+ // Client helpers
61
+ visitServerEndpoint,
62
+ // Server helpers
63
+ genRouteHandler,
64
+ handleError,
65
+ handleSuccess,
55
66
  // Types
56
67
  ModalButtonType,
57
68
  ModalSize,
58
69
  ModalType,
59
70
  ReactKitErrorCode,
60
71
  Variant,
72
+ // Server types
73
+ ParamType,
61
74
  };
@@ -0,0 +1,53 @@
1
+ // Import custom error
2
+ import ErrorWithCode from '../errors/ErrorWithCode';
3
+ import ReactKitErrorCode from '../types/ReactKitErrorCode';
4
+
5
+ // Types
6
+ type GetLaunchInfoFunction = (req: any) => {
7
+ launched: boolean,
8
+ launchInfo?: any,
9
+ };
10
+
11
+ // Stored copy of caccl functions
12
+ let _cacclGetLaunchInfo: GetLaunchInfoFunction;
13
+
14
+ /*------------------------------------------------------------------------*/
15
+ /* Helpers */
16
+ /*------------------------------------------------------------------------*/
17
+
18
+ /**
19
+ * Get launch info via CACCL
20
+ * @author Gabe Abrams
21
+ * @param req express request object
22
+ * @returns object { launched, launchInfo }
23
+ */
24
+ export const cacclGetLaunchInfo: GetLaunchInfoFunction = (req: any) => {
25
+ if (!_cacclGetLaunchInfo) {
26
+ throw new ErrorWithCode(
27
+ 'Could not get launch info because server was not initialized with dce-reactkit\'s initServer function',
28
+ ReactKitErrorCode.NoCACCLGetLaunchInfoFunction,
29
+ );
30
+ }
31
+
32
+ return _cacclGetLaunchInfo(req);
33
+ };
34
+
35
+ /*------------------------------------------------------------------------*/
36
+ /* Main */
37
+ /*------------------------------------------------------------------------*/
38
+
39
+ /**
40
+ * Prepare dce-reactkit to run on the server
41
+ * @author Gabe Abrams
42
+ * @param opts object containing all arguments
43
+ * @param opts.getLaunchInfo CACCL LTI's get launch info function
44
+ */
45
+ const initServer = (
46
+ opts: {
47
+ getLaunchInfo: GetLaunchInfoFunction,
48
+ },
49
+ ) => {
50
+ _cacclGetLaunchInfo = opts.getLaunchInfo;
51
+ };
52
+
53
+ export default initServer;
@@ -1,4 +1,4 @@
1
- // Highest error code = DRK2
1
+ // Highest error code = DRK8
2
2
 
3
3
  /**
4
4
  * List of error codes built into the react kit
@@ -11,6 +11,8 @@ enum ReactKitErrorCode {
11
11
  MissingParameter = 'DRK4',
12
12
  InvalidParameter = 'DRK5',
13
13
  WrongCourse = 'DRK6',
14
+ NoCACCLSendRequestFunction = 'DRK7',
15
+ NoCACCLGetLaunchInfoFunction = 'DRK8',
14
16
  }
15
17
 
16
18
  export default ReactKitErrorCode;
@@ -1,21 +0,0 @@
1
- import ParamType from '../types/ParamType';
2
- /**
3
- * Parse express request params and body
4
- * @author Gabe Abrams
5
- * @param opts object containing all arguments
6
- * @param opts.req express request instance
7
- * @param opts.res express response instance
8
- * @param opts.params map of parameters that should be parsed out of the request
9
- * @returns parsed params + user info from session (if it exists) or undefined
10
- * if an error occurred
11
- */
12
- declare const parseRequest: (opts: {
13
- req: any;
14
- res: any;
15
- params: {
16
- [x: string]: ParamType;
17
- };
18
- }) => {
19
- [x: string]: any;
20
- } | undefined;
21
- export default parseRequest;
@@ -1,21 +0,0 @@
1
- import ParamType from '../types/ParamType';
2
- /**
3
- * Parse express request params and body
4
- * @author Gabe Abrams
5
- * @param opts object containing all arguments
6
- * @param opts.req express request instance
7
- * @param opts.res express response instance
8
- * @param opts.params map of parameters that should be parsed out of the request
9
- * @returns parsed params + user info from session (if it exists) or undefined
10
- * if an error occurred
11
- */
12
- declare const parseRequest: (opts: {
13
- req: any;
14
- res: any;
15
- params: {
16
- [x: string]: ParamType;
17
- };
18
- }) => {
19
- [x: string]: any;
20
- } | undefined;
21
- export default parseRequest;