var _ = require('lodash'), Promise = require('bluebird'), api = require('../api'), errors = require('../errors'), updateCheck = require('../update-check'), i18n = require('../i18n'), adminControllers; adminControllers = { // Route: index // Path: /ghost/ // Method: GET index: function index(req, res) { /*jslint unparam:true*/ function renderIndex() { var configuration, fetch = { configuration: api.configuration.read().then(function (res) { return res.configuration[0]; }), client: api.clients.read({slug: 'ghost-admin'}).then(function (res) { return res.clients[0]; }) }; return Promise.props(fetch).then(function renderIndex(result) { configuration = result.configuration; configuration.clientId = {value: result.client.slug, type: 'string'}; configuration.clientSecret = {value: result.client.secret, type: 'string'}; res.render('default', { configuration: configuration }); }); } updateCheck().then(function then() { return updateCheck.showUpdateNotification(); }).then(function then(updateVersion) { if (!updateVersion) { return; } var notification = { type: 'upgrade', location: 'settings-about-upgrade', dismissible: false, status: 'alert', message: i18n.t('notices.controllers.newVersionAvailable', {version: updateVersion, link: 'Click here'})}; return api.notifications.browse({context: {internal: true}}).then(function then(results) { if (!_.some(results.notifications, {message: notification.message})) { return api.notifications.add({notifications: [notification]}, {context: {internal: true}}); } }); }).finally(function noMatterWhat() { renderIndex(); }).catch(errors.logError); } }; module.exports = adminControllers;