mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 01:41:46 +03:00
abda6e6338
closes #10773 - The refactoring is a substitute for `urlService.utils` used previously throughout the codebase and now extracted into the separate module in Ghost-SDK - Added url-utils stubbing utility for test suites - Some tests had to be refactored to avoid double mocks (when url's are being reset inside of rested 'describe' groups)
83 lines
2.4 KiB
JavaScript
83 lines
2.4 KiB
JavaScript
// # Configuration API
|
|
// RESTful API for browsing the configuration
|
|
const Promise = require('bluebird'),
|
|
{isPlainObject} = require('lodash'),
|
|
urlUtils = require('../../lib/url-utils'),
|
|
models = require('../../models'),
|
|
config = require('../../config'),
|
|
labs = require('../../services/labs'),
|
|
settingsCache = require('../../services/settings/cache'),
|
|
ghostVersion = require('../../lib/ghost-version');
|
|
|
|
let configuration;
|
|
|
|
function fetchAvailableTimezones() {
|
|
const timezones = require('../../data/timezones.json');
|
|
return timezones;
|
|
}
|
|
|
|
function getAboutConfig() {
|
|
return {
|
|
version: ghostVersion.full,
|
|
environment: config.get('env'),
|
|
database: config.get('database').client,
|
|
mail: isPlainObject(config.get('mail')) ? config.get('mail').transport : ''
|
|
};
|
|
}
|
|
|
|
function getBaseConfig() {
|
|
return {
|
|
useGravatar: !config.isPrivacyDisabled('useGravatar'),
|
|
publicAPI: labs.isSet('publicAPI'),
|
|
blogUrl: urlUtils.urlFor('home', true),
|
|
blogTitle: settingsCache.get('title'),
|
|
clientExtensions: config.get('clientExtensions'),
|
|
enableDeveloperExperiments: config.get('enableDeveloperExperiments')
|
|
};
|
|
}
|
|
|
|
/**
|
|
* ## Configuration API Methods
|
|
*
|
|
* We need to load the client credentials dynamically.
|
|
*
|
|
* **See:** [API Methods](constants.js.html#api%20methods)
|
|
*/
|
|
configuration = {
|
|
|
|
/**
|
|
* Always returns {configuration: []}
|
|
* Sometimes the array contains configuration items
|
|
* @param {Object} options
|
|
* @returns {Promise<Object>}
|
|
*/
|
|
read(options) {
|
|
options = options || {};
|
|
|
|
if (!options.key) {
|
|
return models.Client.findOne({slug: 'ghost-admin'})
|
|
.then((ghostAdmin) => {
|
|
const configuration = getBaseConfig();
|
|
|
|
configuration.clientId = ghostAdmin.get('slug');
|
|
configuration.clientSecret = ghostAdmin.get('secret');
|
|
|
|
return {configuration: [configuration]};
|
|
});
|
|
}
|
|
|
|
if (options.key === 'about') {
|
|
return Promise.resolve({configuration: [getAboutConfig()]});
|
|
}
|
|
|
|
// Timezone endpoint
|
|
if (options.key === 'timezones') {
|
|
return Promise.resolve({configuration: [fetchAvailableTimezones()]});
|
|
}
|
|
|
|
return Promise.resolve({configuration: []});
|
|
}
|
|
};
|
|
|
|
module.exports = configuration;
|