@learnpack/learnpack 2.1.25 → 2.1.27

Sign up to get free protection for your applications and to get access to all the features.
Files changed (187) hide show
  1. package/README.md +16 -16
  2. package/bin/run +17 -17
  3. package/bin/run.cmd +3 -3
  4. package/oclif.manifest.json +1 -1
  5. package/package.json +139 -138
  6. package/src/commands/audit.ts +134 -109
  7. package/src/commands/clean.ts +29 -29
  8. package/src/commands/download.ts +62 -62
  9. package/src/commands/init.ts +39 -39
  10. package/src/commands/login.ts +42 -42
  11. package/src/commands/logout.ts +43 -43
  12. package/src/commands/publish.ts +107 -107
  13. package/src/commands/start.ts +264 -234
  14. package/src/commands/test.ts +85 -85
  15. package/src/index.ts +1 -1
  16. package/src/managers/config/allowed_files.ts +29 -29
  17. package/src/managers/config/defaults.ts +4 -2
  18. package/src/managers/config/exercise.ts +309 -302
  19. package/src/managers/config/index.ts +159 -138
  20. package/src/managers/file.ts +178 -169
  21. package/src/managers/gitpod.ts +84 -84
  22. package/src/managers/server/index.ts +78 -69
  23. package/src/managers/server/routes.ts +139 -90
  24. package/src/managers/session.ts +147 -118
  25. package/src/managers/socket.ts +252 -239
  26. package/src/managers/test.ts +83 -83
  27. package/src/models/action.ts +10 -3
  28. package/src/models/config-manager.ts +23 -23
  29. package/src/models/config.ts +9 -2
  30. package/src/models/counter.ts +11 -11
  31. package/src/models/errors.ts +22 -22
  32. package/src/models/exercise-obj.ts +6 -3
  33. package/src/models/file.ts +5 -5
  34. package/src/models/findings.ts +18 -18
  35. package/src/models/flags.ts +10 -10
  36. package/src/models/front-matter.ts +11 -11
  37. package/src/models/gitpod-data.ts +19 -19
  38. package/src/models/language.ts +4 -4
  39. package/src/models/package.ts +7 -7
  40. package/src/models/plugin-config.ts +17 -17
  41. package/src/models/session.ts +29 -26
  42. package/src/models/socket.ts +54 -48
  43. package/src/models/status.ts +16 -15
  44. package/src/models/success-types.ts +1 -1
  45. package/src/plugin/command/compile.ts +17 -17
  46. package/src/plugin/command/test.ts +30 -30
  47. package/src/plugin/index.ts +6 -6
  48. package/src/plugin/plugin.ts +94 -94
  49. package/src/plugin/utils.ts +87 -87
  50. package/src/types/node-fetch.d.ts +1 -1
  51. package/src/ui/download.ts +71 -71
  52. package/src/utils/BaseCommand.ts +48 -48
  53. package/src/utils/SessionCommand.ts +48 -48
  54. package/src/utils/api.ts +246 -194
  55. package/src/utils/audit.ts +392 -395
  56. package/src/utils/console.ts +24 -24
  57. package/src/utils/errors.ts +117 -117
  58. package/src/utils/exercisesQueue.ts +51 -51
  59. package/src/utils/fileQueue.ts +198 -198
  60. package/src/utils/misc.ts +23 -23
  61. package/src/utils/templates/gitignore.txt +19 -19
  62. package/src/utils/templates/incremental/.learn/exercises/01-hello-world/README.es.md +24 -24
  63. package/src/utils/templates/incremental/.learn/exercises/01-hello-world/README.md +24 -24
  64. package/src/utils/templates/incremental/README.ejs +4 -4
  65. package/src/utils/templates/incremental/README.es.ejs +4 -4
  66. package/src/utils/templates/isolated/01-hello-world/README.es.md +26 -26
  67. package/src/utils/templates/isolated/01-hello-world/README.md +26 -26
  68. package/src/utils/templates/isolated/README.ejs +4 -4
  69. package/src/utils/templates/isolated/README.es.ejs +4 -4
  70. package/src/utils/templates/no-grading/README.ejs +4 -4
  71. package/src/utils/templates/no-grading/README.es.ejs +4 -4
  72. package/src/utils/validators.ts +18 -18
  73. package/src/utils/watcher.ts +14 -14
  74. package/lib/commands/audit.d.ts +0 -6
  75. package/lib/commands/audit.js +0 -317
  76. package/lib/commands/clean.d.ts +0 -8
  77. package/lib/commands/clean.js +0 -25
  78. package/lib/commands/download.d.ts +0 -13
  79. package/lib/commands/download.js +0 -55
  80. package/lib/commands/init.d.ts +0 -9
  81. package/lib/commands/init.js +0 -123
  82. package/lib/commands/login.d.ts +0 -14
  83. package/lib/commands/login.js +0 -37
  84. package/lib/commands/logout.d.ts +0 -14
  85. package/lib/commands/logout.js +0 -37
  86. package/lib/commands/publish.d.ts +0 -14
  87. package/lib/commands/publish.js +0 -82
  88. package/lib/commands/start.d.ts +0 -7
  89. package/lib/commands/start.js +0 -165
  90. package/lib/commands/test.d.ts +0 -6
  91. package/lib/commands/test.js +0 -62
  92. package/lib/index.d.ts +0 -1
  93. package/lib/index.js +0 -4
  94. package/lib/managers/config/allowed_files.d.ts +0 -5
  95. package/lib/managers/config/allowed_files.js +0 -30
  96. package/lib/managers/config/defaults.d.ts +0 -37
  97. package/lib/managers/config/defaults.js +0 -38
  98. package/lib/managers/config/exercise.d.ts +0 -36
  99. package/lib/managers/config/exercise.js +0 -230
  100. package/lib/managers/config/index.d.ts +0 -3
  101. package/lib/managers/config/index.js +0 -302
  102. package/lib/managers/file.d.ts +0 -13
  103. package/lib/managers/file.js +0 -134
  104. package/lib/managers/gitpod.d.ts +0 -3
  105. package/lib/managers/gitpod.js +0 -67
  106. package/lib/managers/server/index.d.ts +0 -6
  107. package/lib/managers/server/index.js +0 -51
  108. package/lib/managers/server/routes.d.ts +0 -4
  109. package/lib/managers/server/routes.js +0 -167
  110. package/lib/managers/session.d.ts +0 -3
  111. package/lib/managers/session.js +0 -104
  112. package/lib/managers/socket.d.ts +0 -3
  113. package/lib/managers/socket.js +0 -164
  114. package/lib/managers/test.d.ts +0 -0
  115. package/lib/managers/test.js +0 -84
  116. package/lib/models/action.d.ts +0 -2
  117. package/lib/models/action.js +0 -2
  118. package/lib/models/audit.d.ts +0 -15
  119. package/lib/models/audit.js +0 -2
  120. package/lib/models/config-manager.d.ts +0 -21
  121. package/lib/models/config-manager.js +0 -2
  122. package/lib/models/config.d.ts +0 -60
  123. package/lib/models/config.js +0 -2
  124. package/lib/models/counter.d.ts +0 -11
  125. package/lib/models/counter.js +0 -2
  126. package/lib/models/errors.d.ts +0 -15
  127. package/lib/models/errors.js +0 -2
  128. package/lib/models/exercise-obj.d.ts +0 -27
  129. package/lib/models/exercise-obj.js +0 -2
  130. package/lib/models/file.d.ts +0 -5
  131. package/lib/models/file.js +0 -2
  132. package/lib/models/findings.d.ts +0 -17
  133. package/lib/models/findings.js +0 -2
  134. package/lib/models/flags.d.ts +0 -10
  135. package/lib/models/flags.js +0 -2
  136. package/lib/models/front-matter.d.ts +0 -11
  137. package/lib/models/front-matter.js +0 -2
  138. package/lib/models/gitpod-data.d.ts +0 -16
  139. package/lib/models/gitpod-data.js +0 -2
  140. package/lib/models/language.d.ts +0 -4
  141. package/lib/models/language.js +0 -2
  142. package/lib/models/package.d.ts +0 -7
  143. package/lib/models/package.js +0 -2
  144. package/lib/models/plugin-config.d.ts +0 -16
  145. package/lib/models/plugin-config.js +0 -2
  146. package/lib/models/session.d.ts +0 -23
  147. package/lib/models/session.js +0 -2
  148. package/lib/models/socket.d.ts +0 -31
  149. package/lib/models/socket.js +0 -2
  150. package/lib/models/status.d.ts +0 -1
  151. package/lib/models/status.js +0 -2
  152. package/lib/models/success-types.d.ts +0 -1
  153. package/lib/models/success-types.js +0 -2
  154. package/lib/plugin/command/compile.d.ts +0 -6
  155. package/lib/plugin/command/compile.js +0 -18
  156. package/lib/plugin/command/test.d.ts +0 -6
  157. package/lib/plugin/command/test.js +0 -25
  158. package/lib/plugin/index.d.ts +0 -27
  159. package/lib/plugin/index.js +0 -7
  160. package/lib/plugin/plugin.d.ts +0 -8
  161. package/lib/plugin/plugin.js +0 -68
  162. package/lib/plugin/utils.d.ts +0 -16
  163. package/lib/plugin/utils.js +0 -58
  164. package/lib/ui/download.d.ts +0 -5
  165. package/lib/ui/download.js +0 -61
  166. package/lib/utils/BaseCommand.d.ts +0 -8
  167. package/lib/utils/BaseCommand.js +0 -41
  168. package/lib/utils/SessionCommand.d.ts +0 -10
  169. package/lib/utils/SessionCommand.js +0 -47
  170. package/lib/utils/api.d.ts +0 -12
  171. package/lib/utils/api.js +0 -173
  172. package/lib/utils/audit.d.ts +0 -16
  173. package/lib/utils/audit.js +0 -302
  174. package/lib/utils/console.d.ts +0 -12
  175. package/lib/utils/console.js +0 -19
  176. package/lib/utils/errors.d.ts +0 -17
  177. package/lib/utils/errors.js +0 -100
  178. package/lib/utils/exercisesQueue.d.ts +0 -9
  179. package/lib/utils/exercisesQueue.js +0 -38
  180. package/lib/utils/fileQueue.d.ts +0 -40
  181. package/lib/utils/fileQueue.js +0 -168
  182. package/lib/utils/misc.d.ts +0 -1
  183. package/lib/utils/misc.js +0 -23
  184. package/lib/utils/validators.d.ts +0 -5
  185. package/lib/utils/validators.js +0 -17
  186. package/lib/utils/watcher.d.ts +0 -2
  187. package/lib/utils/watcher.js +0 -23
