Webhook fix

This commit is contained in:
ZyLacx 2023-02-08 18:47:06 +01:00
parent ba3c061d8d
commit 89fecf85be

View file

@ -1,15 +1,14 @@
const secret = `${process.env.GITHUB_WEBHOOK}` require('dotenv').config()
const repo = "/home/moover/MOOver"
const http = require('http') const http = require('http')
const crypto = require('crypto') const crypto = require('crypto')
const exec = require('child_process').exec const exec = require('child_process').exec
const secret = `${process.env.GITHUB_WEBHOOK}`
const repo = "/home/moover/MOOver"
http.createServer(function (req, res) { http.createServer(function (req, res) {
req.on('data', function (chunk) { req.on('data', function (chunk) {
let sig = "sha1=" + crypto.createHmac('sha1', secret).update(chunk.toString()).digest('hex') let sig = "sha1=" + crypto.createHmac('sha1', secret).update(chunk.toString()).digest('hex')
console.log(`Got a request! comparing ${process.env.GITHUB_WEBHOOK} \n==\n ${req.headers["x-hub-signature"]}`)
if (req.headers["x-hub-signature"] == sig) { if (req.headers["x-hub-signature"] == sig) {
console.log("updating moover...") console.log("updating moover...")
exec("pm2 stop 'MOOver - main' && " + " cd " + repo + "&& git pull" + " && npm install" + " pm2 start 'MOOver - main'") exec("pm2 stop 'MOOver - main' && " + " cd " + repo + "&& git pull" + " && npm install" + " pm2 start 'MOOver - main'")
@ -21,10 +20,6 @@ http.createServer(function (req, res) {
res.end('Hello World\n') res.end('Hello World\n')
}).listen(5050, "127.0.0.1", () => { }).listen(5050, "127.0.0.1", () => {
console.log(`Server is running on http://"127.0.0.1":5050`) console.log(`Server is running`)
}) })
console.log("running webhook!")