add wake on lan

This commit is contained in:
Nikola Petrov 2023-10-12 22:21:55 +02:00
parent 51723f029c
commit 6d3dcc773d
6 changed files with 42 additions and 20 deletions

View File

@ -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();

View File

@ -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);

View File

@ -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",

View File

@ -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);

View File

@ -12,17 +12,21 @@
<label class="form-label">twitch_client_secret</label>
<input type="text" class="form-control" name="twitch_client_secret">
</div>
<div class="mb-3">
<label class="form-label">mac_address</label>
<input type="text" class="form-control" name="mac_address">
</div>
<div class="mb-3">
<label class="form-label">Password</label>
<input type="password" class="form-control" name="password" id="password">
<input type="password" class="form-control" name="pass" id="password">
</div>
<button type="submit" class="btn btn-primary">Add</button>
</form>
<br>
<div class="btn btn-primary" id="delete">Delete</div>
<div class="btn btn-primary" id="delete" onclick="deleteUser()">Delete</div>
<br>
<div class="btn btn-primary" id="get"> Get</div>
<div class="btn btn-primary" id="get" onclick="getUser()"> Get</div>
<br>
<div id="text"></div>
@ -51,12 +55,8 @@
body: JSON.stringify({ "password": password }),
})
const data = await response.json();
console.log(data);
document.getElementById('text').textContent = JSON.stringify(data, null, 2);
}
document.getElementById('delete').addEventListener('click', deleteUser);
document.getElementById('get').addEventListener('click', getUser);
</script>
</div>

10
views/wake.hbs Normal file
View File

@ -0,0 +1,10 @@
<div class="container">
<form action="/wake" method="post">
<div class="mb-3">
<label class="form-label">Password</label>
<input type="password" class="form-control" name="pass">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
{{message}}
</div>