working remote update uwu

This commit is contained in:
monty 2019-12-09 00:07:36 +01:00
parent abe9de3773
commit 2271bd86ba
2 changed files with 20 additions and 18 deletions

View File

@ -79,12 +79,8 @@ module.exports = (client) => {
});
});
app.get('/update', async (req, res) => {
if (req.headers.authorization !== 'Update') {
res.status(400).jsonp({
success: false,
message: 'You are not authorized to access this Endpoint'
});
}
console.log(req.headers['user-agent']);
if (req.headers.authorization === 'Update') {
await exec('git pull')
.then((r) => {
console.log('Pulled latest changes');
@ -92,7 +88,7 @@ module.exports = (client) => {
success: true,
message: 'Successfully pulled latest changes'
});
trying.edit('```fix\n' + r.stdout + '```');
//trying.edit('```fix\n' + r.stdout + '```');
})
.catch((error) => {
res.status(400).jsonp({
@ -101,6 +97,12 @@ module.exports = (client) => {
});
console.error(error);
});
} else {
res.status(400).jsonp({
success: false,
message: 'You are not authorized to access this Endpoint'
});
}
});
app.listen(port /* , hostname */, () => {

View File

@ -9,7 +9,7 @@
<divide></divide>
<div class="socials">
{{#each social}}
<a rel="me" href="https://{{link}}" class="{{name}}">x
<a rel="me" href="https://{{link}}" class="{{name}}">
<svg width="40" height="40" role="img" viewBox="0 0 24 24">
<title>{{name}} Icon</title>
<path d="{{icon.path}}"></path>