@@ -1,134 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.rmSync = exports.clone = exports.download = exports.downloadEditor = exports.decompress = void 0;
4
- const fs = require("fs");
5
- const p = require("path");
6
- const shell = require("shelljs");
7
- const cli_ux_1 = require("cli-ux");
8
- const targz = require("targz");
9
- const console_1 = require("../utils/console");
10
- const https = require("https");
11
- const errors_1 = require("../utils/errors");
12
- // eslint-disable-next-line
13
- const fetch = require("node-fetch");
14
- exports.decompress = (sourcePath, destinationPath) => new Promise((resolve, reject) => {
15
- console_1.default.debug("Decompressing " + sourcePath);
16
- targz.decompress({
17
- src: sourcePath,
18
- dest: destinationPath,
19
- }, function (err) {
20
- if (err) {
21
- console_1.default.error("Error when trying to decompress");
22
- reject(err);
23
- }
24
- else {
25
- console_1.default.info("Decompression finished successfully");
26
- resolve(/* */ "");
27
- }
28
- });
29
- });
30
- exports.downloadEditor = async (version, destination) => {
31
- // https://raw.githubusercontent.com/learnpack/coding-ide/master/dist/app.tar.gz
32
- // if(versions[version] === undefined) throw new Error(`Invalid editor version ${version}`)
33
- const resp2 = await fetch(`https://github.com/learnpack/coding-ide/blob/${version}/dist`, { method: "HEAD" });
34
- if (!resp2.ok)
35
- throw errors_1.InternalError(`Coding Editor ${version} was not found on learnpack repository, check the config.editor.version property on learn.json`);
36
- console_1.default.info("Downloading the LearnPack coding UI, this may take a minute...");
37
- return exports.download(`https://github.com/learnpack/coding-ide/blob/${version}/dist/app.tar.gz?raw=true`, destination);
38
- };
39
- exports.download = (url, dest) => {
40
- console_1.default.debug("Downloading " + url);
41
- return new Promise((resolve, reject) => {
42
- const request = https.get(url, response => {
43
- if (response.statusCode === 200) {
44
- const file = fs.createWriteStream(dest, { flags: "wx" });
45
- file.on("finish", () => {
46
- resolve(true);
47
- });
48
- file.on("error", err => {
49
- file.close();
50
- if (err.code === "EEXIST") {
51
- console_1.default.debug("File already exists");
52
- resolve("File already exists");
53
- }
54
- else {
55
- console_1.default.debug("Error ", err.message);
56
- fs.unlink(dest, () => reject(err.message)); // Delete temp file
57
- }
58
- });
59
- response.pipe(file);
60
- }
61
- else if (response.statusCode === 302 || response.statusCode === 301) {
62
- // Console.debug("Servers redirected to "+response.headers.location)
63
- // Recursively follow redirects, only a 200 will resolve.
64
- if (response.headers.location) {
65
- exports.download(response.headers.location, dest)
66
- .then(() => resolve(/* */ ""))
67
- .catch(error => {
68
- console_1.default.error(error);
69
- reject(error);
70
- });
71
- }
72
- }
73
- else {
74
- console_1.default.debug(`Server responded with ${response.statusCode}: ${response.statusMessage}`);
75
- reject(`Server responded with ${response.statusCode}: ${response.statusMessage}`);
76
- }
77
- });
78
- request.on("error", err => {
79
- reject(err.message);
80
- });
81
- });
82
- };
83
- exports.clone = (repository = "", folder = "./") => new Promise((resolve, reject) => {
84
- if (!repository) {
85
- reject("Missing repository url for this package");
86
- // return false
87
- }
88
- cli_ux_1.cli.action.start("Verifying GIT...");
89
- if (!shell.which("git")) {
90
- reject("Sorry, this script requires git");
91
- // return false
92
- }
93
- cli_ux_1.cli.action.stop();
94
- let fileName = p.basename(repository);
95
- if (!fileName) {
96
- reject("Invalid repository information on package: " + repository);
97
- // return false
98
- }
99
- fileName = fileName.split(".")[0];
100
- if (fs.existsSync("./" + fileName)) {
101
- reject(`Directory ${fileName} already exists; Did you download this package already?`);
102
- // return false
103
- }
104
- cli_ux_1.cli.action.start(`Cloning repository ${repository}...`);
105
- if (shell.exec(`git clone ${repository}`).code !== 0) {
106
- reject("Error: Installation failed");
107
- }
108
- cli_ux_1.cli.action.stop();
109
- cli_ux_1.cli.action.start("Cleaning installation...");
110
- if (shell.exec(`rm -R -f ${folder}${fileName}/.git`).code !== 0) {
111
- reject("Error: removing .git directory");
112
- }
113
- cli_ux_1.cli.action.stop();
114
- resolve("Done");
115
- });
116
- exports.rmSync = function (path) {
117
- let files = [];
118
- if (fs.existsSync(path)) {
119
- files = fs.readdirSync(path);
120
- for (const [, file] of files.entries()) {
121
- const curPath = path + "/" + file;
122
- if (fs.lstatSync(curPath).isDirectory()) {
123
- // recurse
124
- exports.rmSync(curPath);
125
- }
126
- else {
127
- // delete file
128
- fs.unlinkSync(curPath);
129
- }
130
- }
131
- fs.rmdirSync(path);
132
- }
133
- };
134
- exports.default = { download: exports.download, decompress: exports.decompress, downloadEditor: exports.downloadEditor, clone: exports.clone, rmSync: exports.rmSync };
@@ -1,3 +0,0 @@
1
- import { IGitpod } from '../models/gitpod-data';
2
- declare const Gitpod: IGitpod;
3
- export default Gitpod;
@@ -1,67 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const console_1 = require("../utils/console");
4
- const shell = require("shelljs");
5
- const socket_1 = require("./socket");
6
- const fs = require("fs");
7
- const Gitpod = {
8
- socket: null,
9
- config: null,
10
- initialized: false,
11
- hasGPCommand: false,
12
- init: function (config) {
13
- if (this.initialized) {
14
- return;
15
- }
16
- this.initialized = true;
17
- if (config) {
18
- this.config = config;
19
- }
20
- if (shell.exec('gp -h', { silent: true }).code === 0) {
21
- this.hasGPCommand = true;
22
- if (config) {
23
- config.address = shell
24
- .exec('gp url', { silent: true })
25
- .stdout.replace(/(\r\n|\n|\r)/gm, '');
26
- }
27
- }
28
- else {
29
- console_1.default.debug('Gitpod command line tool not found');
30
- }
31
- },
32
- openFiles: async function (files) {
33
- var _a;
34
- console_1.default.debug('Attempting to open files in gitpod mode', files);
35
- this.init(); // initilize gitpod config
36
- // gitpod will open files only on isolated mode
37
- if (!this.config || ((_a = this.config.config) === null || _a === void 0 ? void 0 : _a.grading) !== 'isolated') {
38
- console_1.default.debug('Files cannot be automatically opened because we are not on isolated grading (only for isolated)');
39
- socket_1.default.log('ready', ['Ready to compile or test...']);
40
- return true;
41
- }
42
- if (this.hasGPCommand)
43
- for (const f of files.reverse()) {
44
- if (shell.exec(`gp open ${f}`).code > 0) {
45
- console_1.default.debug(`Error opening file ${f} on gitpod`);
46
- }
47
- }
48
- socket_1.default.log('ready', ['Ready to compile or test...']);
49
- },
50
- setup(config) {
51
- this.init(config); // initilize gitpod config
52
- this.autosave('on');
53
- },
54
- autosave: async function (value = 'on') {
55
- this.init(); // initilize gitpod config
56
- if (this.hasGPCommand) {
57
- if (!fs.existsSync('./.theia'))
58
- fs.mkdirSync('./.theia');
59
- if (!fs.existsSync('./.theia/settings.json')) {
60
- fs.writeFileSync('./.theia/settings.json', JSON.stringify({
61
- 'editor.autoSave': value,
62
- }, null, 4));
63
- }
64
- }
65
- },
66
- };
67
- exports.default = Gitpod;
@@ -1,6 +0,0 @@
1
- /// <reference types="node" />
2
- import * as http from "http";
3
- import { IConfigObj } from "../../models/config";
4
- import { IConfigManager } from "../../models/config-manager";
5
- export declare let TEST_SERVER: http.Server;
6
- export default function (configObj: IConfigObj, configManager: IConfigManager, isTestingEnvironment?: boolean): Promise<any>;
@@ -1,51 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TEST_SERVER = void 0;
4
- const express = require("express");
5
- // eslint-disable-next-line
6
- const cors = require("cors");
7
- const console_1 = require("../../utils/console");
8
- const routes_1 = require("./routes");
9
- const cli_ux_1 = require("cli-ux");
10
- async function default_1(configObj, configManager, isTestingEnvironment = false) {
11
- const { config } = configObj;
12
- const app = express();
13
- const server = require("http").Server(app);
14
- app.use(cors());
15
- // app.use(function(req, res, next) {
16
- // res.header("Access-Control-Allow-Origin", "*")
17
- // res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept")
18
- // res.header("Access-Control-Allow-Methods", "GET,PUT")
19
- // next()
20
- // })
21
- // add all needed endpoints
22
- await routes_1.default(app, configObj, configManager);
23
- server.listen(isTestingEnvironment ? 5000 : config === null || config === void 0 ? void 0 : config.port, function () {
24
- if (!isTestingEnvironment) {
25
- console_1.default.success(`Exercises are running 😃 Open your browser to start practicing!`);
26
- console_1.default.success(`\n Open the exercise on this link:`);
27
- console_1.default.log(` ${config === null || config === void 0 ? void 0 : config.publicUrl}`);
28
- if ((config === null || config === void 0 ? void 0 : config.editor.mode) === "standalone")
29
- cli_ux_1.default.open(`${config.publicUrl}`);
30
- }
31
- });
32
- const sockets = new Set();
33
- server.on("connection", (socket) => {
34
- sockets.add(socket);
35
- server.once("close", () => {
36
- sockets.delete(socket);
37
- });
38
- });
39
- /**
40
- * Forcefully terminates HTTP server.
41
- */
42
- server.terminate = (callback) => {
43
- for (const socket of sockets) {
44
- socket.destroy();
45
- sockets.delete(socket);
46
- }
47
- server.close(callback);
48
- };
49
- return server;
50
- }
51
- exports.default = default_1;
@@ -1,4 +0,0 @@
1
- import * as express from "express";
2
- import { IConfigObj } from "../../models/config";
3
- import { IConfigManager } from "../../models/config-manager";
4
- export default function (app: express.Application, configObject: IConfigObj, configManager: IConfigManager): Promise<void>;
@@ -1,167 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const console_1 = require("../../utils/console");
4
- const express = require("express");
5
- const fs = require("fs");
6
- const bodyParser = require("body-parser");
7
- const socket_1 = require("../socket");
8
- const fileQueue_1 = require("../../utils/fileQueue");
9
- // import gitpod from '../gitpod'
10
- const exercise_1 = require("../config/exercise");
11
- const withHandler = (func) => (req, res) => {
12
- try {
13
- func(req, res);
14
- }
15
- catch (error) {
16
- console_1.default.debug(error);
17
- const _err = {
18
- message: error.message || "There has been an error",
19
- status: error.status || 500,
20
- type: error.type || null,
21
- };
22
- console_1.default.error(_err.message);
23
- // send rep to the server
24
- res.status(_err.status);
25
- res.json(_err);
26
- }
27
- };
28
- async function default_1(app, configObject, configManager) {
29
- const { config, exercises } = configObject;
30
- const dispatcher = fileQueue_1.default.dispatcher({
31
- create: true,
32
- path: `${config === null || config === void 0 ? void 0 : config.dirPath}/vscode_queue.json`,
33
- });
34
- app.get("/config", withHandler((_, res) => {
35
- res.json(configObject);
36
- }));
37
- /**
38
- * TODO: replicate a socket action, the request payload must be passed to the socket as well
39
-
40
- const jsonBodyParser = bodyParser.json()
41
-
42
- type ISocketActions = "addAllowed" | "removeAllowed" | "start" | "on" | "clean" | "ask" | "reload" | "openWindow" | "log" | "emit" | "ready" | "error" | "fatal" | "success" | "onTestingFinished";
43
-
44
- app.post('/socket/:actionName', jsonBodyParser, withHandler((req, res) => {
45
- if (socket[req.params.actionName as ISocketActions] instanceof Function) {
46
- socket[req.params.actionName as ISocketActions](req.body ? req.body.data : null)
47
- res.json({ "details": "Socket call executed sucessfully" })
48
- } else res.status(400).json({ "details": `Socket action ${req.params.actionName} not found` })
49
- }))
50
- */
51
- // symbolic link to maintain path compatiblity
52
- const fetchStaticAsset = withHandler((req, res) => {
53
- const filePath = `${config === null || config === void 0 ? void 0 : config.dirPath}/assets/${req.params.filePath}`;
54
- if (!fs.existsSync(filePath))
55
- throw new Error("File not found: " + filePath);
56
- const content = fs.readFileSync(filePath);
57
- res.write(content);
58
- res.end();
59
- });
60
- app.get(`${(config === null || config === void 0 ? void 0 : config.dirPath.indexOf("./")) === 0 ?
61
- config.dirPath.slice(1) : config === null || config === void 0 ? void 0 : config.dirPath}/assets/:filePath`, fetchStaticAsset);
62
- app.get("/assets/:filePath", fetchStaticAsset);
63
- app.get("/exercise", withHandler((_, res) => {
64
- res.json(exercises);
65
- }));
66
- app.get("/exercise/:slug/readme", withHandler(({ params: { slug }, query: { lang } }, res) => {
67
- const exercise = configManager.getExercise(slug);
68
- if (exercise && exercise.getReadme) {
69
- const readme = exercise.getReadme(lang || null);
70
- res.json(readme);
71
- }
72
- else {
73
- res.status(400);
74
- }
75
- }));
76
- app.get("/exercise/:slug/report", withHandler(({ params: { slug } }, res) => {
77
- const exercise = configManager.getExercise(slug);
78
- if (exercise && exercise.getTestReport) {
79
- const report = exercise.getTestReport();
80
- res.json(JSON.stringify(report));
81
- }
82
- }));
83
- app.get("/exercise/:slug", withHandler((req, res) => {
84
- var _a, _b, _c, _d;
85
- // no need to re-start exercise if it's already started
86
- if (configObject.currentExercise &&
87
- req.params.slug === configObject.currentExercise) {
88
- const exercise = configManager.getExercise(req.params.slug);
89
- res.json(exercise);
90
- return;
91
- }
92
- const exercise = configManager.startExercise(req.params.slug);
93
- dispatcher.enqueue(dispatcher.events.START_EXERCISE, req.params.slug);
94
- const entries = new Set(Object.keys(config === null || config === void 0 ? void 0 : config.entries).map(lang => config === null || config === void 0 ? void 0 : config.entries[lang]));
95
- // if we are in incremental grading, the entry file can by dinamically detected
96
- // based on the changes the student is making during the exercise
97
- if ((config === null || config === void 0 ? void 0 : config.grading) === "incremental") {
98
- const scanedFiles = fs.readdirSync("./");
99
- // update the file hierarchy with updates
100
- exercise.files = [
101
- ...exercise.files.filter(f => f.name.includes("test.")),
102
- ...exercise_1.filterFiles(scanedFiles),
103
- ];
104
- console_1.default.debug(`Exercise updated files: `, exercise.files);
105
- }
106
- const detected = exercise_1.detect(configObject, exercise.files
107
- .filter(fileName => entries.has(fileName.name))
108
- .map(f => f.name || f));
109
- // if a new language for the testing engine is detected, we replace it
110
- // if not we leave it as it was before
111
- if ((config === null || config === void 0 ? void 0 : config.language) && !["", "auto"].includes(config === null || config === void 0 ? void 0 : config.language)) {
112
- console_1.default.debug(`Exercise language ignored, instead imported from configuration ${config === null || config === void 0 ? void 0 : config.language}`);
113
- exercise.language = detected === null || detected === void 0 ? void 0 : detected.language;
114
- }
115
- else if ((detected === null || detected === void 0 ? void 0 : detected.language) &&
116
- (!(config === null || config === void 0 ? void 0 : config.language) || (config === null || config === void 0 ? void 0 : config.language) === "auto")) {
117
- console_1.default.debug(`Switching to ${detected.language} engine in this exercise`);
118
- exercise.language = detected.language;
119
- }
120
- // WARNING: has to be the FULL PATH to the entry path
121
- // We need to detect entry in both gradings: Incremental and Isolate
122
- exercise.entry = detected === null || detected === void 0 ? void 0 : detected.entry;
123
- console_1.default.debug(`Exercise detected entry: ${detected === null || detected === void 0 ? void 0 : detected.entry} and language ${exercise.language}`);
124
- // exercises.graded and exercises.disableGrading deprecated.
125
- if (!exercise.graded || (config === null || config === void 0 ? void 0 : config.disableGrading) || ((_a = config === null || config === void 0 ? void 0 : config.disabledActions) === null || _a === void 0 ? void 0 : _a.includes("test"))) {
126
- socket_1.default.removeAllowed("test");
127
- }
128
- else {
129
- socket_1.default.addAllowed("test");
130
- }
131
- if (!exercise.entry || ((_b = config === null || config === void 0 ? void 0 : config.disabledActions) === null || _b === void 0 ? void 0 : _b.includes("build"))) {
132
- socket_1.default.removeAllowed("build");
133
- }
134
- else {
135
- socket_1.default.addAllowed("build");
136
- }
137
- if (exercise.files.filter((f) => !f.name.toLowerCase().includes("readme.") &&
138
- !f.name.toLowerCase().includes("test.")).length === 0 || ((_c = config === null || config === void 0 ? void 0 : config.disabledActions) === null || _c === void 0 ? void 0 : _c.includes("reset"))) {
139
- socket_1.default.removeAllowed("reset");
140
- }
141
- else if (!((_d = config === null || config === void 0 ? void 0 : config.disabledActions) === null || _d === void 0 ? void 0 : _d.includes("reset"))) {
142
- socket_1.default.addAllowed("reset");
143
- }
144
- socket_1.default.log("ready");
145
- res.json(exercise);
146
- }));
147
- app.get("/exercise/:slug/file/:fileName", withHandler((req, res) => {
148
- const exercise = configManager.getExercise(req.params.slug);
149
- if (exercise && exercise.getFile) {
150
- res.write(exercise.getFile(req.params.fileName));
151
- res.end();
152
- }
153
- }));
154
- const textBodyParser = bodyParser.text();
155
- app.put("/exercise/:slug/file/:fileName", textBodyParser, withHandler((req, res) => {
156
- const exercise = configManager.getExercise(req.params.slug);
157
- if (exercise && exercise.saveFile) {
158
- exercise.saveFile(req.params.fileName, req.body);
159
- res.end();
160
- }
161
- }));
162
- if (config === null || config === void 0 ? void 0 : config.outputPath) {
163
- app.use("/preview", express.static(config.outputPath));
164
- }
165
- app.use("/", express.static(`${config === null || config === void 0 ? void 0 : config.dirPath}/_app`));
166
- }
167
- exports.default = default_1;
@@ -1,3 +0,0 @@
1
- import { ISession } from '../models/session';
2
- declare const Session: ISession;
3
- export default Session;
@@ -1,104 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const console_1 = require("../utils/console");
4
- const api_1 = require("../utils/api");
5
- const validator_1 = require("validator");
6
- const errors_1 = require("../utils/errors");
7
- // import moment from 'moment'
8
- const fs = require("fs");
9
- const cli_ux_1 = require("cli-ux");
10
- const storage = require("node-persist");
11
- const Session = {
12
- sessionStarted: false,
13
- token: null,
14
- config: null,
15
- currentCohort: null,
16
- initialize: async function () {
17
- if (!this.sessionStarted) {
18
- if (!this.config) {
19
- throw errors_1.InternalError('Configuration not found');
20
- }
21
- if (!fs.existsSync(this.config.dirPath)) {
22
- fs.mkdirSync(this.config.dirPath);
23
- }
24
- await storage.init({ dir: `${this.config.dirPath}/.session` });
25
- this.sessionStarted = true;
26
- }
27
- return true;
28
- },
29
- setPayload: async function (value) {
30
- await this.initialize();
31
- await storage.setItem('bc-payload', Object.assign({ token: this.token }, value));
32
- console_1.default.debug('Payload successfuly found and set for ' + value.email);
33
- return true;
34
- },
35
- getPayload: async function () {
36
- await this.initialize();
37
- let payload = null;
38
- try {
39
- payload = await storage.getItem('bc-payload');
40
- }
41
- catch (error) {
42
- // TODO: Remove it
43
- console.log(error);
44
- console_1.default.debug('Error retriving session payload');
45
- }
46
- return payload;
47
- },
48
- isActive: function () {
49
- /* if (this.token) {
50
- return true
51
- } else {
52
- return false
53
- } */
54
- return !!this.token;
55
- },
56
- get: async function (configObj) {
57
- if (configObj && configObj.config) {
58
- this.config = configObj.config;
59
- }
60
- await this.sync();
61
- if (!this.isActive()) {
62
- return null;
63
- }
64
- const payload = await this.getPayload();
65
- return {
66
- payload,
67
- token: this.token,
68
- };
69
- },
70
- login: async function () {
71
- const email = await cli_ux_1.default.prompt('What is your email?');
72
- if (!validator_1.default.isEmail(email)) {
73
- throw errors_1.ValidationError('Invalid email');
74
- }
75
- const password = await cli_ux_1.default.prompt('What is your password?', {
76
- type: 'hide',
77
- });
78
- const data = await api_1.default.login(email, password);
79
- if (data) {
80
- this.start({ token: data.token, payload: data });
81
- }
82
- },
83
- sync: async function () {
84
- const payload = await this.getPayload();
85
- if (payload) {
86
- this.token = payload.token;
87
- }
88
- },
89
- start: async function ({ token, payload = null }) {
90
- if (!token) {
91
- throw new Error('A token and email is needed to start a session');
92
- }
93
- this.token = token;
94
- if (payload && (await this.setPayload(payload))) {
95
- console_1.default.success(`Successfully logged in as ${payload.email}`);
96
- }
97
- },
98
- destroy: async function () {
99
- await storage.clear();
100
- this.token = null;
101
- console_1.default.success('You have logged out');
102
- },
103
- };
104
- exports.default = Session;
@@ -1,3 +0,0 @@
1
- import { ISocket } from '../models/socket';
2
- declare const SocketManager: ISocket;
3
- export default SocketManager;