Skip to content
Permalink
04131760b7
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
178 lines (157 sloc) 4.2 KB
#!/usr/bin/env node
//Routes File
'use strict'
/* MODULE IMPORTS */
const Koa = require('koa')
const Router = require('koa-router')
const views = require('koa-views')
const staticDir = require('koa-static')
const bodyParser = require('koa-bodyparser')
const koaBody = require('koa-body')({multipart: true, uploadDir: '.'})
const session = require('koa-session')
const alert = require('alert-node');
/* IMPORT CUSTOM MODULES */
const User = require('./modules/user')
const Lights = require('./modules/lights')
const app = new Koa()
const router = new Router()
/* CONFIGURING THE MIDDLEWARE */
app.keys = ['darkSecret']
app.use(staticDir('public'))
app.use(bodyParser())
app.use(session(app))
app.use(views(`${__dirname}/views`, { extension: 'handlebars' }, {map: { handlebars: 'handlebars' }}))
const defaultPort = 8080
const port = process.env.PORT || defaultPort
const dbName = 'website.db'
let user
/**
* The secure home page.
*
* @name Home Page
* @route {GET} /
* @authentication This route requires cookie-based authentication.
*/
router.get('/', async ctx => {
try {
if(ctx.session.authorised !== true) return ctx.redirect('/login?msg=you need to log in')
const data = {}
if(ctx.query.msg) data.msg = ctx.query.msg
await ctx.render('index')
} catch(err) {
await ctx.render('error', {message: err.message})
}
})
/**
* The user registration page.
*
* @name Register Page
* @route {GET} /register
*/
router.get('/register', async ctx => await ctx.render('register'))
router.get('/lights', async ctx => await ctx.render('lights'))
router.get('/FrontLightON', koaBody, async ctx => {
try {
const lights = await new Lights(dbName)
await lights.frontOn()
alert('front light is on')
await ctx.render('lights')
}
catch(err) {
await ctx.render('error', {message: err.message})
}
})
router.get('/FrontLightOFF', koaBody, async ctx => {
try {
const lights = await new Lights(dbName)
await lights.frontOff()
alert('front light is off')
await ctx.render('lights')
}
catch(err) {
await ctx.render('error', {message: err.message})
}
})
router.get('/InsideLightOFF', koaBody, async ctx => {
try {
const lights = await new Lights(dbName)
await lights.insideOff()
alert('inside light is off')
await ctx.render('lights')
}
catch(err) {
await ctx.render('error', {message: err.message})
}
})
router.get('/InsideLightON', koaBody, async ctx => {
try {
const lights = await new Lights(dbName)
await lights.insideOn()
alert('inside light is on')
await ctx.render('lights')
}
catch(err) {
await ctx.render('error', {message: err.message})
}
})
router.post('/MontionSensor', async ctx => {
try {
const body = ctx.request.body
console.log(body.Sensor)
const lights = await new Lights(dbName)
await lights.sensor(body.Sensor)
alert('Sensor set')
await ctx.render('lights')
}
catch(err) {
await ctx.render('error', {message: err.message})
}
})
/**
* The script to process new user registrations.
*
* @name Register Script
* @route {POST} /register
*/
router.post('/register', koaBody, async ctx => {
try {
// extract the data from the request
const body = ctx.request.body
console.log(body)
// call the functions in the module
user = await new User(dbName)
await user.register(body.user, body.pass)
// await user.uploadPicture(path, type)
// redirect to the home page
ctx.redirect(`/?msg=new user "${body.name}" added`)
} catch(err) {
await ctx.render('error', {message: err.message})
} finally {
user.tearDown()
}
})
router.get('/login', async ctx => {
const data = {}
if(ctx.query.msg) data.msg = ctx.query.msg
if(ctx.query.user) data.user = ctx.query.user
await ctx.render('login', data)
})
router.post('/login', async ctx => {
try {
const body = ctx.request.body
user = await new User(dbName)
await user.login(body.user, body.pass)
ctx.session.authorised = true
return ctx.redirect('/?msg=you are now logged in...')
} catch(err) {
await ctx.render('error', {message: err.message})
} finally {
user.tearDown()
}
})
router.get('/logout', async ctx => {
ctx.session.authorised = null
ctx.redirect('/?msg=you are now logged out')
})
app.use(router.routes())
module.exports = app.listen(port, async() => console.log(`listening on port ${port}`))