From 10e637b427e5cdd9b5b6660469391cac525da637 Mon Sep 17 00:00:00 2001 From: Einar Egilsson Date: Mon, 14 Sep 2009 14:06:50 +0000 Subject: Unescape matches option + some unit tests git-svn-id: http://einaregilsson.googlecode.com/svn/mozilla/redirector/trunk@245 119bf307-c92d-0410-89bd-8f53e6181181 --- Redirector.csproj | 11 +-- chrome/content/redirect.js | 155 ++++++++++++++++++++------------------- chrome/content/redirect.xul | 22 +++--- chrome/content/unittests.html | 86 ++++++++++++++++++++++ chrome/content/unittests.js | 12 +++ chrome/locale/en-US/redirect.dtd | 1 + components/redirector.js | 24 +++--- install.rdf | 2 +- 8 files changed, 209 insertions(+), 104 deletions(-) create mode 100644 chrome/content/unittests.html create mode 100644 chrome/content/unittests.js diff --git a/Redirector.csproj b/Redirector.csproj index 4c50a1a..558bb46 100644 --- a/Redirector.csproj +++ b/Redirector.csproj @@ -39,12 +39,7 @@ - - - + + + \ No newline at end of file diff --git a/chrome/content/redirect.js b/chrome/content/redirect.js index fe468f0..f51e7f2 100644 --- a/chrome/content/redirect.js +++ b/chrome/content/redirect.js @@ -1,83 +1,86 @@ -//// $Id$ - -const kRedirectorWildcard = 'W'; -const kRedirectorRegex= 'R'; -var Redirector = Components.classes["@einaregilsson.com/redirector;1"].getService(Components.interfaces.nsISupports).wrappedJSObject; - -function $(id) { - return document.getElementById(id); -} - -var Redirect = { - - onLoad : function() { - var item = window.arguments[0]; - item.saved = false; - $('txtExampleUrl').value = item.exampleUrl; - $('txtPattern').value = item.pattern; - $('txtRedirectUrl').value = item.redirectUrl || ''; - $('txtExcludePattern').value = item.excludePattern || ''; - - $('txtPattern').focus(); - this.strings = document.getElementById("redirector-strings"); - - if (item.patternType == kRedirectorRegex) { - $('rdoRegex').setAttribute('selected', true); - $('rdoWildcard').setAttribute('selected', false); - } - }, - - onAccept : function() { - var item = window.arguments[0]; - - item.pattern = $('txtPattern').value; - if ($('rdoRegex').selected) { - item.patternType = kRedirectorRegex; - } else { - item.patternType = kRedirectorWildcard; - } - item.exampleUrl =$('txtExampleUrl').value; - item.redirectUrl = $('txtRedirectUrl').value; - item.excludePattern = $('txtExcludePattern').value; - item.saved = true; - - return true; - }, - +//// $Id$ + +const kRedirectorWildcard = 'W'; +const kRedirectorRegex= 'R'; +var Redirector = Components.classes["@einaregilsson.com/redirector;1"].getService(Components.interfaces.nsISupports).wrappedJSObject; + +function $(id) { + return document.getElementById(id); +} + +var Redirect = { + + onLoad : function() { + var item = window.arguments[0]; + item.saved = false; + $('txtExampleUrl').value = item.exampleUrl; + $('txtPattern').value = item.pattern; + $('txtRedirectUrl').value = item.redirectUrl || ''; + $('txtExcludePattern').value = item.excludePattern || ''; + $('chkUnescapeMatches').setAttribute('selected', !!item.unescapeMatches); + + $('txtPattern').focus(); + this.strings = document.getElementById("redirector-strings"); + + if (item.patternType == kRedirectorRegex) { + $('rdoRegex').setAttribute('selected', true); + $('rdoWildcard').setAttribute('selected', false); + } + }, + + onAccept : function() { + var item = window.arguments[0]; + + item.pattern = $('txtPattern').value; + if ($('rdoRegex').selected) { + item.patternType = kRedirectorRegex; + } else { + item.patternType = kRedirectorWildcard; + } + item.exampleUrl =$('txtExampleUrl').value; + item.redirectUrl = $('txtRedirectUrl').value; + item.excludePattern = $('txtExcludePattern').value; + item.unescapeMatches = $('chkUnescapeMatches').selected; + item.saved = true; + + return true; + }, + msgBox : function(title, text) { Components.classes["@mozilla.org/embedcomp/prompt-service;1"] .getService(Components.interfaces.nsIPromptService) .alert(window, title, text); }, - testPattern : function() { - var redirectUrl, pattern, excludePattern, example, extName, isExcluded; - redirectUrl = $('txtRedirectUrl').value; - pattern = $('txtPattern').value; - excludePattern = $('txtExcludePattern').value; - example = $('txtExampleUrl').value; - - extName = this.strings.getString('extensionName'); - - if ($('rdoRegex').selected) { - redirectUrl = Redirector.regexMatch(pattern, example, redirectUrl); - if (excludePattern) { - isExcluded = Redirector.regexMatch(excludePattern, example, 'exclude'); - } - } else { - redirectUrl = Redirector.wildcardMatch(pattern, example, redirectUrl); - if (excludePattern) { - isExcluded = Redirector.wildcardMatch(excludePattern, example, 'exclude'); - } - } - - var isRedirectMatch = redirectUrl || (redirectUrl === '' && $('txtRedirectUrl').value === ''); - if (isRedirectMatch && !isExcluded) { - this.msgBox(extName, this.strings.getFormattedString('testPatternSuccess', [pattern, example, redirectUrl])); - } else if (isExcluded) { - this.msgBox(extName, this.strings.getFormattedString('testPatternExclude', [example, excludePattern])); - } else { - this.msgBox(extName, this.strings.getFormattedString('testPatternFailure', [pattern, example])); - } - } + testPattern : function() { + var redirectUrl, pattern, excludePattern, example, extName, isExcluded, unescapeMatches; + redirectUrl = $('txtRedirectUrl').value; + pattern = $('txtPattern').value; + excludePattern = $('txtExcludePattern').value; + example = $('txtExampleUrl').value; + unescapeMatches = $('chkUnescapeMatches').checked; + + extName = this.strings.getString('extensionName'); + + if ($('rdoRegex').selected) { + redirectUrl = Redirector.regexMatch(pattern, example, redirectUrl, unescapeMatches); + if (excludePattern) { + isExcluded = Redirector.regexMatch(excludePattern, example, 'exclude'); + } + } else { + redirectUrl = Redirector.wildcardMatch(pattern, example, redirectUrl, unescapeMatches); + if (excludePattern) { + isExcluded = Redirector.wildcardMatch(excludePattern, example, 'exclude'); + } + } + + var isRedirectMatch = redirectUrl || (redirectUrl === '' && $('txtRedirectUrl').value === ''); + if (isRedirectMatch && !isExcluded) { + this.msgBox(extName, this.strings.getFormattedString('testPatternSuccess', [pattern, example, redirectUrl])); + } else if (isExcluded) { + this.msgBox(extName, this.strings.getFormattedString('testPatternExclude', [example, excludePattern])); + } else { + this.msgBox(extName, this.strings.getFormattedString('testPatternFailure', [pattern, example])); + } + } }; \ No newline at end of file diff --git a/chrome/content/redirect.xul b/chrome/content/redirect.xul index aea930b..d3b0907 100644 --- a/chrome/content/redirect.xul +++ b/chrome/content/redirect.xul @@ -18,32 +18,36 @@ - + - + + + + \ No newline at end of file diff --git a/chrome/content/unittests.js b/chrome/content/unittests.js new file mode 100644 index 0000000..c532d3f --- /dev/null +++ b/chrome/content/unittests.js @@ -0,0 +1,12 @@ + +var tests = { + "Wildcard matches" : { + run : function(data) { return redirector.wildcardMatch(data[0], data[1], 'abc', false); }, + describe : function(data) { return data[0] + ' matches ' + data[1]; }, + tests : [ + ['http://foo*', 'http://foobar.is'], + ['http://foo*', 'http://foo'], + ['*foo*', 'http://foo'] + ] + } +}; diff --git a/chrome/locale/en-US/redirect.dtd b/chrome/locale/en-US/redirect.dtd index 30968fb..40098b8 100644 --- a/chrome/locale/en-US/redirect.dtd +++ b/chrome/locale/en-US/redirect.dtd @@ -10,4 +10,5 @@ + diff --git a/components/redirector.js b/components/redirector.js index 09ef35e..4e44c11 100644 --- a/components/redirector.js +++ b/components/redirector.js @@ -50,7 +50,8 @@ function RedirectorPolicy() { pattern : arr[1], redirectUrl : arr[2], patternType : arr[3], - excludePattern : arr[4] + excludePattern : arr[4], + unescapeMatches : !!arr[5] //This might be undefined for those upgrading from 1.7.1 but that's ok }); } } @@ -117,6 +118,10 @@ RedirectorPolicy.prototype = { this.prefBranch.setBoolPref('enabled', val); }, + reload : function() { + //TODO: Reload implementation + }, + addRedirect : function(redirect) { this.list.push(redirect); this.save(); @@ -132,7 +137,7 @@ RedirectorPolicy.prototype = { , tempList = []; for each (r in this.list) { - tempList.push([r.exampleUrl, r.pattern, r.redirectUrl, r.patternType, r.excludePattern].join(',,,')); + tempList.push([r.exampleUrl, r.pattern, r.redirectUrl, r.patternType, r.excludePattern, r.unescapeMatches].join(',,,')); } this.prefBranch.setCharPref('redirects', tempList.join(':::')); }, @@ -141,7 +146,7 @@ RedirectorPolicy.prototype = { return this.prefBranch.getBoolPref(name); }, - regexMatch : function(pattern, text, redirectUrl) { + regexMatch : function(pattern, text, redirectUrl, unescapeMatches) { if (!pattern) { return null; @@ -160,7 +165,7 @@ RedirectorPolicy.prototype = { if (match) { for (var i = 1; i < match.length; i++) { rxrepl = new RegExp('\\$' + i, 'gi'); - redirectUrl = redirectUrl.replace(rxrepl, match[i]); + redirectUrl = redirectUrl.replace(rxrepl, unescapeMatches ? unescape(match[i]) : match[i]); } return redirectUrl; } @@ -182,13 +187,13 @@ RedirectorPolicy.prototype = { this.debug(url + ' matches exclude pattern ' + redirect.excludePattern); return null; } - return this.wildcardMatch(redirect.pattern, url, redirect.redirectUrl); + return this.wildcardMatch(redirect.pattern, url, redirect.redirectUrl, redirect.unescapeMatches); } else if (redirect.patternType == kRedirectorRegex) { if (this.regexMatch(redirect.excludePattern, url, 'whatever')) { this.debug(url + ' matches exclude pattern ' + redirect.excludePattern); return null; } - return this.regexMatch(redirect.pattern, url, redirect.redirectUrl); + return this.regexMatch(redirect.pattern, url, redirect.redirectUrl, redirect.unescapeMatches); } return null; }, @@ -206,7 +211,7 @@ RedirectorPolicy.prototype = { return uri.resolve(relativeUrl); }, - wildcardMatch : function(pattern, text, redirectUrl) { + wildcardMatch : function(pattern, text, redirectUrl, unescapeMatches) { var parts , part , i @@ -239,15 +244,14 @@ RedirectorPolicy.prototype = { if (i == parts.length -1 && i != "" && text.substr(text.length - part.length) != part) { return null; - } if (i == 0) { //Do nothing, part will be added on next run } else if (i == parts.length-1 && parts[i] == '') { - stars.push(text); + stars.push(unescapeMatches ? unescape(text) : text); } else { - stars.push(text.substr(0, pos)); + stars.push(unescapeMatches ? unescape(text.substr(0, pos)) : text.substr(0, pos)); } text = text.substr(pos + part.length); diff --git a/install.rdf b/install.rdf index 38f481b..f86b411 100644 --- a/install.rdf +++ b/install.rdf @@ -5,7 +5,7 @@ redirector@einaregilsson.com Redirector - 1.7.1 + 1.7.2 Einar Egilsson Automatically redirects to user-defined urls on certain pages http://tech.einaregilsson.com/projects/redirector/ -- cgit v1.2.3-70-g09d2