-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
71 lines (50 loc) · 2.13 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const express = require("express");
const dotenv = require("dotenv");
const { createClient } = require("@supabase/supabase-js");
const bodyParser = require("body-parser");
const cookieParser = require("cookie-parser");
const path = require("path");
const fs = require("fs");
dotenv.config();
const app = express();
const PORT = 3000;
const supabase = createClient(process.env.SUPABASE_URL, process.env.SUPABASE_KEY);
app.use(bodyParser.urlencoded({ extended: true }));
app.use(cookieParser());
app.use(express.static("public"));
app.get("/", (req, res) => {
res.sendFile(path.join(__dirname, "public", "index.html"));
});
app.post("/signup", async (req, res) => {
const { email, password } = req.body;
const { user, error } = await supabase.auth.signUp({ email, password });
if (error) return res.redirect(`/error.html?msg=${encodeURIComponent(error.message)}`);
res.redirect("/signup_success.html");
});
app.post("/login", async (req, res) => {
const { email, password } = req.body;
const { data, error } = await supabase.auth.signInWithPassword({ email, password });
if (error) return res.redirect(`/error.html?msg=${encodeURIComponent(error.message)}`);
res.cookie("access_token", data.session.access_token, { httpOnly: true });
res.redirect("/private");
});
app.get("/private", async (req, res) => {
const token = req.cookies.access_token;
if (!token) return res.redirect("/");
const { data, error } = await supabase.auth.getUser(token);
if (error) return res.redirect("/");
const filePath = path.join(__dirname, "private.html");
fs.readFile(filePath, "utf8", (err, html) => {
if (err) {
console.error("Error: private.html could not be loaded!", err);
return res.status(500).send("Server error: private.html not found.");
}
const modifiedHtml = html.replace("{{userEmail}}", data.user.email);
res.send(modifiedHtml);
});
});
app.get("/logout", (req, res) => {
res.clearCookie("access_token");
res.redirect("/");
});
app.listen(PORT, () => console.log(`Server running on http://localhost:${PORT}`));