This commit is contained in:
Nikola Petrov 2023-10-04 20:19:16 +02:00
parent ea623cedc8
commit 63346de8c1
12 changed files with 61 additions and 58 deletions

View File

@ -2,15 +2,13 @@ var cashTransactionModel = require('../models/cashTransactionModel.js');
module.exports = { module.exports = {
list: async function (req, res) { list: async function (req, res) {
try {
try{
const transactions = await cashTransactionModel.find() const transactions = await cashTransactionModel.find()
const data = { const data = {
messages: transactions messages: transactions
}; };
return res.render('cash', data); return res.render('cash', data);
}catch (err) { } catch (err) {
return res.status(500).json({ return res.status(500).json({
message: 'Error when getting transactions.', message: 'Error when getting transactions.',
error: err error: err
@ -43,11 +41,11 @@ module.exports = {
else if (rawString.includes("SPLET/TEL NAKUP")) transaction.type = 6; else if (rawString.includes("SPLET/TEL NAKUP")) transaction.type = 6;
else if (rawString.includes("PREDAVTORIZACIJE")) transaction.type = 7; else if (rawString.includes("PREDAVTORIZACIJE")) transaction.type = 7;
if(transaction.type != 0){ if (transaction.type != 0) {
const amountMatch = rawString.match(amountPattern); const amountMatch = rawString.match(amountPattern);
if (amountMatch){ if (amountMatch) {
const amount = amountMatch[0].replace('.', '').replace(',', '.'); const amount = amountMatch[0].replace('.', '').replace(',', '.');
transaction.amount = parseFloat( amount); transaction.amount = parseFloat(amount);
} }
const companyMatch1 = rawString.match(companyPattern1); const companyMatch1 = rawString.match(companyPattern1);
@ -62,18 +60,18 @@ module.exports = {
} }
} }
const trans = await transaction.save() const trans = await transaction.save()
if(trans){ if (trans) {
return res.status(201).json(trans); return res.status(201).json(trans);
} }
else{ else {
return res.status(400).json({message: "something went wrong"}); return res.status(400).json({ message: "something went wrong" });
} }
}, },
delete: async function (req, res) { delete: async function (req, res) {
cashTransactionModel.deleteMany({}) cashTransactionModel.deleteMany({})
.then(data =>{ .then(data => {
res.status(201).json({message:"OK"}); res.status(201).json({ message: "OK" });
}); });
}, },
}; };

View File

@ -16,8 +16,6 @@ module.exports = {
}); });
}, },
create: async function (req, res) { create: async function (req, res) {
var gameCode = req.body.code; var gameCode = req.body.code;
const userFound = req.user; const userFound = req.user;

View File

@ -2,7 +2,7 @@
var UserModel = require('../models/userModel'); var UserModel = require('../models/userModel');
async function checkAuthenticated(req, res, next) { async function checkAuthenticated(req, res, next) {
try{ try {
const password = req.body.pass; const password = req.body.pass;
const userFound = await UserModel.findOne({ pass: password }); const userFound = await UserModel.findOne({ pass: password });
if (!userFound) { if (!userFound) {
@ -10,7 +10,7 @@ async function checkAuthenticated(req, res, next) {
} }
req.user = userFound; req.user = userFound;
return next(); return next();
}catch (err) { } catch (err) {
console.log(err); console.log(err);
return res.status(500).json({ message: 'Error when getting transactions.' }); return res.status(500).json({ message: 'Error when getting transactions.' });
} }

View File

@ -14,7 +14,7 @@ router.use('/series', mediaRouter);
router.use('/cash', checkAuthenticated, cashTransactionRouter); router.use('/cash', checkAuthenticated, cashTransactionRouter);
router.get('/', function (req, res, next) { router.get('/', function (req, res, next) {
res.status(200).json({message: 'API is working'}); res.status(200).json({ message: 'API is working' });
}); });
module.exports = router; module.exports = router;

View File

@ -5,8 +5,8 @@ var checkAuthenticated = require('../../middleware/checkAuthenticated.js');
router.get('/', gameController.list); router.get('/', gameController.list);
router.post('/',checkAuthenticated, gameController.create); router.post('/', checkAuthenticated, gameController.create);
router.delete('/',checkAuthenticated, gameController.remove); router.delete('/', checkAuthenticated, gameController.remove);
module.exports = router; module.exports = router;

View File

@ -15,7 +15,7 @@ router.get('/mail', function (req, res, next) {
}); });
router.get('/list', function (req, res, next) { router.get('/list', function (req, res, next) {
res.render('list', {title: 'List'}); res.render('list', { title: 'List' });
}); });
const userRouter = require('./user'); const userRouter = require('./user');

View File

@ -5,7 +5,7 @@ const checkAuthenticated = require('../middleware/checkAuthenticated.js');
/* GET home page. */ /* GET home page. */
router.get('/', function (req, res, next) { router.get('/', function (req, res, next) {
res.render('user', {title: 'Register'}); res.render('user', { title: 'Register' });
}); });
router.post('/', userController.create); router.post('/', userController.create);

View File

@ -1,17 +1,23 @@
<!doctype html> <!doctype html>
<html lang="en" data-bs-theme="dark"> <html lang="en" data-bs-theme="dark">
<head>
<head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="images/logo.ico" type="image/x-icon"> <link rel="shortcut icon" href="images/logo.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
{{#unless disableBootStrap}} {{#unless disableBootStrap}}
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
{{/unless}} {{/unless}}
<title>{{title}}</title> <title>{{title}}</title>
</head> </head>
<body>
<body>
{{{body}}} {{{body}}}
</body> </body>
</html> </html>

View File

@ -19,7 +19,8 @@
<button class="nav-link" id="gameButton">Games</button> <button class="nav-link" id="gameButton">Games</button>
</li> </li>
<li class="nav-item dropdown"> <li class="nav-item dropdown">
<button class="nav-link dropdown-toggle" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false"> <button class="nav-link dropdown-toggle" id="navbarDropdown" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Sort Sort
</button> </button>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown"> <ul class="dropdown-menu" aria-labelledby="navbarDropdown">

View File

@ -28,27 +28,27 @@
<script> <script>
async function deleteUser(){ async function deleteUser() {
const password = document.getElementById('password').value; const password = document.getElementById('password').value;
const response = await fetch('/user', { const response = await fetch('/user', {
method: 'DELETE', method: 'DELETE',
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
}, },
body: JSON.stringify({"password": password}), body: JSON.stringify({ "password": password }),
}) })
const data = await response.json(); const data = await response.json();
document.getElementById('text').innerHTML = data.message; document.getElementById('text').innerHTML = data.message;
} }
async function getUser(){ async function getUser() {
const password = document.getElementById('password').value; const password = document.getElementById('password').value;
const response = await fetch('/user', { const response = await fetch('/user', {
method: 'PUT', method: 'PUT',
headers: { headers: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
}, },
body: JSON.stringify({"password": password}), body: JSON.stringify({ "password": password }),
}) })
const data = await response.json(); const data = await response.json();
console.log(data); console.log(data);