X-Git-Url: https://git.ao2.it/GM_direct_download_links.git/blobdiff_plain/15eb7fbb4da6258e7fbbc499d342b68463bc132a..65adaf39142ca9c2cfbe239bfafff690833a42cc:/direct_download_links.user.js diff --git a/direct_download_links.user.js b/direct_download_links.user.js index 418b3a5..9f42a3f 100644 --- a/direct_download_links.user.js +++ b/direct_download_links.user.js @@ -62,6 +62,11 @@ * targetElement: the element in the event handler we want the * urlRegexp is performed on. * + * processURL: a function to process the URL before adding the Direct + * Downdload Link to the page, it must accept a 'site' and a + * 'URL' parameters and dispatch the UrlFetched to pass the + * modified URL to _add_link(). + * */ var supported_sites = [ { @@ -93,6 +98,7 @@ var supported_sites = [ urlContainer: 'Player', urlRegexp: /mediaUri=(http:\/\/[^,]*)/, onEvent: { evt: 'DOMNodeInserted', targetElement: 'object' }, + processURL: _rai_get_actual_url, linkDest: 'Player', }, ]; @@ -157,6 +163,11 @@ function _get_URL(site, element) { return; } + if (site.processURL) { + site.processURL(site, URL); + return; + } + var evt = document.createEvent('Event'); evt.initEvent('UrlFetched', true, true); evt.site = site; @@ -168,22 +179,30 @@ function _add_link(e) { var site = e.site; var URL = e.URL;; - var links = document.getElementById(site.linkDest); - if (!links) { + var destination = document.getElementById(site.linkDest); + if (!destination) { DDL_log('DirectDl (' + site.pageURL + '): Cannot add the direct download link.'); return; } - var download_link = document.createElement('a'); - download_link.textContent = 'Direct Link'; - download_link.setAttribute('href', URL); - var style = 'background-color: white; color: blue;'; - style += ' border: 2px solid red;' - style += ' float: right; font-size: large;'; - style += ' padding: .5em; margin: 1em;' - download_link.setAttribute('style', style); - - links.insertBefore(download_link, links.firstChild); + // Check if we added the link already, if so just update the href attribute. + // This is useful when _get_URL() is called on async events. + var download_link = document.getElementById('GM_direct_downaload_link'); + if (download_link) { + download_link.setAttribute('href', URL); + } else { + download_link = document.createElement('a'); + download_link.textContent = 'Direct Link'; + download_link.setAttribute('id', 'GM_direct_downaload_link'); + download_link.setAttribute('href', URL); + var style = 'background-color: white; color: blue;'; + style += ' border: 2px solid red;' + style += ' float: right; font-size: large;'; + style += ' padding: .5em; margin: 1em;' + download_link.setAttribute('style', style); + + destination.insertBefore(download_link, destination.firstChild); + } } function DDL_log(message) { @@ -194,3 +213,33 @@ function DDL_log(message) { GM_log(message); } } + +function _rai_get_actual_url(site, URL) { + // http://www.neaveru.com/wordpress/index.php/2008/05/09/greasemonkey-bug-domnodeinserted-event-doesnt-allow-gm_xmlhttprequest/ + setTimeout( function() { + GM_xmlhttpRequest({ + method: "GET", + // XXX A custom header. This is the "clever" trick Rai uses to ensure + // the content is accessed by www.rai.tv only... + headers: {'viaurl': 'www.rai.tv'}, + url: URL, + onload: function(response) { + text = response.responseText; + text = text.replace(/&/g, '&') + parser = new DOMParser(); + xmlDoc = parser.parseFromString(text, "text/xml"); + + ref = xmlDoc.getElementsByTagName('REF'); + if (ref.length > 0) { + href = ref[0].getAttribute('HREF');; + + var evt = document.createEvent('Event'); + evt.initEvent('UrlFetched', true, true); + evt.site = site; + evt.URL = href; + document.dispatchEvent(evt); + } + } + }); + }, 0); +}