2015-02-19 21:21:54 +00:00
|
|
|
|
/**
|
|
|
|
|
* Service which exposes various utility methods.
|
|
|
|
|
*/
|
|
|
|
|
angular.module('quay').factory('UtilService', ['$sanitize', function($sanitize) {
|
|
|
|
|
var utilService = {};
|
|
|
|
|
|
2015-06-28 06:14:48 +00:00
|
|
|
|
var adBlockEnabled = null;
|
|
|
|
|
|
|
|
|
|
utilService.isAdBlockEnabled = function(callback) {
|
|
|
|
|
if (adBlockEnabled !== null) {
|
|
|
|
|
callback(adBlockEnabled);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(typeof blockAdBlock === 'undefined') {
|
|
|
|
|
callback(true);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var bab = new BlockAdBlock({
|
|
|
|
|
checkOnLoad: false,
|
|
|
|
|
resetOnEnd: true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
bab.onDetected(function() { adBlockEnabled = true; callback(true); });
|
|
|
|
|
bab.onNotDetected(function() { adBlockEnabled = false; callback(false); });
|
|
|
|
|
bab.check();
|
|
|
|
|
};
|
|
|
|
|
|
2015-02-19 21:21:54 +00:00
|
|
|
|
utilService.isEmailAddress = function(val) {
|
|
|
|
|
var emailRegex = /^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/;
|
|
|
|
|
return emailRegex.test(val);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
utilService.getMarkedDown = function(string) {
|
2015-02-23 21:43:59 +00:00
|
|
|
|
return html = Markdown.getSanitizingConverter().makeHtml(string || '');
|
2015-02-19 21:21:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
2015-02-23 21:43:59 +00:00
|
|
|
|
utilService.getFirstMarkdownLineAsText = function(commentString, placeholderNeeded) {
|
|
|
|
|
if (!commentString) {
|
|
|
|
|
if (placeholderNeeded) {
|
|
|
|
|
return '<p style="visibility:hidden">placeholder</p>';
|
|
|
|
|
}
|
|
|
|
|
return '';
|
|
|
|
|
}
|
2015-02-19 21:21:54 +00:00
|
|
|
|
|
|
|
|
|
var lines = commentString.split('\n');
|
|
|
|
|
var MARKDOWN_CHARS = {
|
|
|
|
|
'#': true,
|
|
|
|
|
'-': true,
|
|
|
|
|
'>': true,
|
|
|
|
|
'`': true
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
for (var i = 0; i < lines.length; ++i) {
|
|
|
|
|
// Skip code lines.
|
|
|
|
|
if (lines[i].indexOf(' ') == 0) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Skip empty lines.
|
|
|
|
|
if ($.trim(lines[i]).length == 0) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Skip control lines.
|
|
|
|
|
if (MARKDOWN_CHARS[$.trim(lines[i])[0]]) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return utilService.getMarkedDown(lines[i]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return '';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
utilService.escapeHtmlString = function(text) {
|
|
|
|
|
var adjusted = text.replace(/&/g, "&")
|
|
|
|
|
.replace(/</g, "<")
|
|
|
|
|
.replace(/>/g, ">")
|
|
|
|
|
.replace(/"/g, """)
|
|
|
|
|
.replace(/'/g, "'");
|
|
|
|
|
|
|
|
|
|
return adjusted;
|
|
|
|
|
};
|
|
|
|
|
|
2015-05-11 17:47:40 +00:00
|
|
|
|
utilService.stringToHTML = function(text) {
|
|
|
|
|
text = utilService.escapeHtmlString(text);
|
|
|
|
|
text = text.replace(/\n/g, '<br>');
|
|
|
|
|
return text;
|
|
|
|
|
};
|
|
|
|
|
|
2015-02-19 21:21:54 +00:00
|
|
|
|
utilService.getRestUrl = function(args) {
|
|
|
|
|
var url = '';
|
|
|
|
|
for (var i = 0; i < arguments.length; ++i) {
|
|
|
|
|
if (i > 0) {
|
|
|
|
|
url += '/';
|
|
|
|
|
}
|
|
|
|
|
url += encodeURI(arguments[i])
|
|
|
|
|
}
|
|
|
|
|
return url;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
utilService.textToSafeHtml = function(text) {
|
|
|
|
|
return $sanitize(utilService.escapeHtmlString(text));
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return utilService;
|
|
|
|
|
}]);
|