mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-07 13:43:06 -04:00
41 lines
No EOL
1.1 KiB
JavaScript
41 lines
No EOL
1.1 KiB
JavaScript
const superagent = require('superagent')
|
|
|
|
const MAINTOWER_BASE_URL = `https://labscore-v2.vercel.app/maintower/`
|
|
|
|
let maintowerClient = "1fepg2wdk-prod"
|
|
if(process.env.MAINTOWER_OVERRIDE) maintowerClient = process.env.MAINTOWER_OVERRIDE
|
|
|
|
module.exports.maintower = async function (packages, type){
|
|
try{
|
|
let res = await superagent.post(MAINTOWER_BASE_URL + 'invoke')
|
|
.set({
|
|
"Authorization": process.env.API_KEY,
|
|
"x-labscore-client": "labscore/2.0"
|
|
})
|
|
.query({
|
|
client: maintowerClient,
|
|
type: type
|
|
})
|
|
.send(packages)
|
|
if(res.body.status == 0) return res.body.id;
|
|
throw res.body.message
|
|
}catch(e){
|
|
console.log(e)
|
|
throw "Maintower request failed."
|
|
}
|
|
}
|
|
|
|
module.exports.basecamp = async function (log){
|
|
try{
|
|
let res = await superagent.post(MAINTOWER_BASE_URL + 'basecamp')
|
|
.set({
|
|
"Authorization": process.env.API_KEY,
|
|
"x-labscore-client": "labscore/2.0"
|
|
})
|
|
.send({log})
|
|
return;
|
|
}catch(e){
|
|
console.log(e)
|
|
throw "Basecamp request failed."
|
|
}
|
|
} |