diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | CLI.md | 13 | ||||
-rwxr-xr-x | cli.js | 20 | ||||
-rw-r--r-- | db.js | 12 | ||||
-rw-r--r-- | profile/public/user.js | 4 | ||||
-rw-r--r-- | tables.sql | 2 | ||||
-rw-r--r-- | zeitung/.gitignore | 4 | ||||
-rw-r--r-- | zeitung/main.tex | 23 | ||||
-rw-r--r-- | zeitung/parts/studentprofiles.tex | 6 | ||||
-rw-r--r-- | zeitung/parts/students/TGI13.1/.gitkeep (renamed from zeitung/parts/students/.gitkeep) | 0 | ||||
-rw-r--r-- | zeitung/parts/students/TGI13.2/.gitkeep | 0 | ||||
-rw-r--r-- | zeitung/parts/students/TGM13.1/.gitkeep | 0 | ||||
-rw-r--r-- | zeitung/parts/students/TGM13.2/.gitkeep | 0 | ||||
-rw-r--r-- | zeitung/parts/students/TGTM13.1/.gitkeep | 0 | ||||
-rw-r--r-- | zeitung/parts/studenttemplate.tex | 112 |
15 files changed, 145 insertions, 52 deletions
@@ -3,6 +3,7 @@ node_* .vscode/ .idea/ +*.log *.env *.csv users.json @@ -3,10 +3,17 @@ `node cli.js [option] [param]` ## -r -Recreates and reinitializes database tables: `node -r [all|motto|poll|profile|quote]` + +Recreates and reinitializes database tables: `node cli -r [all|motto|poll|profile|quote]` + +## -d + +Dump the database into a LaTeX-compatible format `node cli -d` (in the appropriate `zeitung` subdir) ## -U -Updates database values: `node -U [all|motto|poll|profile]` + +Updates database values: `node cli -U [all|motto|poll|profile]` ## --user -Regenerates user password: `node --user [user_id]`
\ No newline at end of file + +Regenerates user password: `node cli --user [user_id]` @@ -1,6 +1,7 @@ #!/usr/bin/env node require("dotenv").config(); const db = require("./db"); +const fs = require("fs"); const params = process.argv.slice(2); @@ -56,6 +57,25 @@ if ((idx = params.indexOf("-r")) > -1) { process.exit(0); break; } +} else if ((idx = params.indexOf("-d")) > -1) { + // TODO: More dumping + db.dump().then((data) => { + data.users.forEach((user) => { + const textex = `\\student\n\\studentimages{${user.username}}\n\\studentprofile{${user.name} ${ + user.middlename || "" + } ${ + user.surname + }}{18.12.2002}{Mathematik}{Schlafen}{Canadian Pop}{Herr Schwarz}{Gehirn}{Cogito ergo sum}\n\\studenttable{Meistens wunderhübsch}{Essen}\n\\studentcomments{}`; + fs.writeFile( + __dirname + "/zeitung/parts/students/" + user.class + "/" + user.username + ".tex", + textex, + (err) => { + if (err) console.error(err); + }, + ); + }); + }); + console.log("Probably finished.. Async?"); } else if ((idx = params.indexOf("-U")) > -1) { // Update management (e.g.: add new poll options) const param = params[idx + 1]; @@ -185,7 +185,10 @@ class DB { const [q, a] = question.split(" - "); const { insertId } = await this.query("INSERT INTO question_questions (question) VALUE (?)", [q]); for (const answer of a.split(",")) { - await this.query("INSERT INTO question_options (answer_option, question_id) VALUE (?,?)", [answer, insertId]); + await this.query("INSERT INTO question_options (answer_option, question_id) VALUE (?,?)", [ + answer, + insertId, + ]); } } catch (e) { console.error(e); @@ -218,6 +221,13 @@ class DB { console.log(`New password for ${uid}: ${pwd}`); } + async dump() { + const users = await this.query( + "SELECT u.id, u.username, u.name, u.middlename, u.surname, c.name class, t.name type FROM users u INNER JOIN class c ON u.class_id = c.id INNER JOIN types t ON u.type_id = t.id WHERE t.name = 'pupil'", + ); + return { users }; + } + async query(query, params) { const conn = await this.connect(); try { diff --git a/profile/public/user.js b/profile/public/user.js index b0eb768..39d6713 100644 --- a/profile/public/user.js +++ b/profile/public/user.js @@ -171,7 +171,7 @@ function addChar(char) { inp.maxLength = 255; - btn.addEventListener("click", async e => { + btn.addEventListener("click", async (e) => { const char = inp.value; const body = JSON.stringify({ char }); await fetch(`api/char/${uid}`, { @@ -196,4 +196,4 @@ fetch(`api/comments/${uid}`) fetch(`api/char/${uid}`) .then((response) => response.json()) - .then(addChar);
\ No newline at end of file + .then(addChar); @@ -175,4 +175,4 @@ CREATE TABLE IF NOT EXISTS profile_char CONSTRAINT `fk_char_user` FOREIGN KEY (profile_id) REFERENCES users (id), CONSTRAINT `fk_char_user2` FOREIGN KEY (user_id) REFERENCES users (id) ) ENGINE = InnoDB - DEFAULT CHARSET = utf8;
\ No newline at end of file + DEFAULT CHARSET = utf8; diff --git a/zeitung/.gitignore b/zeitung/.gitignore index 7f25e83..27514f8 100644 --- a/zeitung/.gitignore +++ b/zeitung/.gitignore @@ -1,5 +1,7 @@ build/ *.log svg-inkscape/ -parts/students/*.tex +parts/students/*/*.tex parts/students/figures/ +parts/test/ +*.otf diff --git a/zeitung/main.tex b/zeitung/main.tex index 510a29f..6f6cc74 100644 --- a/zeitung/main.tex +++ b/zeitung/main.tex @@ -9,10 +9,11 @@ \usepackage{afterpage} \usepackage{sectsty} \usepackage{tikz,float} -\usepackage{svg,kantlipsum,lipsum} +\usepackage{kantlipsum,lipsum} \usepackage{eso-pic} \usepackage{fancyhdr} \usepackage{background} +\usepackage{changepage} % Font \setmainfont{"[tierra-nueva.otf]"}[BoldFont="[tierra-nueva-bold.otf]"] @@ -25,6 +26,14 @@ % Figures \graphicspath{{figures/}} +% Flip image if odd +\newcommand\oddflip[2][]{ + \checkoddpage + \ifoddpage\includegraphics[#1]{#2} + \else\scalebox{-1}[1]{\includegraphics[#1]{#2}} + \fi +} + % Header & footer \renewcommand{\headrulewidth}{0pt} \renewcommand{\footrulewidth}{0pt} @@ -35,8 +44,8 @@ \fancyfootoffset{2.5cm} \fancyhf{} \fancyhead[L]{\hspace*{1cm}\vspace*{0.3cm}\Huge{\rightmark}} -\fancyfoot[R]{\vspace*{-50pt}\includegraphics[keepaspectratio=true, width=\paperwidth]{welle.png}} -\fancyfoot[L]{\vspace*{-1.3cm}\hspace*{3cm}\Huge{\thepage}} +\fancyfoot[R]{\vspace*{-50pt}\oddflip[keepaspectratio=true, width=\paperwidth]{welle.png}} +\fancyfoot[L]{\checkoddpage\vspace*{-1.3cm}\hspace*{\ifoddpage 3cm \else 17.5cm \fi}\Huge{\thepage}} % Custom title command for header \renewcommand{\sectionmark}[1]{\markright{#1}} @@ -55,9 +64,9 @@ % Import all tex files from a directory \def\app@exe{\immediate\write18} \def\inputall#1{ - \app@exe{cat #1/*.tex > #1/files.tmp} - \InputIfFileExists{#1/files.tmp}{}{} - \AtEndDocument{\app@exe{rm -f #1/files.tmp}}} + \app@exe{cat #1/*.tex > #1/files.tmp} + \InputIfFileExists{#1/files.tmp}{}{} + \AtEndDocument{\app@exe{rm -f #1/files.tmp}}} \def\part#1{\input{parts/#1.tex}\newpage} \def\student{\input{parts/studenttemplate.tex}} @@ -66,7 +75,7 @@ \backgroundsetup{contents={}} \part{titlepage} -\backgroundsetup{contents={\includegraphics[keepaspectratio=true, width=\paperwidth]{kordel.png}},scale=1,placement=top,opacity=1,position=current page.north} +\backgroundsetup{contents={\oddflip[keepaspectratio=true, width=\paperwidth]{kordel.png}},scale=1.1,placement=top,opacity=1,position=current page.north} \part{tableofcontents} \part{introduction} \part{classphoto} diff --git a/zeitung/parts/studentprofiles.tex b/zeitung/parts/studentprofiles.tex index dcb3cb6..67d69d0 100644 --- a/zeitung/parts/studentprofiles.tex +++ b/zeitung/parts/studentprofiles.tex @@ -2,4 +2,8 @@ \kant[1-3] \newpage -\inputall{parts/students/} +\inputall{parts/students/TGI13.1} +\inputall{parts/students/TGI13.2} +\inputall{parts/students/TGM13.1} +\inputall{parts/students/TGM13.2} +\inputall{parts/students/TGTM13.1} diff --git a/zeitung/parts/students/.gitkeep b/zeitung/parts/students/TGI13.1/.gitkeep index e69de29..e69de29 100644 --- a/zeitung/parts/students/.gitkeep +++ b/zeitung/parts/students/TGI13.1/.gitkeep diff --git a/zeitung/parts/students/TGI13.2/.gitkeep b/zeitung/parts/students/TGI13.2/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/zeitung/parts/students/TGI13.2/.gitkeep diff --git a/zeitung/parts/students/TGM13.1/.gitkeep b/zeitung/parts/students/TGM13.1/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/zeitung/parts/students/TGM13.1/.gitkeep diff --git a/zeitung/parts/students/TGM13.2/.gitkeep b/zeitung/parts/students/TGM13.2/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/zeitung/parts/students/TGM13.2/.gitkeep diff --git a/zeitung/parts/students/TGTM13.1/.gitkeep b/zeitung/parts/students/TGTM13.1/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/zeitung/parts/students/TGTM13.1/.gitkeep diff --git a/zeitung/parts/studenttemplate.tex b/zeitung/parts/studenttemplate.tex index 0bb97e6..eed97ac 100644 --- a/zeitung/parts/studenttemplate.tex +++ b/zeitung/parts/studenttemplate.tex @@ -2,49 +2,81 @@ \clearpage +% Returns a default file if not found +\providecommand\dfincludegraphics[2][]{ + \IfFileExists{#2} + { + \includegraphics[#1]{#2} + } + { + %\fbox{File not found} + } +} + \providecommand\studentimages[1]{% - % Bild in Ring - \begin{tikzpicture}[remember picture, overlay] - \node[inner sep=0pt] at (2, -4) { - \includegraphics[keepaspectratio=true, width=200pt]{parts/students/figures/#1.jpg} - }; - \end{tikzpicture} + \checkoddpage % Ring - \begin{tikzpicture}[remember picture, overlay] - \node[inner sep=0pt] at (2, -4) { - \includegraphics[keepaspectratio=true, width=250pt]{ring.png} - }; - \end{tikzpicture} + \def\ringx{50pt} + \def\ringy{250pt} + \def\ringwidth{250pt} + \def\ringimgwidth{180pt} + \def\ringoffset{(\ringwidth - \ringimgwidth) / 2} + \ifoddpage\else + \def\ringx{-\paperwidth - 350pt} % ringwidth + 2 * ringx + \fi + \AddToShipoutPictureBG*{ + \AtTextUpperLeft{ + \put(-\ringx + \ringoffset, -\ringy + \ringoffset){ + \dfincludegraphics[keepaspectratio=true, width=\ringimgwidth]{parts/students/figures/bornerma.jpg} + } + \put(-\ringx, -\ringy){ + \oddflip[keepaspectratio=true, width=\ringwidth]{ring.png} + } + } + } - % Bild in Rahmen - \begin{tikzpicture}[remember picture, overlay] - \node[inner sep=0pt] at (14, -18.5) { - \includegraphics[keepaspectratio=true, width=160pt]{parts/students/figures/#1_child.jpg} - }; - \end{tikzpicture} - - % Rahmen - \begin{tikzpicture}[remember picture, overlay] - \node[inner sep=0pt] at (14, -18) { - \includegraphics[keepaspectratio=true, width=180pt]{rahmen.png} - }; - \end{tikzpicture} + % Frame + \def\framex{130pt} + \def\framey{40pt} + \def\framewidth{180pt} + \def\frameimgwidth{160pt} + \def\frameoffset{(\framewidth - \frameimgwidth) / 2} + \ifoddpage\else + \def\framex{518pt} % paperwidth - framewidth / 2 + \fi + \AddToShipoutPictureBG*{ + \AtTextLowerLeft{ + \put(\textwidth - \framex + \frameoffset, \framey + \frameoffset){ + \dfincludegraphics[keepaspectratio=true, width=\frameimgwidth]{parts/students/figures/bornerma_child.jpg} + } + \put(\textwidth - \framex, \framey){ + \oddflip[keepaspectratio=true, width=\framewidth]{rahmen.png} + } + } + } } \providecommand\studentprofile[8]{% \sectionmark{Steckbrief - #1} + \checkoddpage % Steckbrief Tabelle + \ifoddpage + \def\tablex{12} + \else + \def\tablex{3} + \fi + \def\tabley{-5} \begin{tikzpicture}[overlay] - \node[text width=250pt, align=left] at (12, -4) { + \node[text width=250pt, align=left] at (\tablex, \tabley) { \Large{\begin{tabular}{@{}ll@{}} - \textbf{Name:} & #1 \\ - \textbf{Geburtstag:} & #2 \\ - \textbf{Lieblingsfach:} & #3 \\ - \textbf{Hobbies:} & #4 \\ - \textbf{Lieblingsgenre:} & #5 \\ - \end{tabular}}\\~\\ + \textbf{Name:} & #1 \\ + \textbf{Geburtstag:} & #2 \\ + \textbf{Lieblingsfach:} & #3 \\ + \textbf{Hobbies:} & #4 \\ + \textbf{Lieblingsgenre:} & #5 \\ + \end{tabular}}\\~\\ \textbf{Das werde ich am meisten vermissen:}\\#6\\~\\ \textbf{Ohne das hätte ich die Oberstufe nicht geschafft:}\\#7\\~\\ \textbf{Lebensmotto:}\\#8\\~\\ @@ -53,12 +85,20 @@ } \providecommand\studenttable[2]{% - \vskip 9cm - \hspace*{-1.2cm} + \checkoddpage + + \ifoddpage + \def\tablex{-1.25cm} + \else + \def\tablex{5cm} + \fi + + \vskip 10cm + \hspace*{\tablex} \Large{\begin{tabular}{@{}ll@{}} - \textbf{Erkennungsmerkmale:} & #1 \\ - \textbf{Zukunftspläne:} & #2 \\ - \end{tabular}} + \textbf{Erkennungsmerkmale:} & #1 \\ + \textbf{Zukunftspläne:} & #2 \\ + \end{tabular}} } \providecommand\studentcomments[1]{% |