add wake on lan
This commit is contained in:
parent
51723f029c
commit
6d3dcc773d
@ -3,11 +3,7 @@ var UserModel = require('../models/userModel');
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
||||||
create: async function (req, res) {
|
create: async function (req, res) {
|
||||||
console.log(req.body);
|
const pass = req.body.pass;
|
||||||
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;
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const userFound = await UserModel.findOne({ pass: pass });
|
const userFound = await UserModel.findOne({ pass: pass });
|
||||||
@ -16,10 +12,11 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const user = new UserModel({
|
const user = new UserModel({
|
||||||
pass: pass,
|
pass,
|
||||||
omdb_key: omdb_key,
|
omdb_key: req.body.omdb_key,
|
||||||
twitch_client_id: twitch_client_id,
|
twitch_client_id: req.body.twitch_client_id,
|
||||||
twitch_client_secret: twitch_client_secret,
|
twitch_client_secret: req.body.twitch_client_secret,
|
||||||
|
mac_address: req.body.mac_address,
|
||||||
});
|
});
|
||||||
|
|
||||||
await user.save();
|
await user.save();
|
||||||
@ -30,9 +27,6 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* mediaController.delete()
|
|
||||||
*/
|
|
||||||
remove: async function (req, res) {
|
remove: async function (req, res) {
|
||||||
try {
|
try {
|
||||||
await userFound.remove();
|
await userFound.remove();
|
||||||
|
@ -6,6 +6,7 @@ var userSchema = new Schema({
|
|||||||
'omdb_key': String,
|
'omdb_key': String,
|
||||||
'twitch_client_id': String,
|
'twitch_client_id': String,
|
||||||
'twitch_client_secret': String,
|
'twitch_client_secret': String,
|
||||||
|
'mac_address': String,
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = mongoose.model('user', userSchema);
|
module.exports = mongoose.model('user', userSchema);
|
@ -7,6 +7,7 @@
|
|||||||
"dev": "nodemon ./app.js"
|
"dev": "nodemon ./app.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@mi-sec/wol": "^1.0.13",
|
||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
"hbs": "^4.2.0",
|
"hbs": "^4.2.0",
|
||||||
"http": "^0.0.1-security",
|
"http": "^0.0.1-security",
|
||||||
@ -14,4 +15,4 @@
|
|||||||
"morgan": "~1.9.1",
|
"morgan": "~1.9.1",
|
||||||
"multer": "^1.4.5-lts.1"
|
"multer": "^1.4.5-lts.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -22,6 +22,22 @@ router.get('/cash', function (req, res, next) {
|
|||||||
res.render('cash', { title: 'Cash' });
|
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');
|
const userRouter = require('./user');
|
||||||
//router.use('/user', userRouter);
|
//router.use('/user', userRouter);
|
||||||
|
|
||||||
|
@ -12,17 +12,21 @@
|
|||||||
<label class="form-label">twitch_client_secret</label>
|
<label class="form-label">twitch_client_secret</label>
|
||||||
<input type="text" class="form-control" name="twitch_client_secret">
|
<input type="text" class="form-control" name="twitch_client_secret">
|
||||||
</div>
|
</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">
|
<div class="mb-3">
|
||||||
<label class="form-label">Password</label>
|
<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>
|
</div>
|
||||||
|
|
||||||
<button type="submit" class="btn btn-primary">Add</button>
|
<button type="submit" class="btn btn-primary">Add</button>
|
||||||
</form>
|
</form>
|
||||||
<br>
|
<br>
|
||||||
<div class="btn btn-primary" id="delete">Delete</div>
|
<div class="btn btn-primary" id="delete" onclick="deleteUser()">Delete</div>
|
||||||
<br>
|
<br>
|
||||||
<div class="btn btn-primary" id="get"> Get</div>
|
<div class="btn btn-primary" id="get" onclick="getUser()"> Get</div>
|
||||||
<br>
|
<br>
|
||||||
<div id="text"></div>
|
<div id="text"></div>
|
||||||
|
|
||||||
@ -51,12 +55,8 @@
|
|||||||
body: JSON.stringify({ "password": password }),
|
body: JSON.stringify({ "password": password }),
|
||||||
})
|
})
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
console.log(data);
|
|
||||||
document.getElementById('text').textContent = JSON.stringify(data, null, 2);
|
document.getElementById('text').textContent = JSON.stringify(data, null, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
document.getElementById('delete').addEventListener('click', deleteUser);
|
|
||||||
document.getElementById('get').addEventListener('click', getUser);
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
10
views/wake.hbs
Normal file
10
views/wake.hbs
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user