2016-05-17 16:06:12 +03:00
|
|
|
// # Twitter URL Helper
|
|
|
|
// Usage: `{{twitter_url}}` or `{{twitter_url author.twitter}}`
|
|
|
|
//
|
|
|
|
// Output a url for a twitter username
|
2017-04-04 19:07:35 +03:00
|
|
|
var proxy = require('./proxy'),
|
|
|
|
socialUrls = proxy.socialUrls,
|
|
|
|
findKey = proxy.utils.findKey;
|
2016-05-17 16:06:12 +03:00
|
|
|
|
2017-11-01 16:44:54 +03:00
|
|
|
// We use the name twitter_url to match the helper for consistency:
|
|
|
|
module.exports = function twitter_url(username, options) { // eslint-disable-line camelcase
|
2016-05-17 16:06:12 +03:00
|
|
|
if (!options) {
|
|
|
|
options = username;
|
|
|
|
username = findKey('twitter', this, options.data.blog);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (username) {
|
|
|
|
return socialUrls.twitterUrl(username);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
};
|