mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-04 17:04:59 +03:00
c02ebb0dcf
closes #2610, refs #2697 - cleanup API index.js, and add docs - all API methods take consistent arguments: object & options - browse, read, destroy take options, edit and add take object and options - the context is passed as part of options, meaning no more .call everywhere - destroy expects an object, rather than an id all the way down to the model layer - route params such as :id, :slug, and :key are passed as an option & used to perform reads, updates and deletes where possible - settings / themes may need work here still - HTTP posts api can find a post by slug - Add API utils for checkData
91 lines
3.1 KiB
JavaScript
91 lines
3.1 KiB
JavaScript
var when = require('when'),
|
|
_ = require('lodash'),
|
|
canThis = require('../permissions').canThis,
|
|
config = require('../config'),
|
|
errors = require('../errors'),
|
|
settings = require('./settings'),
|
|
when = require('when'),
|
|
themes;
|
|
|
|
// ## Themes
|
|
themes = {
|
|
|
|
browse: function browse(options) {
|
|
options = options || {};
|
|
|
|
return canThis(options.context).browse.theme().then(function () {
|
|
return when.all([
|
|
settings.read({key: 'activeTheme', context: {internal: true}}),
|
|
config().paths.availableThemes
|
|
]).then(function (result) {
|
|
var activeTheme = result[0].settings[0].value,
|
|
availableThemes = result[1],
|
|
themes = [],
|
|
themeKeys = Object.keys(availableThemes);
|
|
|
|
_.each(themeKeys, function (key) {
|
|
if (key.indexOf('.') !== 0
|
|
&& key !== '_messages'
|
|
&& key !== 'README.md'
|
|
) {
|
|
|
|
var item = {
|
|
uuid: key
|
|
};
|
|
|
|
if (availableThemes[key].hasOwnProperty('package.json')) {
|
|
item = _.merge(item, availableThemes[key]['package.json']);
|
|
}
|
|
|
|
item.active = item.uuid === activeTheme;
|
|
|
|
themes.push(item);
|
|
}
|
|
});
|
|
|
|
return { themes: themes };
|
|
});
|
|
}, function () {
|
|
return when.reject(new errors.NoPermissionError('You do not have permission to browse themes.'));
|
|
});
|
|
},
|
|
|
|
edit: function edit(object, options) {
|
|
var themeName;
|
|
|
|
// Check whether the request is properly formatted.
|
|
if (!_.isArray(object.themes)) {
|
|
return when.reject({type: 'BadRequest', message: 'Invalid request.'});
|
|
}
|
|
|
|
themeName = object.themes[0].uuid;
|
|
|
|
return canThis(options.context).edit.theme().then(function () {
|
|
return themes.browse(options).then(function (availableThemes) {
|
|
var theme;
|
|
|
|
// Check if the theme exists
|
|
theme = _.find(availableThemes.themes, function (currentTheme) {
|
|
return currentTheme.uuid === themeName;
|
|
});
|
|
|
|
if (!theme) {
|
|
return when.reject(new errors.BadRequestError('Theme does not exist.'));
|
|
}
|
|
|
|
// Activate the theme
|
|
return settings.edit(
|
|
{settings: [{ key: 'activeTheme', value: themeName }]}, {context: {internal: true }}
|
|
).then(function () {
|
|
theme.active = true;
|
|
return { themes: [theme]};
|
|
});
|
|
});
|
|
}, function () {
|
|
return when.reject(new errors.NoPermissionError('You do not have permission to edit themes.'));
|
|
});
|
|
}
|
|
};
|
|
|
|
module.exports = themes;
|