aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcli.js10
-rw-r--r--db.js6
-rw-r--r--zeitung/parts/citations.tex2
-rw-r--r--zeitung/parts/generated/quotes/.gitkeep0
4 files changed, 16 insertions, 2 deletions
diff --git a/cli.js b/cli.js
index a3d516c..99048d4 100755
--- a/cli.js
+++ b/cli.js
@@ -197,6 +197,16 @@ if ((idx = params.indexOf("-r")) > -1) {
// Quotes boats coats floats goats oats
textex = "";
+ textex += `\\subsection*{${data.quotes[0].class}}\n`
+ data.quotes.forEach((quote, i) => {
+ if (i > 1 && quote.class !== data.quotes[i-1].class) textex += `\\subsection*{${quote.class}}\n`;
+ textex += `\\textbf{${quote.name} ${quote.middlename || ""} ${quote.surname}}: ${quote.quote}\\newline \n`.replace(/ +/, " ").replace(/%/g, "\\%");
+
+ });
+ await fs.writeFile(
+ __dirname + "/zeitung/parts/generated/quotes/quotes.tex",
+ textex,
+ );
});
});
console.log("Probably finished?");
diff --git a/db.js b/db.js
index 22580e6..70e1e09 100644
--- a/db.js
+++ b/db.js
@@ -270,7 +270,11 @@ class DB {
user.chars = await this.query("SELECT txt from profile_char where profile_id=" + user.id);
}
- return { users, profile, questions, ranking };
+ const quotes = await this.query(
+ "SELECT q.id, a.name, a.middlename, a.surname, q.quote, c.name class FROM quotes q INNER JOIN users a ON q.author_id = a.id INNER JOIN class c ON a.class_id = c.id ORDER BY c.id, a.surname, a.name, a.middlename",
+ );
+
+ return { users, profile, questions, ranking, quotes };
}
async query(query, params) {
diff --git a/zeitung/parts/citations.tex b/zeitung/parts/citations.tex
index 62e23e5..a05185c 100644
--- a/zeitung/parts/citations.tex
+++ b/zeitung/parts/citations.tex
@@ -1,2 +1,2 @@
\title{Zitate}
-\lipsum[1-2]
+\generated{quotes/quotes} \ No newline at end of file
diff --git a/zeitung/parts/generated/quotes/.gitkeep b/zeitung/parts/generated/quotes/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/zeitung/parts/generated/quotes/.gitkeep