Vulcan/lib/helpers.js
2014-09-23 19:08:49 +00:00

134 lines
4.1 KiB
JavaScript

cl = function(something){
console.log(l);
};
getCurrentTemplate = function() {
return Router.current().lookupTemplate();
};
getCurrentRoute = function() {
return Router._currentController.path;
};
t=function(message){
var d=new Date();
console.log("### "+message+" rendered at "+d.getHours()+":"+d.getMinutes()+":"+d.getSeconds());
};
nl2br= function(str) {
var breakTag = '<br />';
return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1'+ breakTag +'$2');
};
getAuthorName = function(item){
var user = Meteor.users.findOne(item.userId);
return typeof user === 'undefined' ? '' : getDisplayName(user);
};
scrollPageTo = function(selector){
$('body').scrollTop($(selector).offset().top);
};
getDigestURL = function(moment){
return '/digest/'+moment.year()+'/'+(moment.month()+1)+'/'+moment.date();
};
getDateRange= function(pageNumber){
var now = moment(new Date());
var dayToDisplay=now.subtract(pageNumber-1, 'days');
var range={};
range.start = dayToDisplay.startOf('day').valueOf();
range.end = dayToDisplay.endOf('day').valueOf();
// console.log("after: ", dayToDisplay.startOf('day').format("dddd, MMMM Do YYYY, h:mm:ss a"));
// console.log("before: ", dayToDisplay.endOf('day').format("dddd, MMMM Do YYYY, h:mm:ss a"));
return range;
};
// getPostCategories = function(post){
// var postCategories = _.map(post.categories, function(categoryId){
// return Categories.findOne(categoryId);
// });
// // put resulting array through a filter to remove empty values in case
// // some of the post's categories weren't found in the database
// return _.filter(postCategories, function(e){return e});
// }
// ---------------------------------- URL Helper Functions ----------------------------------- //
goTo = function(url){
Router.go(url);
};
getSignupUrl = function(){
return Meteor.absoluteUrl()+'sign-up';
};
getSigninUrl = function(){
return Meteor.absoluteUrl()+'sign-in';
};
getPostUrl = function(id){
return Meteor.absoluteUrl()+'posts/'+id;
};
getPostEditUrl = function(id){
return Meteor.absoluteUrl()+'posts/'+id+'/edit';
};
getCommentUrl = function(id){
return Meteor.absoluteUrl()+'comments/'+id;
};
getPostCommentUrl = function(postId, commentId){
// get link to a comment on a post page
return Meteor.absoluteUrl()+'posts/'+postId+'/comment/'+commentId;
};
slugify = function(text) {
if(text){
text = text.replace(/[^-_a-zA-Z0-9,&\s]+/ig, '');
text = text.replace(/\s/gi, "+");
text = text.toLowerCase();
}
return text;
};
getShortUrl = function(post){
return post.shortUrl ? post.shortUrl : post.url;
};
getDomain = function(url){
urlObject = Npm.require('url');
return urlObject.parse(url).hostname.replace('www.', '');
};
invitesEnabled = function () {
return getSetting("requireViewInvite") || getSetting("requirePostInvite");
};
getOutgoingUrl = function(url){
return getSiteUrl() + 'out?url=' + encodeURIComponent(url);
};
// ---------------------------------- String Helper Functions ----------------------------------- //
cleanUp = function(s){
return stripHTML(s);
};
sanitize = function (s) {
// console.log('// before sanitization:')
// console.log(s)
if(Meteor.isServer){
var s = sanitizeHtml(s, {
allowedTags: [
'h3', 'h4', 'h5', 'h6', 'blockquote', 'p', 'a', 'ul',
'ol', 'nl', 'li', 'b', 'i', 'strong', 'em', 'strike',
'code', 'hr', 'br', 'div', 'table', 'thead', 'caption',
'tbody', 'tr', 'th', 'td', 'pre', 'img'
]
});
// console.log('// after sanitization:')
// console.log(s)
}
return s;
};
stripHTML = function(s){
return s.replace(/<(?:.|\n)*?>/gm, '');
};
stripMarkdown = function(s){
var html_body = marked(s);
return stripHTML(html_body);
};
// http://stackoverflow.com/questions/2631001/javascript-test-for-existence-of-nested-object-key
checkNested = function(obj /*, level1, level2, ... levelN*/) {
var args = Array.prototype.slice.call(arguments),
obj = args.shift();
for (var i = 0; i < args.length; i++) {
if (!obj.hasOwnProperty(args[i])) {
return false;
}
obj = obj[args[i]];
}
return true;
};