csc-webhooks/csccp.js

64 lines
1.8 KiB
JavaScript
Raw Normal View History

2022-06-07 02:29:45 -04:00
const exec = require('await-exec')
const express = require('express')
const app = express()
const port = 2344
2022-06-14 01:50:50 -04:00
require('dotenv').config();
if(!process.env.authToken){
console.error("No Auth token set!! fill out .env-example and rename to .env!");
}
2022-06-07 02:29:45 -04:00
app.get('/cscclassprofilestaging', async (req, res) => {
console.log("Received build request");
2022-06-14 01:50:50 -04:00
2022-06-09 00:30:52 -04:00
const buildId = req.query.ref;
2022-06-14 01:50:50 -04:00
const name = `${buildId}-csc-class-profile-staging`
2022-06-09 00:30:52 -04:00
const publicUrl = `${name}-snedadah.k8s.csclub.cloud`
const image = `registry.cloud.csclub.uwaterloo.ca/snedadah/csc-class-profile-staging:${buildId}`
2022-06-14 01:50:50 -04:00
if (!req.headers.authorization) {
console.log("No auth!");
return res.status(403).json({ error: 'No credentials sent!' });
}
if(req.headers.authorization != process.env.authToken){
console.log("Invalid auth!");
return res.status(401).json({error: 'Invalid Auth Token!'});
}
2022-06-18 15:40:54 -04:00
// command for generating deployment template
//await call(`kubectl create deployment ${name} --image ${image} --port=80 -o yaml --dry-run > template.yaml`);
console.log(`${(new Date()).toUTCString()} - Doing deploy for for branch: ${req.query.ref}`);
2022-06-07 02:29:45 -04:00
// try deleting incase it already exists
2022-06-09 00:30:52 -04:00
await call(`kubectl delete deployment ${name}`);
// replace variables in template with correct name and image
await call(`cat deployTemplate.yaml | sed "s@__NAME__@${name}@g" | sed "s@__IMAGE__@${image}@g" | kubectl apply -f -`);
2022-06-07 02:29:45 -04:00
await call(`kubectl expose deployment ${name}`);
2022-06-09 00:30:52 -04:00
await call(`kubectl create ingress ${name} --rule='${publicUrl}/*=${name}:80'`);
2022-06-07 02:29:45 -04:00
console.log("Deployed to " + publicUrl);
2022-06-09 00:30:52 -04:00
res.send(publicUrl);
2022-06-07 02:29:45 -04:00
})
async function call(cmd){
let out
try{
out = await exec(cmd);
console.log(out)
2022-06-07 02:29:45 -04:00
}catch(e)
{
console.log(e, out)
}
}
2022-06-07 02:29:45 -04:00
app.listen(port, () => {
2022-06-09 00:30:52 -04:00
console.log(`Listening on port ${port}`)
2022-06-07 02:29:45 -04:00
})