resurrect-pages-isup-edition/content/resurrect.js

269 lignes
7.2 KiB
JavaScript
Brut Vue normale Historique

var resurrect={
2006-05-15 00:37:23 +02:00
originalDoc:null,
// // // // // // // // // // // // // // // // // // // // // // // // // // //
onLoad:function() {
window.removeEventListener('load', resurrect.onLoad, false);
document.getElementById('contentAreaContextMenu')
.addEventListener('popupshowing', resurrect.toggleContextItems, false);
2006-05-17 04:30:57 +02:00
window.document.getElementById('appcontent').addEventListener(
'DOMContentLoaded', resurrect.contentDomLoad, false
2006-05-17 04:30:57 +02:00
);
},
toggleContextItems:function(event) {
resurrect.clickTarget=event.target;
var onDocument=!(
gContextMenu.isContentSelected || gContextMenu.onTextInput ||
gContextMenu.onLink || gContextMenu.onImage
);
document.getElementById('resurrect-page-context')
.setAttribute('hidden', !onDocument);
document.getElementById('resurrect-link-context')
.setAttribute('hidden', !gContextMenu.onLink);
},
contentDomLoad:function(event) {
var contentDoc=event.target;
var contentWin=contentDoc.defaultView;
if (contentDoc.documentURI.match(/^about:neterror/)) {
// Inject our content...
var xhr = new XMLHttpRequest();
xhr.open('GET', 'chrome://resurrect/content/netError.xhtml', false);
xhr.send(null);
var resurrectFieldset = xhr.responseXML.getElementById('resurrect');
var newFieldset = contentDoc.adoptNode(resurrectFieldset);
var container = contentDoc.getElementById('errorPageContainer');
container.appendChild(newFieldset);
// ...including the CSS.
var link = contentDoc.createElement('link');
link.setAttribute('rel', 'stylesheet');
link.setAttribute('href', 'chrome://resurrect/skin/netError.css');
link.setAttribute('type', 'text/css');
link.setAttribute('media', 'all');
contentDoc.getElementsByTagName('head')[0].appendChild(link);
// Add the className that enables it, only when appropriate.
contentDoc.location.href =
'javascript:if ("nssBadCert" != getErrorCode()) {'
+ 'document.body.className += " resurrect";'
+ '}; void(0)';
// Add event listener.
contentDoc.getElementById('resurrect').addEventListener(
2006-10-08 19:49:45 +02:00
'click', resurrect.clickedHtml, false
2006-05-17 04:30:57 +02:00
);
}
},
disableButtons:function(doc) {
var bs=doc.getElementById('resurrect')
.getElementsByTagName('xul:button');
for (var i=0, b=null; b=bs[i]; i++) {
b.setAttribute('disabled', 'true');
}
},
// // // // // // // // // // // // // // // // // // // // // // // // // // //
page:function(event) {
var doc=getBrowser().contentWindow.document;
resurrect.showDialog(doc.location.href);
},
link:function(event) {
var el=document.popupNode;
try {
while (el && el.tagName && 'A'!=el.tagName.toUpperCase()) {
el=el.parentNode;
}
resurrect.showDialog(el.href);
} catch (e) { }
return null;
},
// // // // // // // // // // // // // // // // // // // // // // // // // // //
loadTarget:function() {
var pref=Components.classes['@mozilla.org/preferences-service;1']
.getService(Components.interfaces.nsIPrefBranch);
var target=pref.getCharPref('extensions.resurrect.target');
document.getElementById('targetGroup').selectedItem=
document.getElementById(target);
},
saveTarget:function(el) {
var target=document.getElementById('targetGroup').selectedItem.id;
var pref=Components.classes['@mozilla.org/preferences-service;1']
.getService(Components.interfaces.nsIPrefBranch);
pref.setCharPref('extensions.resurrect.target', target);
},
// // // // // // // // // // // // // // // // // // // // // // // // // // //
showDialog:function(url) {
2006-05-15 00:37:23 +02:00
resurrect.originalDoc=getBrowser().contentWindow.document;
window.openDialog(
'chrome://resurrect/content/resurrect-select-mirror.xul',
'_blank',
2006-08-25 02:44:49 +02:00
'modal,centerscreen,resizable=no,chrome,dependent',
getBrowser().contentWindow.document, url
2006-05-15 00:37:23 +02:00
);
},
2006-10-08 19:49:45 +02:00
clickedHtml:function(event) {
if ('true'==event.target.getAttribute('disabled')) {
return;
}
return resurrect.clickHandler(
event,
2006-10-08 19:49:45 +02:00
event.target.ownerDocument,
event.target.ownerDocument.location.href
);
},
clickedXul:function(event) {
resurrect.saveTarget(event.target);
return resurrect.clickHandler(
event,
2006-10-08 19:49:45 +02:00
window.arguments[0],
window.arguments[1]
);
},
clickHandler:function(event, contentDoc, rawUrl) {
resurrect.disableButtons(event.target.ownerDocument);
// Run the actual code. After timeout for UI repaint.
setTimeout(
resurrect.selectMirror, 1,
event.target.getAttribute('value'),
event.target.ownerDocument,
contentDoc, rawUrl
);
},
selectMirror:function(mirror, ownerDoc, contentDoc, rawUrl) {
2006-05-17 04:30:57 +02:00
var gotoUrl=null;
2006-05-15 00:37:23 +02:00
var encUrl=encodeURIComponent(rawUrl);
2008-04-29 03:14:22 +02:00
var xmlUrl=rawUrl.replace('&', '&');
2006-05-15 00:37:23 +02:00
switch (mirror) {
2006-05-15 00:37:23 +02:00
case 'coralcdn':
gotoUrl=rawUrl.substring(0, 8)+
rawUrl.substring(8).replace(/\//, '.nyud.net/');
2006-05-15 00:37:23 +02:00
break;
2006-05-15 00:38:47 +02:00
case 'google':
gotoUrl='http://www.google.com/search?q=cache:'+encUrl
break;
case 'googletext':
gotoUrl='http://www.google.com/search?strip=1&q=cache:'+encUrl
break;
2006-05-15 00:41:06 +02:00
case 'archive':
gotoUrl='http://web.archive.org/web/*/'+rawUrl
break;
case 'yahoo':
var xhr=new XMLHttpRequest();
xhr.open('GET',
'http://api.search.yahoo.com/WebSearchService/V1/'+
'webSearch?appid=firefox-resurrect&query='+encUrl+'&results=1',
false
);
xhr.send(null);
try {
var c=xhr.responseXML.getElementsByTagName('Cache');
gotoUrl=c[0].firstChild.textContent;
} catch (e ) {
gotoUrl='http://search.yahoo.com/search?p='+encUrl;
}
break;
case 'bing':
var xhr=new XMLHttpRequest();
xhr.open('GET',
'http://api.search.live.net/xml.aspx'+
'?AppId=FD382E93B5ABC456C5E34C238A906CAB1E6F9875'+
'&Query=url:'+encUrl+
'&Sources=web&Web.Count=1',
false
);
xhr.send(null);
try {
var c=xhr.responseXML.getElementsByTagName('web:CacheUrl');
2006-05-19 02:14:34 +02:00
gotoUrl=c[0].textContent;
} catch (e) {
gotoUrl='http://www.bing.com/search?q=url:'+encUrl;
}
2008-04-29 03:14:22 +02:00
break;
case 'gigablast':
var apiUrl=[
'http://feed.gigablast.com/search',
'?q=url:', encUrl,
2008-04-29 03:14:22 +02:00
'&site=', (rawUrl.match(/:\/\/([^/]+)/)[1]),
'&n=1&ns=0&raw=9&bq=0&nrt=0'
].join('');
var xhr=new XMLHttpRequest();
xhr.open('GET', apiUrl, false);
xhr.send(null);
try {
var docId=xhr.responseXML
.getElementsByTagName('docId')[0].textContent;
gotoUrl='http://www.gigablast.com/index.php'
+'?page=get&ih=1&ibh=1&cas=0&d='
+docId;
} catch (e) {
gotoUrl='http://www.gigablast.com/index.php?q=url:'+encUrl;
2008-04-29 03:14:22 +02:00
}
2008-04-30 03:26:26 +02:00
break;
case 'webcitation':
gotoUrl='http://webcitation.org/query.php?url='+encUrl;
2006-05-17 04:30:57 +02:00
break;
default:
return false;
2006-05-15 00:41:06 +02:00
break;
2006-05-15 00:37:23 +02:00
}
2006-06-18 02:41:53 +02:00
2006-05-15 00:37:23 +02:00
if (gotoUrl) {
2006-06-18 02:41:53 +02:00
if (ownerDoc.getElementById('targetTab').getAttribute('selected')) {
window.opener.openUILinkIn(gotoUrl, 'tab');
2006-06-18 02:41:53 +02:00
} else if (ownerDoc.getElementById('targetWin').getAttribute('selected')) {
// the setTimeout keeps focus from returning to the opener
setTimeout(function(){
window.opener.openNewWindowWith(gotoUrl, null, null);
}, 10);
} else {
contentDoc.location.assign(gotoUrl);
}
2006-05-15 00:37:23 +02:00
if ('chrome://resurrect/content/resurrect-select-mirror.xul'==window.document.location) {
// setTimeout avoids errors because the window is gone
setTimeout(window.close, 0);
}
2006-05-17 04:30:57 +02:00
}
}
}//end var resurrect
2006-05-15 00:37:23 +02:00
if ('undefined'!=typeof gBrowser) {
window.addEventListener('load', resurrect.onLoad, false);
}