-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
65 lines (53 loc) · 1.89 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const express = require('express');
const app = express();
const { exec } = require('child_process');
require('dotenv').config();
const repoName = process.env.repoName;
const repoDir = process.env.repoDir;
const appPort = process.env.appPort;
app.use(express.json());
//Github Payload
app.post('/payload', async (request, response) => {
response.send('POST Request');
//GitHub Post
const repo = request.body.repository.name;
const resURL = request.body.repository.url;
console.log(`POST from ${resURL}`);
if (repo === repoName) {
console.log('pulling code from GitHub...');
try {
// reset any changes that have been made locally
exec(`git -C ${repoDir} reset --hard`, execCallback);
// and ditch any files that have been added locally too
exec(`git -C ${repoDir} clean -df`, execCallback);
// now pull down the latest
exec(`git -C ${repoDir} pull -f`, execCallback);
// and npm install with --production
exec(`npm -C ${repoDir} install`, execCallback);
console.log(`${repo} Updated`);
} catch {
console.log('Error: Unable to execute git');
}
}
});
//Custom Command POST Request
app.post('/command', async (request, response) => {
response.send('POST Request');
console.log(request.body.cli.toString());
try {
const cli = request.body.cli.toString();
const action = request.body.action.toString();
const processName = request.body.processName.toString();
const output = `${cli} ${action} ${processName}`;
console.log(`Executing ${output}`);
exec(output, execCallback);
} catch {
console.log('Error: Unable to execute command');
}
});
app.listen(appPort);
console.log(`Server listening for payload on port ${appPort}`);
function execCallback(err, stdout, stderr) {
if (stdout) console.log(stdout);
if (stderr) console.log(stderr);
}