aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcli.js6
-rw-r--r--db.js28
-rw-r--r--drop.sql3
-rw-r--r--profile/public/script.js2
4 files changed, 21 insertions, 18 deletions
diff --git a/cli.js b/cli.js
index e5cdaa1..c62dfb5 100755
--- a/cli.js
+++ b/cli.js
@@ -12,7 +12,6 @@ if ((idx = params.indexOf("-r")) > -1) {
const param = params[idx + 1];
switch (param) {
case "all":
- case "user":
db.resetAll()
.then(() => console.info("Regenerated everything!"))
.then(() => process.exit(0))
@@ -44,6 +43,7 @@ if ((idx = params.indexOf("-r")) > -1) {
break;
default:
console.info("Nothing to do!");
+ process.exit(0);
break;
}
} else if ((idx = params.indexOf("-U")) > -1) {
@@ -83,9 +83,9 @@ if ((idx = params.indexOf("-r")) > -1) {
break;
default:
console.info("Nothing to do!");
+ process.exit(0);
break;
}
-
} else if ((idx = params.indexOf("--user")) > -1) {
// User management (e.g.: Regen user pwd)
const uid = params[idx + 1];
@@ -97,4 +97,4 @@ if ((idx = params.indexOf("-r")) > -1) {
} else {
console.log("Nothing to do!");
process.exit(0);
-} \ No newline at end of file
+}
diff --git a/db.js b/db.js
index 92560b9..89d7d3b 100644
--- a/db.js
+++ b/db.js
@@ -20,14 +20,16 @@ class DB {
async init() {
const tables = await this.getTables();
for (const table of tables) if (table) await this.query(table);
- console.info("Database initialized!")
+ console.info("Database initialized!");
const res = await this.query("SELECT id FROM users");
if (res.length === 0) this.initValues();
}
async initValues() {
await this.query("INSERT INTO types (name) VALUES ('pupil'), ('teacher')");
- await this.query("INSERT INTO class (name) VALUES ('TGM13.1'), ('TGM13.2'), ('TGTM13.1'), ('TGI13.1'), ('TGI13.2'), ('teacher')");
+ await this.query(
+ "INSERT INTO class (name) VALUES ('TGM13.1'), ('TGM13.2'), ('TGTM13.1'), ('TGI13.1'), ('TGI13.2'), ('teacher')",
+ );
await this.initPolls();
await this.initMottovote();
@@ -42,7 +44,7 @@ class DB {
async regenerateTables() {
const drops = await fs.readFile(__dirname + "/drop.sql", "utf8");
- for (const stmt of drops.split(";")) if (stmt) await this.query(stmt);
+ for (const stmt of drops.split(";")) if (stmt && stmt.length > 1) await this.query(stmt);
const tables = await this.getTables();
for (const table of tables) if (table) await this.query(table);
}
@@ -81,15 +83,17 @@ class DB {
for (const question of questions) {
if (question) {
const [q, type] = question.split(" - ");
- await this.query("INSERT INTO profile_questions (question, question_type) VALUE (?, ?)", [q, types.indexOf(type) + 1])
- .catch(() => console.log("Profile question already exists!"));
+ await this.query("INSERT INTO profile_questions (question, question_type) VALUE (?, ?)", [
+ q,
+ types.indexOf(type) + 1,
+ ]).catch(() => console.log("Profile question already exists!"));
}
}
}
async resetMottovote() {
const tables = await this.getTables();
- await this.query("DROP TABLE IF EXISTS motto_votes;DROP TABLE IF EXISTS mottos;");
+ await this.query("DROP TABLE IF EXISTS motto_votes");
await this.query(tables[6]);
await this.query(tables[7]);
await this.initMottovote();
@@ -101,8 +105,9 @@ class DB {
for (const motto of mottos) {
const [name, desc] = motto.split(" - ");
if (motto) {
- await this.query("INSERT INTO mottos (name, description) VALUES (?, ?)", [name, desc])
- .catch(() => console.log("Vote option already exists!"));
+ await this.query("INSERT INTO mottos (name, description) VALUES (?, ?)", [name, desc]).catch(() =>
+ console.log("Vote option already exists!"),
+ );
}
}
}
@@ -126,8 +131,7 @@ class DB {
await this.query("INSERT INTO ranking_questions (question, type_id) VALUE (?,?)", [
question,
i + 1,
- ])
- .catch(() => console.log("Poll question already exists!"));
+ ]).catch(() => console.log("Poll question already exists!"));
}
}
}
@@ -153,7 +157,7 @@ class DB {
const pwd = nanoid.nanoid(8);
const password = await bcrypt.hash(pwd, 10);
userPasswords[classIndex].push({ username, pwd });
- this.query(
+ await this.query(
"INSERT INTO users (username, name, middlename, surname, password, class_id, type_id) VALUE (?,?,?,?,?,?,?)",
[
username,
@@ -168,7 +172,7 @@ class DB {
}
}
}
- fs.writeFile(__dirname + "/users.json", JSON.stringify(userPasswords));
+ await fs.writeFile(__dirname + "/users.json", JSON.stringify(userPasswords));
console.log("Initialized users!");
}
diff --git a/drop.sql b/drop.sql
index 44b17a4..1f882ab 100644
--- a/drop.sql
+++ b/drop.sql
@@ -1,5 +1,4 @@
DROP TABLE IF EXISTS motto_votes;
-DROP TABLE IF EXISTS mottos;
DROP TABLE IF EXISTS quotes;
DROP TABLE IF EXISTS ranking_questions;
DROP TABLE IF EXISTS ranking_answers;
@@ -9,4 +8,4 @@ DROP TABLE IF EXISTS profile_questions;
DROP TABLE IF EXISTS profile_input_types;
DROP TABLE IF EXISTS users;
DROP TABLE IF EXISTS types;
-DROP TABLE IF EXISTS class; \ No newline at end of file
+DROP TABLE IF EXISTS class;
diff --git a/profile/public/script.js b/profile/public/script.js
index 64ba0b6..2a170d2 100644
--- a/profile/public/script.js
+++ b/profile/public/script.js
@@ -25,7 +25,7 @@ function appendQuestions(question) {
field.id = "id_" + question.id;
field.name = question.id;
if (question.answer !== undefined) init = false;
- field.value = question.answer;
+ field.value = question.answer || "";
field.placeholder = question.question;
field.type = question.type;
if (question.type === "file") field.accept = "image/*";