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,20 +2,18 @@ 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
}); });
}; };
}, },
create: async function (req, res) { create: async function (req, res) {
@ -35,20 +33,20 @@ module.exports = {
const amountPattern = /\d{1,3}(?:[.]\d{3})*(?:[.,]\d{2})(?=\sEUR)/; const amountPattern = /\d{1,3}(?:[.]\d{3})*(?:[.,]\d{2})(?=\sEUR)/;
const companyPattern1 = /(?<=(UR,|\sod)\s).*?(?=\s(na\s|za\s|Inf))/; const companyPattern1 = /(?<=(UR,|\sod)\s).*?(?=\s(na\s|za\s|Inf))/;
if (rawString.includes("ZAVRNITEV POS NAKUP")) transaction.type = 2; if (rawString.includes("ZAVRNITEV POS NAKUP")) transaction.type = 2;
else if (rawString.includes("POS NAKUP")) transaction.type = 1; else if (rawString.includes("POS NAKUP")) transaction.type = 1;
else if (rawString.includes("BA DVIG")) transaction.type = 3; else if (rawString.includes("BA DVIG")) transaction.type = 3;
else if (rawString.includes("priliv")) transaction.type = 4; else if (rawString.includes("priliv")) transaction.type = 4;
else if (rawString.includes("SDD")) transaction.type = 5; else if (rawString.includes("SDD")) transaction.type = 5;
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);
if (companyMatch1) transaction.company = companyMatch1[0]; if (companyMatch1) transaction.company = companyMatch1[0];
@ -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,4 +14,4 @@
"morgan": "~1.9.1", "morgan": "~1.9.1",
"multer": "^1.4.5-lts.1" "multer": "^1.4.5-lts.1"
} }
} }

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

@ -27,6 +27,6 @@
<td>{{raw}}</td> <td>{{raw}}</td>
</tr> </tr>
{{/each}} {{/each}}
</tbody> </tbody>
</table> </table>

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

@ -25,30 +25,30 @@
<div class="btn btn-primary" id="get"> Get</div> <div class="btn btn-primary" id="get"> Get</div>
<br> <br>
<div id="text"></div> <div id="text"></div>
<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);