@learnpack/learnpack 2.0.13 → 2.0.14

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.
Files changed (116) hide show
  1. package/README.md +10 -10
  2. package/lib/commands/audit.d.ts +6 -0
  3. package/lib/commands/audit.js +369 -0
  4. package/lib/commands/clean.d.ts +8 -0
  5. package/lib/commands/clean.js +25 -0
  6. package/lib/commands/download.d.ts +13 -0
  7. package/lib/commands/download.js +55 -0
  8. package/lib/commands/init.d.ts +9 -0
  9. package/lib/commands/init.js +117 -0
  10. package/lib/commands/login.d.ts +14 -0
  11. package/lib/commands/login.js +37 -0
  12. package/lib/commands/logout.d.ts +14 -0
  13. package/lib/commands/logout.js +37 -0
  14. package/lib/commands/publish.d.ts +14 -0
  15. package/lib/commands/publish.js +82 -0
  16. package/lib/commands/start.d.ts +7 -0
  17. package/lib/commands/start.js +165 -0
  18. package/lib/commands/test.d.ts +6 -0
  19. package/lib/commands/test.js +62 -0
  20. package/lib/index.d.ts +1 -0
  21. package/lib/managers/config/allowed_files.d.ts +5 -0
  22. package/lib/managers/config/allowed_files.js +30 -0
  23. package/lib/managers/config/defaults.d.ts +34 -0
  24. package/lib/managers/config/defaults.js +35 -0
  25. package/lib/managers/config/exercise.d.ts +36 -0
  26. package/lib/managers/config/exercise.js +230 -0
  27. package/lib/managers/config/index.d.ts +3 -0
  28. package/lib/managers/config/index.js +307 -0
  29. package/lib/managers/file.d.ts +13 -0
  30. package/lib/managers/file.js +134 -0
  31. package/lib/managers/gitpod.d.ts +3 -0
  32. package/lib/managers/gitpod.js +67 -0
  33. package/lib/managers/server/index.d.ts +6 -0
  34. package/lib/managers/server/index.js +51 -0
  35. package/lib/managers/server/routes.d.ts +4 -0
  36. package/lib/managers/server/routes.js +160 -0
  37. package/lib/managers/session.d.ts +3 -0
  38. package/lib/managers/session.js +104 -0
  39. package/lib/managers/socket.d.ts +3 -0
  40. package/lib/managers/socket.js +164 -0
  41. package/lib/managers/test.d.ts +0 -0
  42. package/lib/managers/test.js +84 -0
  43. package/lib/models/action.d.ts +2 -0
  44. package/lib/models/action.js +2 -0
  45. package/lib/models/audit-errors.d.ts +4 -0
  46. package/lib/models/audit-errors.js +2 -0
  47. package/lib/models/config-manager.d.ts +21 -0
  48. package/lib/models/config-manager.js +2 -0
  49. package/lib/models/config.d.ts +57 -0
  50. package/lib/models/config.js +2 -0
  51. package/lib/models/counter.d.ts +11 -0
  52. package/lib/models/counter.js +2 -0
  53. package/lib/models/errors.d.ts +15 -0
  54. package/lib/models/errors.js +2 -0
  55. package/lib/models/exercise-obj.d.ts +27 -0
  56. package/lib/models/exercise-obj.js +2 -0
  57. package/lib/models/file.d.ts +5 -0
  58. package/lib/models/file.js +2 -0
  59. package/lib/models/findings.d.ts +17 -0
  60. package/lib/models/findings.js +2 -0
  61. package/lib/models/flags.d.ts +10 -0
  62. package/lib/models/flags.js +2 -0
  63. package/lib/models/front-matter.d.ts +11 -0
  64. package/lib/models/front-matter.js +2 -0
  65. package/lib/models/gitpod-data.d.ts +16 -0
  66. package/lib/models/gitpod-data.js +2 -0
  67. package/lib/models/language.d.ts +4 -0
  68. package/lib/models/language.js +2 -0
  69. package/lib/models/package.d.ts +7 -0
  70. package/lib/models/package.js +2 -0
  71. package/lib/models/plugin-config.d.ts +16 -0
  72. package/lib/models/plugin-config.js +2 -0
  73. package/lib/models/session.d.ts +23 -0
  74. package/lib/models/session.js +2 -0
  75. package/lib/models/socket.d.ts +31 -0
  76. package/lib/models/socket.js +2 -0
  77. package/lib/models/status.d.ts +1 -0
  78. package/lib/models/status.js +2 -0
  79. package/lib/models/success-types.d.ts +1 -0
  80. package/lib/models/success-types.js +2 -0
  81. package/lib/plugin/command/compile.d.ts +6 -0
  82. package/lib/plugin/command/compile.js +18 -0
  83. package/lib/plugin/command/test.d.ts +6 -0
  84. package/lib/plugin/command/test.js +25 -0
  85. package/lib/plugin/index.d.ts +27 -0
  86. package/lib/plugin/index.js +7 -0
  87. package/lib/plugin/plugin.d.ts +8 -0
  88. package/lib/plugin/plugin.js +68 -0
  89. package/lib/plugin/utils.d.ts +16 -0
  90. package/lib/plugin/utils.js +58 -0
  91. package/lib/ui/download.d.ts +5 -0
  92. package/lib/ui/download.js +61 -0
  93. package/lib/utils/BaseCommand.d.ts +8 -0
  94. package/lib/utils/BaseCommand.js +41 -0
  95. package/lib/utils/SessionCommand.d.ts +10 -0
  96. package/lib/utils/SessionCommand.js +47 -0
  97. package/lib/utils/api.d.ts +12 -0
  98. package/lib/utils/api.js +173 -0
  99. package/lib/utils/audit.d.ts +13 -0
  100. package/lib/utils/audit.js +129 -0
  101. package/lib/utils/console.d.ts +12 -0
  102. package/lib/utils/console.js +19 -0
  103. package/lib/utils/errors.d.ts +17 -0
  104. package/lib/utils/errors.js +100 -0
  105. package/lib/utils/exercisesQueue.d.ts +9 -0
  106. package/lib/utils/exercisesQueue.js +38 -0
  107. package/lib/utils/fileQueue.d.ts +40 -0
  108. package/lib/utils/fileQueue.js +168 -0
  109. package/lib/utils/misc.d.ts +1 -0
  110. package/lib/utils/misc.js +23 -0
  111. package/lib/utils/validators.d.ts +5 -0
  112. package/lib/utils/validators.js +17 -0
  113. package/lib/utils/watcher.d.ts +2 -0
  114. package/lib/utils/watcher.js +24 -0
  115. package/oclif.manifest.json +1 -1
  116. package/package.json +3 -2
