mirror of
https://gitlab.com/nekoya/web.git
synced 2025-01-03 09:49:17 +01:00
Add API authentication
This commit is contained in:
parent
267f1d051a
commit
77372b2a2c
3 changed files with 121 additions and 90 deletions
|
@ -92,7 +92,8 @@ function checkout(
|
|||
subDistrict,
|
||||
postalCode,
|
||||
logistic,
|
||||
data
|
||||
data,
|
||||
key
|
||||
) {
|
||||
let params = new URLSearchParams({
|
||||
firstName: firstName,
|
||||
|
@ -113,6 +114,9 @@ function checkout(
|
|||
headers: {
|
||||
"Content-Type": "application/x-www-form-urlencoded",
|
||||
},
|
||||
params: {
|
||||
key: key,
|
||||
}
|
||||
};
|
||||
return axios
|
||||
.post(HOST + "/checkout", params, conf)
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
const express = require("express");
|
||||
const bcrypt = require("bcrypt");
|
||||
const randtoken = require("rand-token");
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
const db = require("../modules/db");
|
||||
const mail = require("../modules/mail");
|
||||
const auth = require("../auth/auth");
|
||||
|
||||
const saltRounds = 10;
|
||||
|
||||
|
@ -295,6 +298,14 @@ router.get("/verify-mail", async (req, res) => {
|
|||
});
|
||||
|
||||
router.post("/checkout", async (req, res) => {
|
||||
if (!req.query.key) {
|
||||
res.status(401);
|
||||
res.json({
|
||||
message: "Unauthorized",
|
||||
});
|
||||
} else {
|
||||
auth.auth_checker(req.query.key).then((status) => {
|
||||
if (status) {
|
||||
if (
|
||||
!req.body.firstName ||
|
||||
!req.body.lastName ||
|
||||
|
@ -365,6 +376,14 @@ router.post("/checkout", async (req, res) => {
|
|||
}
|
||||
);
|
||||
}
|
||||
} else {
|
||||
res.status(401);
|
||||
res.json({
|
||||
message: "Unauthorized",
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = router;
|
|
@ -19,7 +19,7 @@ router.get("/", (req, res) => {
|
|||
});
|
||||
|
||||
router.route("/register")
|
||||
.get((_req, res) => {
|
||||
.get((req, res) => {
|
||||
auth.session_converter(req.cookies.session_token).then((key) => {
|
||||
if (key != null) {
|
||||
res.redirect("/");
|
||||
|
@ -45,7 +45,7 @@ router.route("/register")
|
|||
});
|
||||
|
||||
router.route("/login")
|
||||
.get((_req, res) => {
|
||||
.get((req, res) => {
|
||||
auth.session_converter(req.cookies.session_token).then((key) => {
|
||||
if (key != null) {
|
||||
res.redirect("/");
|
||||
|
@ -107,6 +107,9 @@ router.route("/checkout")
|
|||
});
|
||||
})
|
||||
.post((req, res) => {
|
||||
auth.session_converter(req.cookies.session_token).then((key) => {
|
||||
console.log(key);
|
||||
if (key != null) {
|
||||
controller.checkout(
|
||||
req.body.firstName,
|
||||
req.body.lastName,
|
||||
|
@ -120,7 +123,8 @@ router.route("/checkout")
|
|||
req.body.subDistrict,
|
||||
req.body.postalCode,
|
||||
req.body.logistic,
|
||||
req.body.data
|
||||
req.body.data,
|
||||
key
|
||||
)
|
||||
.then((data) => {
|
||||
if (data[0] == 201) {
|
||||
|
@ -141,6 +145,10 @@ router.route("/checkout")
|
|||
}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
res.redirect("/login");
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
router.get("/forgot-password", (_req, res) => {
|
||||
|
|
Loading…
Reference in a new issue