aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2020-09-30 22:56:00 +0200
committerMarvin Borner2020-09-30 22:56:00 +0200
commitbda5305e995023d8c2382754d9761ac92a76db88 (patch)
tree9428d5310cc169eb42be01d4b571617eb8fe6416
parent25f43e12bd6b3713b633ec3fec524c6199a68dfa (diff)
Started authentication
-rw-r--r--app.js2
-rw-r--r--auth/index.js14
-rw-r--r--auth/public/index.html9
-rw-r--r--tables.sql37
4 files changed, 62 insertions, 0 deletions
diff --git a/app.js b/app.js
index 1130de1..a527074 100644
--- a/app.js
+++ b/app.js
@@ -2,6 +2,7 @@ require("dotenv").config();
const express = require("express");
const motto = require("./motto");
+const auth = require("./auth");
const app = express();
@@ -10,5 +11,6 @@ app.use(express.json());
app.get("/", (req, res) => res.redirect("/motto"));
app.use("/motto", motto);
+app.use("/auth", auth);
app.listen(5005, () => console.log("Server started on http://localhost:5005"));
diff --git a/auth/index.js b/auth/index.js
new file mode 100644
index 0000000..9bc3f58
--- /dev/null
+++ b/auth/index.js
@@ -0,0 +1,14 @@
+const express = require("express");
+const db = require("../db");
+const app = express.Router();
+
+// TODO: Name list parser (teachers + pupils)
+// TODO: Add users (OTP)
+// TODO: Change passwords
+// TODO: Login (+ Frontend, cookie, etc)
+
+app.use("/", express.static(__dirname + "/public"));
+
+app.get("/api/list", (req, res) => {});
+
+module.exports = app;
diff --git a/auth/public/index.html b/auth/public/index.html
new file mode 100644
index 0000000..c290ab0
--- /dev/null
+++ b/auth/public/index.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width" />
+ <title>Auth</title>
+ </head>
+ <body></body>
+</html>
diff --git a/tables.sql b/tables.sql
index 7cd7268..c6230eb 100644
--- a/tables.sql
+++ b/tables.sql
@@ -9,3 +9,40 @@ CREATE TABLE IF NOT EXISTS theme(
UNIQUE KEY main (main, description)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- TODO: Remove dropping
+DROP TABLE IF EXISTS teachers;
+DROP TABLE IF EXISTS users;
+DROP TABLE IF EXISTS class;
+
+CREATE TABLE IF NOT EXISTS teachers(
+ id INTEGER PRIMARY KEY AUTO_INCREMENT,
+ username VARCHAR(255) NOT NULL,
+ name VARCHAR(255) NOT NULL,
+ middlename VARCHAR(255) NOT NULL,
+ surname VARCHAR(255) NOT NULL,
+ password VARCHAR(255) NOT NULL,
+
+ UNIQUE KEY uk_name (name, middlename, surname)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+CREATE TABLE IF NOT EXISTS class(
+ id INTEGER PRIMARY KEY AUTO_INCREMENT,
+ name VARCHAR(255) NOT NULL,
+ teacher_id INTEGER NOT NULL,
+
+ CONSTRAINT `fk_teacher_class` FOREIGN KEY (teacher_id) REFERENCES teachers (id)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+CREATE TABLE IF NOT EXISTS users(
+ id INTEGER PRIMARY KEY AUTO_INCREMENT,
+ username VARCHAR(255) NOT NULL,
+ name VARCHAR(255) NOT NULL,
+ middlename VARCHAR(255) NOT NULL,
+ surname VARCHAR(255) NOT NULL,
+ password VARCHAR(255) NOT NULL,
+ class_id INTEGER NOT NULL,
+
+ UNIQUE KEY uk_name (name, middlename, surname),
+ CONSTRAINT `fk_class_user` FOREIGN KEY (class_id) REFERENCES class (id)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;