Convert initial server code to intval3 basic structure

This commit is contained in:
mmcwilliams 2017-08-21 22:59:44 -04:00
parent ccb62296a5
commit 6716be882b
1 changed files with 43 additions and 20 deletions

View File

@ -3,16 +3,18 @@
const ble = require('./lib/blootstrap')
const restify = require('restify')
const logger = require('winston')
const gpio = require('gpio')
const fs = require('fs')
const pin = {}
const PACKAGE = require('./package.json')
const PORT = process.env.PORT || 6699
const APPNAME = 'intval3'
const APPNAME = PACKAGE.name
const INDEX = fs.readFileSync('./app/www/index.html', 'utf8')
let app = restify.createServer({
name: APPNAME,
version: '1.0.0'
version: '0.0.1'
})
function createPins () {
@ -20,32 +22,53 @@ function createPins () {
direction: 'out',
interval: 100,
ready : () => {
logger.info(`Set pin 4 to OUTPUT`)
}
})
}
function Frame (dir = true, length = 0, delay = 0) {
function createServer () {
app.get('/', index)
//app.all('/frame', rFrame)
app.get('/status', status)
app.listen(PORT, () => {
console.log(`${APPNAME} listening on port ${PORT}!`)
})
}
function rFrame (req, res, next) {
res.send({})
return next()
}
function frame (dir = true, length = 0, delay = 0) {
}
function rStatus (req, res, next) {
const obj = status()
res.send(obj)
return next()
}
function status () {
const obj = {}
return obj
}
function index (req, res, next) {
res.send(
`<h1>Welcome to my app!</h1>
<form action="/blink" method="post">
<input type="submit" value="Blink!" />
</form>`)
next()
res.end(INDEX)
return next()
}
ble.on('data', (str) => {
console.log(str)
blink()
})
app.get('/', index)
app.all('/blink', blink)
function init () {
createPins()
createServer()
app.listen(PORT, () => {
console.log(`${APPNAME} listening on port ${PORT}!`)
})
ble.on('data', (str) => {
console.log(str)
})
}
init()