aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--profile/index.js54
-rw-r--r--profile/public/script.js1
-rw-r--r--profile/public/user.html18
-rw-r--r--profile/public/user.js0
-rw-r--r--profile/public/users.html19
-rw-r--r--profile/public/users.js9
6 files changed, 94 insertions, 7 deletions
diff --git a/profile/index.js b/profile/index.js
index ac46304..e6627d6 100644
--- a/profile/index.js
+++ b/profile/index.js
@@ -7,8 +7,6 @@ app.use(fileupload({}));
app.use("/", express.static(__dirname + "/public/"));
-app.get("/user/:uid", async (req, res) => {});
-
// Basic API
app.get("/api/user", async (req, res) => {
const user = (await db.query("SELECT name, surname FROM users WHERE id = ?", [req.session.uid]))[0];
@@ -97,12 +95,56 @@ app.put("/api/update", async (req, res) => {
});
// Comments API
-app.get("/api/comments/:uid", async (req, res) => {});
+app.get("/api/comments/:uid", async (req, res) => {
+ const uid = req.params.uid;
+ const comments = await db.query("SELECT * FROM profile_comments WHERE profile_id = ?", [uid]);
+ res.json(comments);
+});
-app.post("/api/comment", async (req, res) => {});
+app.post("/api/comment", async (req, res) => {
+ const { pid, comment } = req.body;
+ if (!pid || !comment) return res.send("error");
+ try {
+ await db.query("INSERT INTO profile_comments (user_id, profile_id, comment) VALUES (?,?,?)", [
+ req.session.uid,
+ pid,
+ comment,
+ ]);
+ } catch (e) {
+ console.error(e);
+ return res.send("error");
+ }
+});
-app.put("/api/comment", async (req, res) => {});
+app.put("/api/comment", async (req, res) => {
+ const { pid, cid, comment } = req.body;
+ if (!pid || !comment || !cid) return res.send("error");
+ try {
+ await db.query("UPDATE profile_comments SET comment = ? WHERE user_id = ? AND profile_id = ? AND id = ?", [
+ comment,
+ req.session.uid,
+ pid,
+ cid,
+ ]);
+ } catch (e) {
+ console.error(e);
+ return res.send("error");
+ }
+});
-app.delete("/api/comment", async (req, res) => {});
+app.delete("/api/comment", async (req, res) => {
+ const { pid, cid } = req.body;
+ if (!pid || !cid) return res.send("error");
+ try {
+ await db.query("DELETE FROM profile_comments WHERE user_id = ? AND profile_id = ? AND id = ?", [
+ req.session.uid,
+ pid,
+ cid,
+ ]);
+ } catch (e) {
+ console.error(e);
+ return res.send("error");
+ }
+});
module.exports = app;
diff --git a/profile/public/script.js b/profile/public/script.js
index 2a170d2..3b39460 100644
--- a/profile/public/script.js
+++ b/profile/public/script.js
@@ -51,7 +51,6 @@ form.addEventListener("submit", async (evt) => {
if (res !== "ok") alert("AHHHH");
else location.reload();
});
-
fetch("api/user")
.then((response) => response.json())
.then(updateHeading)
diff --git a/profile/public/user.html b/profile/public/user.html
new file mode 100644
index 0000000..85c186e
--- /dev/null
+++ b/profile/public/user.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width" />
+ <title></title>
+ </head>
+ <body>
+ <div class="pure-menu pure-menu-horizontal">
+ <a href="/" class="pure-menu-item pure-menu-link">Home</a>
+ <a href="/auth/api/logout" class="pure-menu-item pure-menu-link">Logout</a>
+ </div>
+
+ <main></main>
+
+ <script src="user.js" charset="utf-8"></script>
+ </body>
+</html>
diff --git a/profile/public/user.js b/profile/public/user.js
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/profile/public/user.js
diff --git a/profile/public/users.html b/profile/public/users.html
new file mode 100644
index 0000000..550ff4b
--- /dev/null
+++ b/profile/public/users.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width" />
+ <title>Benutzer</title>
+ <link rel="stylesheet" href="style.css" type="text/css" media="screen" charset="utf-8" />
+ </head>
+ <body>
+ <div class="pure-menu pure-menu-horizontal">
+ <a href="/" class="pure-menu-item pure-menu-link">Home</a>
+ <a href="/auth/api/logout" class="pure-menu-item pure-menu-link">Logout</a>
+ </div>
+
+ <main></main>
+
+ <script src="users.js" charset="utf-8"></script>
+ </body>
+</html>
diff --git a/profile/public/users.js b/profile/public/users.js
new file mode 100644
index 0000000..0f3700a
--- /dev/null
+++ b/profile/public/users.js
@@ -0,0 +1,9 @@
+function addUser(user) {
+ const div = document.createElement("div");
+ // Idk what to do lel
+}
+
+fetch("api/users")
+ .then((response) => response.json())
+ .then((response) => response.forEach(addUser))
+ .catch(console.error);