e96b60b850
refs #6534 - this PR assumes that we are now saving usernames only in the database for twitter & facebook - adds a new social links utility which can generate twitter & facebook urls from the username - adds a {{twitter_url}} and {{facebook_url}} helper which uses these - adds a full suite of tests for the helpers & utils
27 lines
671 B
JavaScript
27 lines
671 B
JavaScript
// # Twitter URL Helper
|
|
// Usage: `{{twitter_url}}` or `{{twitter_url author.twitter}}`
|
|
//
|
|
// Output a url for a twitter username
|
|
//
|
|
// We use the name twitter_url to match the helper for consistency:
|
|
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
|
|
|
|
var socialUrls = require('../utils/social-urls'),
|
|
findKey = require('./utils').findKey,
|
|
twitter_url;
|
|
|
|
twitter_url = function twitter_url(username, options) {
|
|
if (!options) {
|
|
options = username;
|
|
username = findKey('twitter', this, options.data.blog);
|
|
}
|
|
|
|
if (username) {
|
|
return socialUrls.twitterUrl(username);
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
module.exports = twitter_url;
|