Skip to content
Permalink
d1eaf3972e
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
55 lines (47 sloc) 1.57 KB
import Router from 'koa-router'
const router = new Router({ prefix: '/survey' })
import Accounts from '../modules/accounts.js'
import Surveys from '../modules/surveys.js'
const dbName = 'website.db'
async function checkAuth(ctx, next) {
console.log('survey router middleware')
console.log(ctx.hbs)
if(ctx.hbs.authorised !== true) return ctx.redirect('/login?msg=you need to log in&referrer=/survey')
await next()
}
router.use(checkAuth)
router.get('/', async ctx => {
const accounts = await new Accounts(dbName)
const surveys = await new Surveys(dbName)
try {
let results = await accounts.getUnansweredPosition(ctx.session.username, 1)
if(results !== -1) {
ctx.hbs.record = {} ; const maxValue = 6
if(results + 1 === maxValue) ctx.hbs.record.status = 'Finish'
else ctx.hbs.record.status = 'Next'
results = await surveys.getQuestion(1, results) ; ctx.hbs.record.question = results
await ctx.render('survey', ctx.hbs)
} else {
await accounts.updateSurveysDone(ctx.session.username, 1) ; ctx.redirect('/')
}
} catch(err) {
ctx.hbs.error = err.message ; await ctx.render('error', ctx.hbs)
} finally {
accounts.close() ; surveys.close()
}
})
router.post('/', async ctx => { //update score, refresh page
const account = await new Accounts(dbName)
try {
await account.updateScore(ctx.session.username, 1, Number(ctx.request.body.scale))
ctx.redirect('/survey')
} catch(err) {
ctx.hbs.msg = err.message
ctx.hbs.body = ctx.request.body
console.log(ctx.hbs)
await ctx.render('index', ctx.hbs)
} finally {
account.close()
}
})
export default router