2019-04-09 08:00:56 +03:00
|
|
|
const _ = require('lodash');
|
|
|
|
const Promise = require('bluebird');
|
|
|
|
const config = require('../../config');
|
|
|
|
const common = require('../../lib/common');
|
|
|
|
|
|
|
|
let checkTheme;
|
2017-02-28 01:30:49 +03:00
|
|
|
|
2017-03-13 14:44:44 +03:00
|
|
|
checkTheme = function checkTheme(theme, isZip) {
|
|
|
|
var checkPromise,
|
|
|
|
// gscan can slow down boot time if we require on boot, for now nest the require.
|
|
|
|
gscan = require('gscan');
|
2017-02-28 01:30:49 +03:00
|
|
|
|
2017-03-13 14:44:44 +03:00
|
|
|
if (isZip) {
|
2017-05-31 19:42:42 +03:00
|
|
|
checkPromise = gscan.checkZip(theme, {
|
|
|
|
keepExtractedDir: true
|
|
|
|
});
|
2017-03-13 14:44:44 +03:00
|
|
|
} else {
|
|
|
|
checkPromise = gscan.check(theme.path);
|
2017-02-28 01:30:49 +03:00
|
|
|
}
|
2017-03-13 14:44:44 +03:00
|
|
|
|
2018-05-11 08:12:15 +03:00
|
|
|
return checkPromise
|
|
|
|
.then(function resultHandler(checkedTheme) {
|
|
|
|
checkedTheme = gscan.format(checkedTheme, {
|
|
|
|
onlyFatalErrors: config.get('env') === 'production'
|
|
|
|
});
|
2017-03-13 14:44:44 +03:00
|
|
|
|
2018-05-11 08:12:15 +03:00
|
|
|
// CASE: production and no fatal errors
|
|
|
|
// CASE: development returns fatal and none fatal errors, theme is only invalid if fatal errors
|
|
|
|
if (!checkedTheme.results.error.length ||
|
|
|
|
config.get('env') === 'development' && !checkedTheme.results.hasFatalErrors) {
|
|
|
|
return checkedTheme;
|
|
|
|
}
|
2017-03-13 14:44:44 +03:00
|
|
|
|
2018-05-11 08:12:15 +03:00
|
|
|
return Promise.reject(new common.errors.ThemeValidationError({
|
|
|
|
message: common.i18n.t('errors.api.themes.invalidTheme'),
|
2019-04-09 08:00:56 +03:00
|
|
|
errorDetails: Object.assign(
|
|
|
|
_.pick(checkedTheme, ['checkedVersion', 'name', 'path', 'version']), {
|
|
|
|
errors: checkedTheme.results.error
|
|
|
|
}
|
|
|
|
),
|
|
|
|
// NOTE: needs to be removed but first has to be decoupled
|
|
|
|
// from logic here: https://github.com/TryGhost/Ghost/blob/9810834/core/server/services/themes/index.js#L56-L57
|
2018-05-11 08:12:15 +03:00
|
|
|
context: checkedTheme
|
|
|
|
}));
|
|
|
|
}).catch(function (error) {
|
|
|
|
return Promise.reject(error);
|
|
|
|
});
|
2017-02-28 01:30:49 +03:00
|
|
|
};
|
|
|
|
|
2017-03-13 14:44:44 +03:00
|
|
|
module.exports.check = checkTheme;
|