'use strict'; (function() { var defaultTags = [ // inline formatting 'b', 'code', 'i', 's', 'sub', 'sup', 'u', // block formatting 'blockquote', 'h1', 'h2', 'h3', 'p', 'pre', // lists 'li', 'ol', 'ul', // tables 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'tr', // other 'a', 'br', 'img', // special 'rtl', '[]' ], htmlEntities = { '"': '"', '&': '&', "'": ''', '<': '<', '>': '>' }, regexp = { entity: /&[^\s]+?;/g, html: /[<&]/, tag: new RegExp('<\\/?(' + [ 'a', 'b', 'br', 'code', 'i', 's', 'span', 'u' ].join('|') + ')\\/?>', 'gi') }, replace = { a: [ [ /]*?href="((\/|https?:\/\/|mailto:).+?)".*?>/gi, '', ], [ /<\/a>/gi, '' ] ], img: [ [ /]*?src="((\/|https?:\/\/).+?)".*?>/gi, '' ] ], rtl: [ [ //gi, '
' ], [ /<\/rtl>/gi, '
' ] ], '*': function(tag) { return [ [ new RegExp('', 'gi'), '{0}' ] ]; } }, salt = Ox.range(2).map(function(){ return Ox.range(16).map(function() { return Ox.char(65 + Ox.random(26)); }).join(''); }); function addLinks(string, obfuscate) { return string .replace( /\b((https?:\/\/|www\.).+?)([\.,:;!\?\)\]]*?(\s|$))/gi, function(match, url, prefix, end) { prefix = prefix.toLowerCase() == 'www.' ? 'http://' : ''; return Ox.formatString( '{url}{end}', {end: end, prefix: prefix, url: url} ); } ) .replace( /\b([0-9A-Z\.\+\-_]+@(?:[0-9A-Z\-]+\.)+[A-Z]{2,6})\b/gi, obfuscate ? function(match, mail) { return Ox.encodeEmailAddress(mail); } : '$1' ); } function decodeHTMLEntities(string) { return string .replace( new RegExp('(' + Ox.values(htmlEntities).join('|') + ')', 'g'), function(match) { return Ox.keyOf(htmlEntities, match); } ) .replace( /&#([0-9A-FX]+);/gi, function(match, code) { return Ox.char( /^X/i.test(code) ? parseInt(code.slice(1), 16) : parseInt(code, 10) ); } ); } // Splits a string into text (even indices) and tags (odd indices), ignoring // tags with starting positions that are included in the ignore array function splitHTMLTags(string, ignore) { var isTag = false, ret = ['']; ignore = ignore || []; Ox.forEach(string, function(char, i) { if (!isTag && char == '<' && ignore.indexOf(i) == -1) { isTag = true; ret.push(''); } ret[ret.length - 1] += char; if (isTag && char == '>') { isTag = false; ret.push(''); } }); return ret; }; /*@ Ox.addLinks Takes a string and adds links for e-mail addresses and URLs (string[, isHTML]) -> Formatted string string String isHTML If true, ignore matches in tags or enclosed by links > Ox.addLinks('foo bar ') 'foo bar <foo@bar.com>' > Ox.addLinks('www.foo.com/bar#baz, etc.') 'www.foo.com/bar#baz, etc.' > Ox.addLinks('www.foo.com', true) 'www.foo.com' @*/ Ox.addLinks = function(string, isHTML) { var isLink = false; return isHTML ? splitHTMLTags(string).map(function(string, i) { var isTag = i % 2; if (isTag) { if (/^ Returns obfuscated mailto: link > Ox.encodeEmailAddress('mailto:foo@bar.com').indexOf(':') > -1 true @*/ Ox.encodeEmailAddress = function(string) { var parts = ['mailto:' + string, string].map(function(part) { return Ox.map(part, function(char) { var code = char.charCodeAt(0); return char == ':' ? ':' : '&#' + (Math.random() < 0.5 ? code : 'x' + code.toString(16)) + ';' }); }); return '' + parts[1] + ''; }; /*@ Ox.encodeHTMLEntities Encodes HTML entities (string[, encodeAll]) -> String string String encodeAll If true, encode characters > 127 as numeric entities > Ox.encodeHTMLEntities('<\'&"> äbçdê') '<'&"> äbçdê' > Ox.encodeHTMLEntities('<\'&"> äbçdê', true) '<'&"> äbçdê' @*/ Ox.encodeHTMLEntities = function(string, encodeAll) { return Ox.map(String(string), function(char) { var code = char.charCodeAt(0); if (code < 128) { char = char in htmlEntities ? htmlEntities[char] : char; } else if (encodeAll) { char = '&#x' + Ox.pad(code.toString(16).toUpperCase(), 'left', 4, '0') + ';'; } return char; }); }; /*@ Ox.decodeHTMLEntities Decodes HTML entities (string[, decodeAll]) -> String string String decodeAll If true, decode named entities for characters > 127 Note that `decodeAll` relies on `Ox.normalizeHTML`, which uses the DOM and may transform the string > Ox.decodeHTMLEntities('<'&">') '<\'&">' > Ox.decodeHTMLEntities('<'&">') '<\'&">' > Ox.decodeHTMLEntities('äbçdê') 'äbçdê' > Ox.decodeHTMLEntities('äbçdê') 'äbçdê' > Ox.decodeHTMLEntities('äbçdê', true) 'äbçdê' > Ox.decodeHTMLEntities('β') 'β' > Ox.decodeHTMLEntities('β', true) 'β' > Ox.decodeHTMLEntities('<b>') '' @*/ Ox.decodeHTMLEntities = function(string, decodeAll) { return decodeAll ? Ox.decodeHTMLEntities(Ox.normalizeHTML(string)) : decodeHTMLEntities(string); }; /*@ Ox.highlight Highlight matches in string (string, query, classname[, isHTML]) -> Output string string Input string query Case-insentitive query string, or regular expression classname Class name for matches isHTML If true, the input string is treated as HTML > Ox.highlight('', 'foo', 'c') '<foo><bar>' > Ox.highlight('&', '&', 'c') '&amp;' > Ox.highlight('&', '&', 'c') '&' > Ox.highlight('<foo> <foo>', '', 'c', true) '<foo> <foo>' > Ox.highlight('name', 'name', 'c', true) 'name' > Ox.highlight('amp & amp', 'amp', 'c', true) 'amp & amp' > Ox.highlight('amp & amp', 'amp & amp', 'c', true) 'amp & amp' > Ox.highlight('<b>', '', 'c', true) '<b>' > Ox.highlight('<b>', '<b>', 'c', true) '<b>' > Ox.highlight('foobarbaz', 'foobar', 'c', true) 'foobarbaz' > Ox.highlight('foo

bar

baz', 'foobar', 'c', true) 'foo

bar

baz' > Ox.highlight('foo
bar baz', 'foo bar', 'c', true) 'foo
bar
baz' @*/ Ox.highlight = function(string, query, classname, isHTML) { if (!query) { return string; } var cursor = 0, entities = [], matches = [], offset = 0, re = Ox.isRegExp(query) ? query : new RegExp(Ox.escapeRegExp(query), 'gi'), span = ['', ''], tags = []; function insert(array) { // for each replacement array.forEach(function(v) { // replace the modified value with the original value string = Ox.splice(string, v.position, v.length, v.value); // for each match matches.forEach(function(match) { if (v.position < match.position) { // replacement is before match, update match position match.position += v.value.length - v.length; } else if ( v.position < match.position + match.value.length ) { // replacement is inside match, update match value match.value = Ox.splice( match.value, v.position - match.position, v.length, v.value ); } }); }); } if (isHTML && regexp.html.test(string)) { string = string // Ox.normalizeHTML(string) // remove inline tags .replace(regexp.tag, function(value, tag, position) { tags.push({ length: 0, position: position, value: value }); return ''; }) // decode html entities .replace(regexp.entity, function(value, position) { var ret = Ox.decodeHTMLEntities(value, true); entities.push({ length: ret.length, position: position, value: value }); return ret; }); // if decoding entities has created new tags, ignore them splitHTMLTags(string, entities.map(function(entity) { var ret = entity.position + offset; offset += entity.length - entity.value.length return ret; })).forEach(function(v, i) { if (i % 2 == 0) { // outside tags, find matches and save position and value v.replace(re, function(value, position) { matches.push( {position: cursor + position, value: value} ); }); } cursor += v.length; }); insert(entities); insert(tags); // for each match (in reverse order, so that positions are correct) matches.reverse().forEach(function(match) { // wrap it in a span string = Ox.splice( string, match.position, match.value.length, span.join(match.value) ); }); // we may have enclosed single opening or closing tags in a span if (matches.length && tags.length) { string = Ox.normalizeHTML(string); } } else { string = Ox.encodeHTMLEntities( string.replace(re, function(value) { matches.push(span.join(Ox.encodeHTMLEntities(value))); return salt.join(matches.length - 1); }) ); matches.forEach(function(match, i) { string = string.replace(new RegExp(salt.join(i)), match); }); } return string; }; /*@ Ox.normalizeHTML Normalize HTML (using the DOM) > Ox.normalizeHTML('foo') 'foo' > Ox.normalizeHTML('foo') 'foo' > Ox.normalizeHTML('<'&"> äbçdê') '<\'&"> äbçdê' @*/ Ox.normalizeHTML = function(html) { return regexp.html.test(html) ? Ox.$('
').html(html).html() : html; }; /*@ Ox.parseMarkdown Parses (a tiny subset of) Markdown. > Ox.parseMarkdown('*foo* **bar** `baz` ``back`tick``') 'foo bar baz back`tick' > Ox.parseMarkdown('') 'http://example.com' > Ox.parseMarkdown('[example](http://example.com "example.com")') 'example' > Ox.parseMarkdown('[example](http://example.com?foo=bar&bar=baz)') 'example' > Ox(Ox.parseMarkdown('')).startsWith('mail@example.com' */ Ox.parseMarkdown = function(string) { // see https://github.com/coreyti/showdown/blob/master/src/showdown.js return string.replace(/\r\n/g, '\n').replace(/\r/g, '\n') .replace(/\n\n/g, '

') .replace( /(\*\*|__)(?=\S)([^\r]*?\S[*_]*)\1/g, '$2' ) .replace( /(\*|_)(?=\S)([^\r]*?\S)\1/g, '$2' ) .replace( /\n```(.*)\n([^`]+)\n```/g, function(match, classname, code) { return '
'
                        + code.trim().replace(/
'; } ) .replace( /(^|[^\\])(`+)([^\r]*?[^`])\2(?!`)/gm, function(match, prev, backticks, code, next) { return prev + '' + code.trim().replace(/'; } ) .replace( /(\[((?:\[[^\]]*\]|[^\[\]])*)\]\([ \t]*()?[ \t]*((['"])(.*?)\6[ \t]*)?\))/g, function(match, all, text, id, url, rest, quote, title) { return '' + text + ''; } ) .replace( /<((https?|ftp|dict):[^'">\s]+)>/gi, '$1' ) .replace( /<(?:mailto:)?([-.\w]+\@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)>/gi, function(match, mail) { return Ox.encodeEmailAddress(mail); } ); }; /*@ Ox.sanitizeHTML Takes untrusted HTML and returns something trustworthy > Ox.sanitizeHTML('http://foo.com, ...') 'http://foo.com, ...' > Ox.sanitizeHTML('http://foo.com/foo?bar&baz, ...') 'http://foo.com/foo?bar&baz, ...' > Ox.sanitizeHTML('(see: www.foo.com)') '(see: www.foo.com)' > Ox.sanitizeHTML('foo@bar.com') 'foo@bar.com' > Ox.sanitizeHTML('foo') 'foo' > Ox.sanitizeHTML('foo') 'foo' > Ox.sanitizeHTML('http://www.foo.com/') 'http://www.foo.com/' > Ox.sanitizeHTML('foo') 'foo' > Ox.sanitizeHTML('foo') '<a href="javascript:alert()">foo' > Ox.sanitizeHTML('foo') '<a href="foo">foo' > Ox.sanitizeHTML('foo') 'foo' > Ox.sanitizeHTML('[http://foo.com foo]') 'foo' > Ox.sanitizeHTML('foo') '
foo
' > Ox.sanitizeHTML('') '<script>alert()</script>' > Ox.sanitizeHTML('\'foo\' < \'bar\' && "foo" > "bar"') '\'foo\' < \'bar\' && "foo" > "bar"' > Ox.sanitizeHTML('foo') 'foo' > Ox.sanitizeHTML('foo') 'foo' > Ox.sanitizeHTML('&&') '&&' @*/ Ox.sanitizeHTML = function(html, tags) { var matches = []; tags = tags || defaultTags; // html = Ox.clean(html); fixme: can this be a parameter? if (tags.indexOf('[]') > -1) { html = html.replace(/\[((\/|https?:\/\/|mailto:).+?) (.+?)\]/gi, '$3'); tags = tags.filter(function(tag) { return tag != '[]'; }); } tags.forEach(function(tag) { var array = replace[tag] || replace['*'](tag); Ox.forEach(array, function(value) { html = html.replace(value[0], function() { matches.push(Ox.formatString(value[1], arguments)); return salt.join(matches.length - 1); }); }); }); html = Ox.encodeHTMLEntities(Ox.decodeHTMLEntities(html)); matches.forEach(function(match, i) { html = html.replace(new RegExp(salt.join(i)), match); }); html = Ox.addLinks(html, true); html = html.replace(/\n\n/g, '

'); // Close extra opening and remove extra closing tags. // Note: this converts ''' to "'" and '"' to '"' return Ox.normalizeHTML(html); }; /*@ Ox.stripTags Strips HTML tags from a string > Ox.stripTags('foo') 'foo' @*/ Ox.stripTags = function(string) { return string.replace(/<.*?>/g, ''); }; }());