Ghost/core/server/data/meta/blog_logo.js
kirrg001 fc5b4dd934 Moved image utils to lib/image
refs #9178

- i am not super happy about `const imageLib = require('../lib/image')`
- i don't really like the name `imageLib`
- but i had no better idea 😃
- if we use the same name in the whole project, it's very easy to rename the folder or the variable
2017-12-14 20:46:53 +01:00

21 lines
684 B
JavaScript

var urlService = require('../../services/url'),
settingsCache = require('../../services/settings/cache'),
imageLib = require('../../lib/image');
function getBlogLogo() {
var logo = {};
if (settingsCache.get('logo')) {
logo.url = urlService.utils.urlFor('image', {image: settingsCache.get('logo')}, true);
} else {
// CASE: no publication logo is updated. We can try to use either an uploaded publication icon
// or use the default one to make
// Google happy with it. See https://github.com/TryGhost/Ghost/issues/7558
logo.url = imageLib.blogIcon.getIconUrl(true);
}
return logo;
}
module.exports = getBlogLogo;