@@ -0,0 +1,134 @@
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 };
@@ -0,0 +1,3 @@
1
+ import { IGitpod } from '../models/gitpod-data';
2
+ declare const Gitpod: IGitpod;
3
+ export default Gitpod;
@@ -0,0 +1,67 @@
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;
@@ -0,0 +1,6 @@
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>;
@@ -0,0 +1,51 @@
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;
@@ -0,0 +1,4 @@
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>;
@@ -0,0 +1,160 @@
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 excercise = configManager.getExercise(slug);
68
+ if (excercise) {
69
+ const readme = excercise.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 report = configManager.getExercise(slug).getTestReport();
78
+ res.json(JSON.stringify(report));
79
+ }));
80
+ app.get("/exercise/:slug", withHandler((req, res) => {
81
+ var _a, _b, _c, _d;
82
+ // no need to re-start exercise if it's already started
83
+ if (configObject.currentExercise &&
84
+ req.params.slug === configObject.currentExercise) {
85
+ const exercise = configManager.getExercise(req.params.slug);
86
+ res.json(exercise);
87
+ return;
88
+ }
89
+ const exercise = configManager.startExercise(req.params.slug);
90
+ dispatcher.enqueue(dispatcher.events.START_EXERCISE, req.params.slug);
91
+ 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]));
92
+ // if we are in incremental grading, the entry file can by dinamically detected
93
+ // based on the changes the student is making during the exercise
94
+ if ((config === null || config === void 0 ? void 0 : config.grading) === "incremental") {
95
+ const scanedFiles = fs.readdirSync("./");
96
+ // update the file hierarchy with updates
97
+ exercise.files = [
98
+ ...exercise.files.filter(f => f.name.includes("test.")),
99
+ ...exercise_1.filterFiles(scanedFiles),
100
+ ];
101
+ console_1.default.debug(`Exercise updated files: `, exercise.files);
102
+ }
103
+ const detected = exercise_1.detect(configObject, exercise.files
104
+ .filter(fileName => entries.has(fileName.name))
105
+ .map(f => f.name || f));
106
+ // if a new language for the testing engine is detected, we replace it
107
+ // if not we leave it as it was before
108
+ if ((config === null || config === void 0 ? void 0 : config.language) && !["", "auto"].includes(config === null || config === void 0 ? void 0 : config.language)) {
109
+ console_1.default.debug(`Exercise language ignored, instead imported from configuration ${config === null || config === void 0 ? void 0 : config.language}`);
110
+ exercise.language = detected === null || detected === void 0 ? void 0 : detected.language;
111
+ }
112
+ else if ((detected === null || detected === void 0 ? void 0 : detected.language) &&
113
+ (!(config === null || config === void 0 ? void 0 : config.language) || (config === null || config === void 0 ? void 0 : config.language) === "auto")) {
114
+ console_1.default.debug(`Switching to ${detected.language} engine in this exercise`);
115
+ exercise.language = detected.language;
116
+ }
117
+ // WARNING: has to be the FULL PATH to the entry path
118
+ // We need to detect entry in both gradings: Incremental and Isolate
119
+ exercise.entry = detected === null || detected === void 0 ? void 0 : detected.entry;
120
+ console_1.default.debug(`Exercise detected entry: ${detected === null || detected === void 0 ? void 0 : detected.entry} and language ${exercise.language}`);
121
+ 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"))) {
122
+ socket_1.default.removeAllowed("test");
123
+ }
124
+ else {
125
+ socket_1.default.addAllowed("test");
126
+ }
127
+ if (!exercise.entry || ((_b = config === null || config === void 0 ? void 0 : config.disabledActions) === null || _b === void 0 ? void 0 : _b.includes("build"))) {
128
+ socket_1.default.removeAllowed("build");
129
+ }
130
+ else {
131
+ socket_1.default.addAllowed("build");
132
+ }
133
+ if (exercise.files.filter((f) => !f.name.toLowerCase().includes("readme.") &&
134
+ !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"))) {
135
+ socket_1.default.removeAllowed("reset");
136
+ }
137
+ else if (!((_d = config === null || config === void 0 ? void 0 : config.disabledActions) === null || _d === void 0 ? void 0 : _d.includes("reset"))) {
138
+ socket_1.default.addAllowed("reset");
139
+ }
140
+ socket_1.default.log("ready");
141
+ res.json(exercise);
142
+ }));
143
+ app.get("/exercise/:slug/file/:fileName", withHandler((req, res) => {
144
+ res.write(configManager.getExercise(req.params.slug).getFile(req.params.fileName));
145
+ res.end();
146
+ }));
147
+ const textBodyParser = bodyParser.text();
148
+ app.put("/exercise/:slug/file/:fileName", textBodyParser, withHandler((req, res) => {
149
+ // const result =
150
+ configManager
151
+ .getExercise(req.params.slug)
152
+ .saveFile(req.params.fileName, req.body);
153
+ res.end();
154
+ }));
155
+ if (config === null || config === void 0 ? void 0 : config.outputPath) {
156
+ app.use("/preview", express.static(config.outputPath));
157
+ }
158
+ app.use("/", express.static(`${config === null || config === void 0 ? void 0 : config.dirPath}/_app`));
159
+ }
160
+ exports.default = default_1;
@@ -0,0 +1,3 @@
1
+ import { ISession } from '../models/session';
2
+ declare const Session: ISession;
3
+ export default Session;
@@ -0,0 +1,104 @@
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;
@@ -0,0 +1,3 @@
1
+ import { ISocket } from '../models/socket';
2
+ declare const SocketManager: ISocket;
3
+ export default SocketManager;