Update link to projektna naloga

This commit is contained in:
Nikola Petrov 2024-02-19 00:01:16 +00:00
parent 3899531e33
commit 7034557fc5

View File

@ -1,95 +1,95 @@
var express = require('express'); var express = require('express');
var router = express.Router(); var router = express.Router();
/* GET home page. */ /* GET home page. */
router.get('/', function (req, res, next) { router.get('/', function (req, res, next) {
const entry = [ const entry = [
{ {
img: "/images/projects/Advent_Of_Code_Logo.jpg", img: "/images/projects/Advent_Of_Code_Logo.jpg",
title: "Advent of code", title: "Advent of code",
des: "My solutions for AOC", des: "My solutions for AOC",
link: "https://gitlab.com/homep/advent_of_code" link: "https://gitlab.com/homep/advent_of_code"
}, },
{ {
img: "/images/projects/password_manager.jpeg", img: "/images/projects/password_manager.jpeg",
title: "Password manager", title: "Password manager",
des: "CLI app", des: "CLI app",
link: "https://gitlab.com/homep/password_manager" link: "https://gitlab.com/homep/password_manager"
}, },
{ {
img: "/images/projects/media_player.jpeg", img: "/images/projects/media_player.jpeg",
title: "Media player", title: "Media player",
des: "WPF", des: "WPF",
link: "https://gitlab.com/school221/semester_3/uporabniski_vmesniki" link: "https://gitlab.com/school221/semester_3/uporabniski_vmesniki"
}, },
{ {
img: "/images/logo.png", img: "/images/logo.png",
title: "Server", title: "Server",
des: "Everything running on my server", des: "Everything running on my server",
link: "https://gitlab.com/homep/server" link: "https://gitlab.com/homep/server"
}, },
{ {
img: "/images/projects/projektna_naloga.jpeg", img: "/images/projects/projektna_naloga.jpeg",
title: "Highway Tracker", title: "Highway Tracker",
des: "School project", des: "School project",
link: "https://gitlab.com/school221/semester_4/projektna_naloga" link: "https://gitlab.com/school221/projektna_naloga"
}, },
{ {
img: "/images/projects/bitshift.jpeg", img: "/images/projects/bitshift.jpeg",
title: "BitShifters", title: "BitShifters",
des: "unity", des: "unity",
link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/bitshifters" link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/bitshifters"
}, },
{ {
img: "/images/projects/tetris.jpeg", img: "/images/projects/tetris.jpeg",
title: "Tetris", title: "Tetris",
des: "WPF", des: "WPF",
link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/tetrisrps" link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/tetrisrps"
}, },
{ {
img: "/images/projects/games.jpeg", img: "/images/projects/games.jpeg",
title: "Games", title: "Games",
des: "java", des: "java",
link: "https://gitlab.com/school221/semester_5/uvod_v_razvoj_racunalniskih_iger" link: "https://gitlab.com/school221/semester_5/uvod_v_razvoj_racunalniskih_iger"
} }
]; ];
res.render('main/2_0', { title: 'Nikola Petrov', disableBootStrap: true, entry }); res.render('main/2_0', { title: 'Nikola Petrov', disableBootStrap: true, entry });
}); });
router.get('/old', function (req, res, next) { router.get('/old', function (req, res, next) {
res.render('main/1_0', { title: 'Nikola Petrov' }); res.render('main/1_0', { title: 'Nikola Petrov' });
}); });
router.get('/mail', function (req, res, next) { router.get('/mail', function (req, res, next) {
res.redirect('https://privateemail.com/'); res.redirect('https://privateemail.com/');
}); });
router.get('/list', function (req, res, next) { router.get('/list', function (req, res, next) {
res.render('list', { title: 'List' }); res.render('list', { title: 'List' });
}); });
router.get('/cash', function (req, res, next) { router.get('/cash', function (req, res, next) {
res.render('cash', { title: 'Cash' }); res.render('cash', { title: 'Cash' });
}); });
router.get('/wake', function (req, res, next) { router.get('/wake', function (req, res, next) {
res.render('wake', { title: 'Cash' }); res.render('wake', { title: 'Cash' });
}); });
const checkAuthenticated = require('../middleware/checkAuthenticated.js'); const checkAuthenticated = require('../middleware/checkAuthenticated.js');
const wakeOnLan = require('@mi-sec/wol'); const wakeOnLan = require('@mi-sec/wol');
router.post('/wake', checkAuthenticated, function (req, res) { router.post('/wake', checkAuthenticated, function (req, res) {
wakeOnLan(req.user.mac_address, { wakeOnLan(req.user.mac_address, {
address: '255.255.255.255', address: '255.255.255.255',
packets: 1, packets: 1,
interval: 100, interval: 100,
port: 9 port: 9
}); });
res.render('wake', { message: 'Waking up' }); res.render('wake', { message: 'Waking up' });
}); });
const userRouter = require('./user'); const userRouter = require('./user');
//router.use('/user', userRouter); //router.use('/user', userRouter);
module.exports = router; module.exports = router;