filesafe/controllers/tokenController.js

37 lines
1.2 KiB
JavaScript
Raw Normal View History

const config = require('../config.js')
const db = require('knex')(config.database)
const randomstring = require('randomstring')
const utils = require('./utilsController.js')
2017-01-17 19:54:25 +00:00
const tokenController = {}
2017-01-17 19:54:25 +00:00
2017-10-04 00:13:38 +00:00
tokenController.verify = async (req, res, next) => {
const token = req.body.token
if (token === undefined) { return res.status(401).json({ success: false, description: 'No token provided.' }) }
2017-01-17 19:54:25 +00:00
const user = await db.table('users').where('token', token).first()
if (!user) { return res.status(401).json({ success: false, description: 'Invalid token.' }) }
return res.json({ success: true, username: user.username })
}
2017-01-17 19:54:25 +00:00
2017-10-04 00:13:38 +00:00
tokenController.list = async (req, res, next) => {
const user = await utils.authorize(req, res)
if (!user) { return }
return res.json({ success: true, token: user.token })
}
2017-01-17 19:54:25 +00:00
2017-10-04 00:13:38 +00:00
tokenController.change = async (req, res, next) => {
const user = await utils.authorize(req, res)
if (!user) { return }
const newtoken = randomstring.generate(64)
await db.table('users').where('token', user.token).update({
token: newtoken,
timestamp: Math.floor(Date.now() / 1000)
})
2017-10-04 00:13:38 +00:00
res.json({ success: true, token: newtoken })
}
module.exports = tokenController