mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
b00d9fee6d
refs #2182 * 🔥 Remove unused options from server init - this is left over from old code and is now unused * 🎨 Move knex-migrator check to db health - Move complex check function into own module - Call module from server/index.js - This just improves the readability of server/index.js * 🔥 Remove old comments - These comments all make no sense now! * 🎨 ⏱ Move model init out of promise chain - Model.init() does not return a promise - Therefore, we can move it to the top of the init function, outside of the promise change - This should be a minor optimisation, and again improves readability /clarity of what's happening * ✨ ⁉️ Move DBHash init / first run to Settings model - this structure is left over from when we had code we executed on the first run of Ghost - the implementation used the API to initialise one setting before populateDefaults is called - this had lots of dependencies - the whole model, API, and permissions structure had to be initialised for it to work - the new implementation is simpler, it captures the dbHash getting initialised during populateDefaults() - it also adds an event, so we can do first-run code later if we really want to (or maybe apps can?!) - perhaps this is hiding behaviour, and there's a nicer way to do it, but populateDefaults seems like a sane place to populate a default setting 😁 * ⏱ Optimise require order so config is first - the first require to config will cause the files to be read etc - this ensures that it happens early, and isn't confusingly timed as part of loading a different module * 🎨 Simplify settings model changes
119 lines
4 KiB
JavaScript
119 lines
4 KiB
JavaScript
// # Bootup
|
|
// This file needs serious love & refactoring
|
|
|
|
/**
|
|
* make sure overrides get's called first!
|
|
* - keeping the overrides require here works for installing Ghost as npm!
|
|
*
|
|
* the call order is the following:
|
|
* - root index requires core module
|
|
* - core index requires server
|
|
* - overrides is the first package to load
|
|
*/
|
|
require('./overrides');
|
|
|
|
// Module dependencies
|
|
var debug = require('debug')('ghost:boot:init'),
|
|
// Config should be first require, as it triggers the initial load of the config files
|
|
config = require('./config'),
|
|
Promise = require('bluebird'),
|
|
logging = require('./logging'),
|
|
i18n = require('./i18n'),
|
|
api = require('./api'),
|
|
models = require('./models'),
|
|
permissions = require('./permissions'),
|
|
apps = require('./apps'),
|
|
auth = require('./auth'),
|
|
dbHealth = require('./data/db/health'),
|
|
xmlrpc = require('./data/xml/xmlrpc'),
|
|
slack = require('./data/slack'),
|
|
GhostServer = require('./ghost-server'),
|
|
scheduling = require('./scheduling'),
|
|
readDirectory = require('./utils/read-directory'),
|
|
utils = require('./utils');
|
|
|
|
// ## Initialise Ghost
|
|
function init() {
|
|
debug('Init Start...');
|
|
|
|
var ghostServer, parentApp;
|
|
|
|
// Initialize Internationalization
|
|
i18n.init();
|
|
debug('I18n done');
|
|
models.init();
|
|
debug('models done');
|
|
|
|
return readDirectory(config.getContentPath('apps')).then(function loadThemes(result) {
|
|
config.set('paths:availableApps', result);
|
|
return api.themes.loadThemes();
|
|
}).then(function () {
|
|
debug('Themes & apps done');
|
|
return dbHealth.check();
|
|
}).then(function () {
|
|
debug('DB health check done');
|
|
// Populate any missing default settings
|
|
return models.Settings.populateDefaults();
|
|
}).then(function () {
|
|
debug('Models & database done');
|
|
// Refresh the API settings cache
|
|
return api.settings.updateSettingsCache();
|
|
}).then(function () {
|
|
debug('Update settings cache done');
|
|
// Initialize the permissions actions and objects
|
|
return permissions.init();
|
|
}).then(function () {
|
|
debug('Permissions done');
|
|
return Promise.join(
|
|
// Initialize apps
|
|
apps.init(),
|
|
// Initialize xmrpc ping
|
|
xmlrpc.listen(),
|
|
// Initialize slack ping
|
|
slack.listen()
|
|
);
|
|
}).then(function () {
|
|
debug('Apps, XMLRPC, Slack done');
|
|
|
|
// Setup our collection of express apps
|
|
parentApp = require('./app')();
|
|
|
|
debug('Express Apps done');
|
|
|
|
// runs asynchronous
|
|
auth.init({
|
|
authType: config.get('auth:type'),
|
|
ghostAuthUrl: config.get('auth:url'),
|
|
redirectUri: utils.url.urlFor('admin', true),
|
|
clientUri: utils.url.urlFor('home', true),
|
|
clientName: api.settings.cache.get('title'),
|
|
clientDescription: api.settings.cache.get('description')
|
|
}).then(function (response) {
|
|
parentApp.use(response.auth);
|
|
}).catch(function onAuthError(err) {
|
|
logging.error(err);
|
|
});
|
|
}).then(function () {
|
|
debug('Auth done');
|
|
return new GhostServer(parentApp);
|
|
}).then(function (_ghostServer) {
|
|
ghostServer = _ghostServer;
|
|
|
|
// scheduling can trigger api requests, that's why we initialize the module after the ghost server creation
|
|
// scheduling module can create x schedulers with different adapters
|
|
debug('Server done');
|
|
return scheduling.init({
|
|
schedulerUrl: config.get('scheduling').schedulerUrl,
|
|
active: config.get('scheduling').active,
|
|
apiUrl: utils.url.urlFor('api', true),
|
|
internalPath: config.get('paths').internalSchedulingPath,
|
|
contentPath: config.getContentPath('scheduling')
|
|
});
|
|
}).then(function () {
|
|
debug('Scheduling done');
|
|
debug('...Init End');
|
|
return ghostServer;
|
|
});
|
|
}
|
|
|
|
module.exports = init;
|