X-Git-Url: https://git.ao2.it/GM_direct_download_links.git/blobdiff_plain/e0b26e649b4eee375536317def6b3603e8d1013e..HEAD:/direct_download_links.user.js diff --git a/direct_download_links.user.js b/direct_download_links.user.js index 81a6fb8..f9d51e1 100644 --- a/direct_download_links.user.js +++ b/direct_download_links.user.js @@ -23,12 +23,17 @@ // @name Direct Download Links // @namespace http://git.ao2.it/GM_direct_download_links.git // @description Add direct download links +// @grant GM_log +// @grant GM_xmlhttpRequest // @include http://video.repubblica.it/* // @include http://tv.repubblica.it/* // @include http://trovacinema.repubblica.it/* // @include http://www.kataweb.it/tvzap/* // @include http://www.rai.tv/* // @include http://soundcloud.com/* +// @include http://www.telecinco.es/* +// @include http://slideshare.net/* +// @include http://www.slideshare.net/* // ==/UserScript== // @@ -78,7 +83,7 @@ var supported_sites = [ { locationRegexp: /^http:\/\/video\.repubblica\.it\/.*$/, urlContainerXPath: '//div[@id="contA"]', - urlRegexp: /'pcUrl', '((http|mms):\/\/[^']*)'/, + urlRegexp: /[^\/]addParam\('format', '[^']*', '((http|mms):\/\/[^']*)'/, linkDestXPath: '//div[@id="contA"]', }, { @@ -96,19 +101,19 @@ var supported_sites = [ }, { locationRegexp: /^http:\/\/www\.kataweb\.it\/tvzap\/.*$/, - urlContainerXPath: '//div[@id="tvzap_video"]', - urlRegexp: /'pcUrl', '((http|mms):\/\/[^']*)'/, - linkDestXPath: '//div[@id="playerCont"]', + urlContainerXPath: '//div[@id="contAB"]', + urlRegexp: /[^\/]addParam\('pcUrl', '((http|mms):\/\/[^']*)'/, + linkDestXPath: '//div[@id="contAB"]', }, { locationRegexp: /^http:\/\/www\.rai\.tv\/.*$/, - initCommand: function(site) { - unsafeWindow.Silverlight.isInstalled = function(version) { - return true; - }; + initCommand: function(site) { + unsafeWindow.Silverlight.isInstalled = function(version) { + return true; + }; }, urlContainerXPath: '//div[@id="silverlightControlHost" or @id="SilverlightPlayer"]', - urlRegexp: /mediaUri=(http:\/\/[^,]*)/, + urlRegexp: /mediaUri=(http:\/\/[^,"]*)/, onEvent: { evt: 'DOMNodeInserted', targetElement: 'object' }, processURL: _rai_get_actual_url, linkDestXPath: '//div[@id="silverlightControlHost" or @id="SilverlightPlayer"]', @@ -119,6 +124,27 @@ var supported_sites = [ urlRegexp: /"streamUrl":"([^"]*)"/, linkDestXPath: '//div[@id="main-content-inner"]', }, + { + locationRegexp: /^http:\/\/www\.telecinco.es\/.*$/, + urlContainerXPath: '//video[@class="video-js"]', + urlRegexp: /src="([^"]*)"/, + linkDestXPath: '//div[@class="pg-bd"]', + }, + { + locationRegexp: /^http:\/\/(www\.|)slideshare.net\/.*$/, + urlContainerXPath: '//script[@id="page-json"]', + urlRegexp: /"ppt_location":"([^"]*)"/, + processURL: function(site, object_id) { + var URL = 'http://s3.amazonaws.com/slideshare/' + object_id + '.xml'; + var evt = document.createEvent('Event'); + evt.initEvent('UrlFetched', true, true); + evt.site = site; + evt.URL = URL; + document.dispatchEvent(evt); + return; + }, + linkDestXPath: '//div[@class="playerWrapper"]', + }, ]; /* Apply different rules to different sites */ @@ -138,6 +164,13 @@ function getElementByXPath(query, root) { return document.evaluate(query, root || document, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null).singleNodeValue; } +/* from http://stackoverflow.com/questions/1912501 */ +function htmlDecode(input){ + var e = document.createElement('div'); + e.innerHTML = input; + return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue; +} + /** * Add a Direct Download link on the page for the specified URL * @@ -146,7 +179,7 @@ function getElementByXPath(query, root) { * @return: null on error, true on success */ function direct_download_link_add(pageURL, site) { - site.pageURL = pageURL + site.pageURL = pageURL; var element = getElementByXPath(site.urlContainerXPath); if (!element) { DDL_log('DirectDL (' + site.pageURL + '): Cannot find the element ' + site.urlContainerXPath + ' containing the URL.'); @@ -198,7 +231,7 @@ function _get_URL(site, element) { var evt = document.createEvent('Event'); evt.initEvent('UrlFetched', true, true); evt.site = site; - evt.URL = URL; + evt.URL = htmlDecode(URL); document.dispatchEvent(evt); }