const express = require('express'); const SetupService = require('../../../services/setup'); const router = express.Router(); router.get('/', (req, res, next) => { SetupService .isAvailable() .then(() => { res.json({installed: false}); }) .catch(() => { res.json({installed: true}); }); }); router.post('/', (req, res, next) => { SetupService .isAvailable() .then(() => { // Allow the request to keep going here. next(); }) .catch((err) => { next(err); }); }, (req, res, next) => { const { settings, user: {email, password, username} } = req.body; SetupService .setup({settings, user: {email, password, username}}) .then(() => { // We're setup! res.status(204).end(); }) .catch((err) => { next(err); }); }); module.exports = router;