-
-
Save Hacksore/2eeb8c9b4384c33f423da15beeb028b7 to your computer and use it in GitHub Desktop.
test bluelinky
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require("express"); | |
const BlueLinky = require("bluelinky"); | |
const bodyParser = require("body-parser"); | |
const config = { | |
validation_key: 'something you make', | |
username: 'username', | |
password: 'password', | |
brand: 'hyundai', | |
region: 'US', | |
vin: 'vin', | |
pin: 'pin', | |
}; | |
const app = express(); | |
app.use(bodyParser.json()); | |
let client; | |
let vehicle; | |
const middleWare = async (req, res, next) => { | |
const ip = req.connection.remoteAddress; | |
console.log(req.path, ip); | |
if (req.body.VALIDATION_KEY !== config.validation_key) { | |
console.log("Bad key used by: " + ip); | |
return res.send({ error: "bad key" }); | |
} | |
if (client === undefined) { | |
client = new BlueLinky({ | |
username: config.username, | |
password: config.password, | |
brand: config.brand, | |
region: config.region, | |
pin: config.pin | |
}); | |
const allVehicles = await client.getVehicles(); | |
console.log(allVehicles) | |
// set the first one | |
vehicle = allVehicles[0]; | |
} | |
return next(); | |
}; | |
app.use(middleWare); | |
app.post("/start", async (req, res) => { | |
let response; | |
try { | |
response = await vehicle.start({ | |
airCtrl: true, | |
igniOnDuration: 10, | |
airTempvalue: 60 | |
}); | |
} catch (e) { | |
response = { | |
error: e.message | |
}; | |
} | |
res.send(response); | |
}); | |
app.post("/lock", async (req, res) => { | |
let response; | |
try { | |
response = await vehicle.lock(); | |
} catch (e) { | |
console.log(e); | |
response = { | |
error: e.message | |
}; | |
} | |
res.send(response); | |
}); | |
app.post("/status", async (req, res) => { | |
let response; | |
try { | |
response = await vehicle.status(); | |
} catch (e) { | |
console.log(e); | |
response = { | |
error: e.message | |
}; | |
} | |
res.send(response); | |
}); | |
app.listen(8080, "0.0.0.0"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment