mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
31fc84cefb
- The API has the BREAD naming for methods - The model now has findAll, findOne, findPage (where needed), edit, add and destroy, meaning it is similar but with a bit more flexibility - browse, read, update, create, and delete, which were effectively just aliases, have all been removed. - added jsDoc for the model methods
243 lines
7.3 KiB
JavaScript
243 lines
7.3 KiB
JavaScript
var _ = require('lodash'),
|
|
dataProvider = require('../models'),
|
|
when = require('when'),
|
|
errors = require('../errorHandling'),
|
|
config = require('../config'),
|
|
settings,
|
|
settingsCollection,
|
|
settingsFilter,
|
|
updateSettingsCache,
|
|
readSettingsResult,
|
|
filterPaths,
|
|
settingsResult,
|
|
// Holds cached settings
|
|
settingsCache = {};
|
|
|
|
// ### Helpers
|
|
// Turn an object into a collection
|
|
settingsCollection = function (settings) {
|
|
return _.map(settings, function (value, key) {
|
|
return { key: key, value: value };
|
|
});
|
|
};
|
|
|
|
// Filters an object based on a given filter object
|
|
settingsFilter = function (settings, filter) {
|
|
return _.object(_.filter(_.pairs(settings), function (setting) {
|
|
if (filter) {
|
|
return _.some(filter.split(','), function (f) {
|
|
return setting[1].type === f;
|
|
});
|
|
}
|
|
return true;
|
|
}));
|
|
};
|
|
|
|
// Maintain the internal cache of the settings object
|
|
updateSettingsCache = function (settings) {
|
|
settings = settings || {};
|
|
|
|
if (!_.isEmpty(settings)) {
|
|
_.map(settings, function (setting, key) {
|
|
settingsCache[key] = setting;
|
|
});
|
|
|
|
return when(settingsCache);
|
|
}
|
|
|
|
return dataProvider.Settings.findAll()
|
|
.then(function (result) {
|
|
settingsCache = readSettingsResult(result.models);
|
|
|
|
return settingsCache;
|
|
});
|
|
};
|
|
|
|
readSettingsResult = function (settingsModels) {
|
|
var settings = _.reduce(settingsModels, function (memo, member) {
|
|
if (!memo.hasOwnProperty(member.attributes.key)) {
|
|
memo[member.attributes.key] = member.attributes;
|
|
}
|
|
|
|
return memo;
|
|
}, {}),
|
|
themes = config().paths.availableThemes,
|
|
apps = config().paths.availableApps,
|
|
res;
|
|
|
|
if (settings.activeTheme) {
|
|
res = filterPaths(themes, settings.activeTheme.value);
|
|
|
|
settings.availableThemes = {
|
|
key: 'availableThemes',
|
|
value: res,
|
|
type: 'theme'
|
|
};
|
|
}
|
|
|
|
if (settings.activeApps) {
|
|
res = filterPaths(apps, JSON.parse(settings.activeApps.value));
|
|
|
|
settings.availableApps = {
|
|
key: 'availableApps',
|
|
value: res,
|
|
type: 'app'
|
|
};
|
|
}
|
|
|
|
return settings;
|
|
};
|
|
|
|
|
|
// Normalizes paths read by require-tree so that the apps and themes modules can use them.
|
|
// Creates an empty array (res), and populates it with useful info about the read packages
|
|
// like name, whether they're active (comparison with the second argument), and if they
|
|
// have a package.json, that, otherwise false
|
|
// @param {object} paths as returned by require-tree()
|
|
// @param {array/string} active as read from the settings object
|
|
// @return {array} of objects with useful info about apps / themes
|
|
|
|
filterPaths = function (paths, active) {
|
|
var pathKeys = Object.keys(paths),
|
|
res = [],
|
|
item;
|
|
|
|
// turn active into an array (so themes and apps can be checked the same)
|
|
if (!Array.isArray(active)) {
|
|
active = [active];
|
|
}
|
|
|
|
_.each(pathKeys, function (key) {
|
|
//do not include hidden files or _messages
|
|
if (key.indexOf('.') !== 0 &&
|
|
key !== '_messages' &&
|
|
key !== 'README.md'
|
|
) {
|
|
item = {
|
|
name: key
|
|
};
|
|
if (paths[key].hasOwnProperty('package.json')) {
|
|
item.package = paths[key]['package.json'];
|
|
} else {
|
|
item.package = false;
|
|
}
|
|
|
|
if (_.indexOf(active, key) !== -1) {
|
|
item.active = true;
|
|
}
|
|
res.push(item);
|
|
}
|
|
});
|
|
return res;
|
|
};
|
|
|
|
settingsResult = function (settings, type) {
|
|
var filteredSettings = _.values(settingsFilter(settings, type)),
|
|
result = {
|
|
settings: filteredSettings
|
|
};
|
|
|
|
if (type) {
|
|
result.meta = {
|
|
filters: {
|
|
type: type
|
|
}
|
|
};
|
|
}
|
|
|
|
return result;
|
|
};
|
|
|
|
settings = {
|
|
// #### Browse
|
|
|
|
// **takes:** options object
|
|
browse: function browse(options) {
|
|
//TODO: omit where type==core
|
|
// **returns:** a promise for a settings json object
|
|
return when(settingsResult(settingsCache, options.type));
|
|
},
|
|
|
|
// #### Read
|
|
|
|
// **takes:** either a json object containing a key, or a single key string
|
|
read: function read(options) {
|
|
if (_.isString(options)) {
|
|
options = { key: options };
|
|
}
|
|
|
|
var setting = settingsCache[options.key],
|
|
result = {};
|
|
|
|
if (!setting) {
|
|
return when.reject({type: 'NotFound', message: 'Unable to find setting: ' + options.key});
|
|
}
|
|
|
|
result[options.key] = setting;
|
|
|
|
return when(settingsResult(result));
|
|
},
|
|
|
|
// #### Edit
|
|
|
|
// **takes:** either a json object representing a collection of settings, or a key and value pair
|
|
edit: function edit(key, value) {
|
|
var self = this,
|
|
type;
|
|
|
|
// Check for passing a collection of settings first
|
|
if (_.isObject(key)) {
|
|
//clean data
|
|
type = key.type;
|
|
delete key.type;
|
|
delete key.availableThemes;
|
|
delete key.availableApps;
|
|
|
|
key = settingsCollection(key);
|
|
return dataProvider.Settings.edit(key, {user: self.user}).then(function (result) {
|
|
var readResult = readSettingsResult(result);
|
|
|
|
return updateSettingsCache(readResult).then(function () {
|
|
return config.theme.update(settings, config().url);
|
|
}).then(function () {
|
|
return settingsResult(readResult, type);
|
|
});
|
|
}).otherwise(function (error) {
|
|
return dataProvider.Settings.findOne(key.key).then(function (result) {
|
|
if (!result) {
|
|
return when.reject({type: 'NotFound', message: 'Unable to find setting: ' + key + '.'});
|
|
}
|
|
return when.reject({type: 'InternalServerError', message: error.message});
|
|
});
|
|
});
|
|
}
|
|
|
|
return dataProvider.Settings.findOne(key).then(function (setting) {
|
|
if (!setting) {
|
|
return when.reject({type: 'NotFound', message: 'Unable to find setting: ' + key + '.'});
|
|
}
|
|
if (!_.isString(value)) {
|
|
value = JSON.stringify(value);
|
|
}
|
|
setting.set('value', value);
|
|
return dataProvider.Settings.edit(setting, {user: self.user}).then(function (result) {
|
|
var updatedSetting = _.first(result).attributes;
|
|
settingsCache[updatedSetting.key].value = updatedSetting.value;
|
|
|
|
return updatedSetting;
|
|
}).then(function (updatedSetting) {
|
|
return config.theme.update(settings, config().url).then(function () {
|
|
return updatedSetting;
|
|
});
|
|
}).then(function (updatedSetting) {
|
|
var result = {};
|
|
result[updatedSetting.key] = updatedSetting;
|
|
|
|
return settingsResult(result);
|
|
}).otherwise(errors.logAndThrowError);
|
|
});
|
|
}
|
|
};
|
|
|
|
module.exports = settings;
|
|
module.exports.updateSettingsCache = updateSettingsCache; |