mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +03:00
af4bfb8862
- purely for cleanliness! - we use kebabcase by default - tests should be kebab-case-file_spec.js (one day we want this to be .test.js)
21 lines
699 B
JavaScript
21 lines
699 B
JavaScript
const urlService = require('../services/url');
|
|
const getContextObject = require('./context-object.js');
|
|
|
|
function getAuthorUrl(data, absolute) {
|
|
let context = data.context ? data.context[0] : null;
|
|
|
|
const contextObject = getContextObject(data, context);
|
|
|
|
if (data.author) {
|
|
return urlService.getUrlByResourceId(data.author.id, {absolute: absolute, secure: data.author.secure, withSubdirectory: true});
|
|
}
|
|
|
|
if (contextObject && contextObject.primary_author) {
|
|
return urlService.getUrlByResourceId(contextObject.primary_author.id, {absolute: absolute, secure: contextObject.secure, withSubdirectory: true});
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
module.exports = getAuthorUrl;
|