@learnpack/learnpack 2.1.25 → 2.1.26
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/README.md +16 -16
- package/bin/run +17 -17
- package/bin/run.cmd +3 -3
- package/lib/commands/audit.d.ts +6 -6
- package/lib/commands/audit.js +327 -302
- package/lib/commands/clean.d.ts +8 -8
- package/lib/commands/clean.js +25 -25
- package/lib/commands/download.d.ts +13 -13
- package/lib/commands/download.js +55 -55
- package/lib/commands/init.d.ts +9 -9
- package/lib/commands/init.js +123 -123
- package/lib/commands/login.d.ts +14 -14
- package/lib/commands/login.js +37 -37
- package/lib/commands/logout.d.ts +14 -14
- package/lib/commands/logout.js +37 -37
- package/lib/commands/publish.d.ts +14 -14
- package/lib/commands/publish.js +82 -82
- package/lib/commands/start.d.ts +7 -7
- package/lib/commands/start.js +165 -165
- package/lib/commands/test.d.ts +6 -6
- package/lib/commands/test.js +62 -62
- package/lib/index.d.ts +1 -1
- package/lib/index.js +4 -4
- package/lib/managers/config/allowed_files.d.ts +5 -5
- package/lib/managers/config/allowed_files.js +30 -30
- package/lib/managers/config/defaults.d.ts +39 -37
- package/lib/managers/config/defaults.js +40 -38
- package/lib/managers/config/exercise.d.ts +36 -36
- package/lib/managers/config/exercise.js +233 -230
- package/lib/managers/config/index.d.ts +3 -3
- package/lib/managers/config/index.js +320 -302
- package/lib/managers/file.d.ts +13 -13
- package/lib/managers/file.js +134 -134
- package/lib/managers/gitpod.d.ts +3 -3
- package/lib/managers/gitpod.js +67 -67
- package/lib/managers/server/index.d.ts +6 -6
- package/lib/managers/server/index.js +58 -51
- package/lib/managers/server/routes.d.ts +4 -4
- package/lib/managers/server/routes.js +167 -167
- package/lib/managers/session.d.ts +3 -3
- package/lib/managers/session.js +104 -104
- package/lib/managers/socket.d.ts +3 -3
- package/lib/managers/socket.js +164 -164
- package/lib/managers/test.js +84 -84
- package/lib/models/action.d.ts +2 -2
- package/lib/models/action.js +2 -2
- package/lib/models/audit.d.ts +15 -15
- package/lib/models/audit.js +2 -2
- package/lib/models/config-manager.d.ts +21 -21
- package/lib/models/config-manager.js +2 -2
- package/lib/models/config.d.ts +62 -60
- package/lib/models/config.js +2 -2
- package/lib/models/counter.d.ts +11 -11
- package/lib/models/counter.js +2 -2
- package/lib/models/errors.d.ts +15 -15
- package/lib/models/errors.js +2 -2
- package/lib/models/exercise-obj.d.ts +27 -27
- package/lib/models/exercise-obj.js +2 -2
- package/lib/models/file.d.ts +5 -5
- package/lib/models/file.js +2 -2
- package/lib/models/findings.d.ts +17 -17
- package/lib/models/findings.js +2 -2
- package/lib/models/flags.d.ts +10 -10
- package/lib/models/flags.js +2 -2
- package/lib/models/front-matter.d.ts +11 -11
- package/lib/models/front-matter.js +2 -2
- package/lib/models/gitpod-data.d.ts +16 -16
- package/lib/models/gitpod-data.js +2 -2
- package/lib/models/language.d.ts +4 -4
- package/lib/models/language.js +2 -2
- package/lib/models/package.d.ts +7 -7
- package/lib/models/package.js +2 -2
- package/lib/models/plugin-config.d.ts +16 -16
- package/lib/models/plugin-config.js +2 -2
- package/lib/models/session.d.ts +23 -23
- package/lib/models/session.js +2 -2
- package/lib/models/socket.d.ts +31 -31
- package/lib/models/socket.js +2 -2
- package/lib/models/status.d.ts +1 -1
- package/lib/models/status.js +2 -2
- package/lib/models/success-types.d.ts +1 -1
- package/lib/models/success-types.js +2 -2
- package/lib/plugin/command/compile.d.ts +6 -6
- package/lib/plugin/command/compile.js +18 -18
- package/lib/plugin/command/test.d.ts +6 -6
- package/lib/plugin/command/test.js +25 -25
- package/lib/plugin/index.d.ts +27 -27
- package/lib/plugin/index.js +7 -7
- package/lib/plugin/plugin.d.ts +8 -8
- package/lib/plugin/plugin.js +68 -68
- package/lib/plugin/utils.d.ts +16 -16
- package/lib/plugin/utils.js +58 -58
- package/lib/ui/download.d.ts +5 -5
- package/lib/ui/download.js +61 -61
- package/lib/utils/BaseCommand.d.ts +8 -8
- package/lib/utils/BaseCommand.js +41 -41
- package/lib/utils/SessionCommand.d.ts +10 -10
- package/lib/utils/SessionCommand.js +47 -47
- package/lib/utils/api.d.ts +12 -12
- package/lib/utils/api.js +173 -173
- package/lib/utils/audit.d.ts +16 -16
- package/lib/utils/audit.js +302 -302
- package/lib/utils/console.d.ts +12 -12
- package/lib/utils/console.js +19 -19
- package/lib/utils/errors.d.ts +17 -17
- package/lib/utils/errors.js +100 -100
- package/lib/utils/exercisesQueue.d.ts +9 -9
- package/lib/utils/exercisesQueue.js +38 -38
- package/lib/utils/fileQueue.d.ts +40 -40
- package/lib/utils/fileQueue.js +168 -168
- package/lib/utils/misc.d.ts +1 -1
- package/lib/utils/misc.js +23 -23
- package/lib/utils/validators.d.ts +5 -5
- package/lib/utils/validators.js +17 -17
- package/lib/utils/watcher.d.ts +2 -2
- package/lib/utils/watcher.js +23 -23
- package/oclif.manifest.json +1 -1
- package/package.json +138 -138
- package/src/commands/audit.ts +25 -0
- package/src/commands/clean.ts +29 -29
- package/src/commands/download.ts +62 -62
- package/src/commands/login.ts +42 -42
- package/src/commands/logout.ts +43 -43
- package/src/commands/publish.ts +107 -107
- package/src/commands/start.ts +238 -234
- package/src/commands/test.ts +85 -85
- package/src/index.ts +1 -1
- package/src/managers/config/allowed_files.ts +29 -29
- package/src/managers/config/defaults.ts +2 -0
- package/src/managers/config/exercise.ts +309 -302
- package/src/managers/config/index.ts +22 -1
- package/src/managers/file.ts +169 -169
- package/src/managers/gitpod.ts +84 -84
- package/src/managers/server/index.ts +77 -69
- package/src/managers/session.ts +118 -118
- package/src/managers/socket.ts +239 -239
- package/src/managers/test.ts +83 -83
- package/src/models/action.ts +3 -3
- package/src/models/config-manager.ts +23 -23
- package/src/models/config.ts +2 -0
- package/src/models/counter.ts +11 -11
- package/src/models/errors.ts +22 -22
- package/src/models/file.ts +5 -5
- package/src/models/findings.ts +18 -18
- package/src/models/flags.ts +10 -10
- package/src/models/front-matter.ts +11 -11
- package/src/models/gitpod-data.ts +19 -19
- package/src/models/language.ts +4 -4
- package/src/models/package.ts +7 -7
- package/src/models/plugin-config.ts +17 -17
- package/src/models/session.ts +26 -26
- package/src/models/socket.ts +48 -48
- package/src/models/status.ts +15 -15
- package/src/models/success-types.ts +1 -1
- package/src/plugin/command/compile.ts +17 -17
- package/src/plugin/command/test.ts +30 -30
- package/src/plugin/index.ts +6 -6
- package/src/plugin/plugin.ts +94 -94
- package/src/plugin/utils.ts +87 -87
- package/src/types/node-fetch.d.ts +1 -1
- package/src/ui/download.ts +71 -71
- package/src/utils/BaseCommand.ts +48 -48
- package/src/utils/SessionCommand.ts +48 -48
- package/src/utils/api.ts +194 -194
- package/src/utils/audit.ts +395 -395
- package/src/utils/console.ts +24 -24
- package/src/utils/errors.ts +117 -117
- package/src/utils/exercisesQueue.ts +51 -51
- package/src/utils/fileQueue.ts +198 -198
- package/src/utils/misc.ts +23 -23
- package/src/utils/templates/gitignore.txt +19 -19
- package/src/utils/templates/incremental/.learn/exercises/01-hello-world/README.es.md +24 -24
- package/src/utils/templates/incremental/.learn/exercises/01-hello-world/README.md +24 -24
- package/src/utils/templates/incremental/README.ejs +4 -4
- package/src/utils/templates/incremental/README.es.ejs +4 -4
- package/src/utils/templates/isolated/01-hello-world/README.es.md +26 -26
- package/src/utils/templates/isolated/01-hello-world/README.md +26 -26
- package/src/utils/templates/isolated/README.ejs +4 -4
- package/src/utils/templates/isolated/README.es.ejs +4 -4
- package/src/utils/templates/no-grading/README.ejs +4 -4
- package/src/utils/templates/no-grading/README.es.ejs +4 -4
- package/src/utils/validators.ts +18 -18
|
@@ -1,167 +1,167 @@
|
|
|
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
|
+
"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 +1,3 @@
|
|
|
1
|
-
import { ISession } from '../models/session';
|
|
2
|
-
declare const Session: ISession;
|
|
3
|
-
export default Session;
|
|
1
|
+
import { ISession } from '../models/session';
|
|
2
|
+
declare const Session: ISession;
|
|
3
|
+
export default Session;
|
package/lib/managers/session.js
CHANGED
|
@@ -1,104 +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;
|
|
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;
|
package/lib/managers/socket.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ISocket } from '../models/socket';
|
|
2
|
-
declare const SocketManager: ISocket;
|
|
3
|
-
export default SocketManager;
|
|
1
|
+
import { ISocket } from '../models/socket';
|
|
2
|
+
declare const SocketManager: ISocket;
|
|
3
|
+
export default SocketManager;
|