diff --git a/controllers/userController.js b/controllers/userController.js index 57d40a3..46f0580 100644 --- a/controllers/userController.js +++ b/controllers/userController.js @@ -3,11 +3,7 @@ var UserModel = require('../models/userModel'); module.exports = { create: async function (req, res) { - console.log(req.body); - const pass = req.body.password; - const omdb_key = req.body.omdb_key; - const twitch_client_id = req.body.twitch_client_id; - const twitch_client_secret = req.body.twitch_client_secret; + const pass = req.body.pass; try { const userFound = await UserModel.findOne({ pass: pass }); @@ -16,10 +12,11 @@ module.exports = { } const user = new UserModel({ - pass: pass, - omdb_key: omdb_key, - twitch_client_id: twitch_client_id, - twitch_client_secret: twitch_client_secret, + pass, + omdb_key: req.body.omdb_key, + twitch_client_id: req.body.twitch_client_id, + twitch_client_secret: req.body.twitch_client_secret, + mac_address: req.body.mac_address, }); await user.save(); @@ -30,9 +27,6 @@ module.exports = { } }, - /** - * mediaController.delete() - */ remove: async function (req, res) { try { await userFound.remove(); diff --git a/models/userModel.js b/models/userModel.js index 864a2ba..9279228 100644 --- a/models/userModel.js +++ b/models/userModel.js @@ -6,6 +6,7 @@ var userSchema = new Schema({ 'omdb_key': String, 'twitch_client_id': String, 'twitch_client_secret': String, + 'mac_address': String, }); module.exports = mongoose.model('user', userSchema); \ No newline at end of file diff --git a/package.json b/package.json index 2de251b..62e1475 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "dev": "nodemon ./app.js" }, "dependencies": { + "@mi-sec/wol": "^1.0.13", "express": "^4.18.2", "hbs": "^4.2.0", "http": "^0.0.1-security", @@ -14,4 +15,4 @@ "morgan": "~1.9.1", "multer": "^1.4.5-lts.1" } -} \ No newline at end of file +} diff --git a/routes/main.js b/routes/main.js index a6c6bf9..b73302b 100644 --- a/routes/main.js +++ b/routes/main.js @@ -22,6 +22,22 @@ router.get('/cash', function (req, res, next) { res.render('cash', { title: 'Cash' }); }); +router.get('/wake', function (req, res, next) { + res.render('wake', { title: 'Cash' }); +}); + +const checkAuthenticated = require('../middleware/checkAuthenticated.js'); +const wakeOnLan = require('@mi-sec/wol'); +router.post('/wake', checkAuthenticated, function (req, res) { + wakeOnLan(req.user.mac_address, { + address: '255.255.255.255', + packets: 1, + interval: 100, + port: 9 + }); + res.render('wake', { message: 'Waking up' }); +}); + const userRouter = require('./user'); //router.use('/user', userRouter); diff --git a/views/user.hbs b/views/user.hbs index 9581ee8..a01bfcc 100644 --- a/views/user.hbs +++ b/views/user.hbs @@ -12,17 +12,21 @@ +