X-Git-Url: https://git.ao2.it/GM_direct_download_links.git/blobdiff_plain/9b78a08b8941d4f5ded69bdd5bbbf8d4804dea37..b541bf4549500799c966c71bfc8bccf73193fa5a:/direct_download_links.user.js diff --git a/direct_download_links.user.js b/direct_download_links.user.js index 6d0f401..b149698 100644 --- a/direct_download_links.user.js +++ b/direct_download_links.user.js @@ -1,6 +1,6 @@ -// direct_download_links - Add direct download links for (video) files -// version 0.1 -// 2011-08-02 +// direct_download_links - Add direct download links +// version 0.2 +// 2011-11-14 // Copyright (C) 2011 Antonio Ospite // Released under the GPL license // http://www.gnu.org/copyleft/gpl.html @@ -22,44 +22,78 @@ // ==UserScript== // @name Direct Download Links // @namespace http://git.ao2.it/GM_direct_download_links.git -// @description Add direct download links for (video) files +// @description Add direct download links // @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/* // ==/UserScript== +// +// NOTE, for rai.tv to work you need to install a script like: +// http://git.ao2.it/smooth-dl.git/blob_plain/HEAD:/scripts/SilverSpoof.user.js /* * TODO: * - find a way to use the same string as in the @include lines to match the * current window.location + * - use xpath instead of regexp like in http://a32.me/2009/11/greasemonkey/ + * - use jquery, like shown in http://a32.me/2009/11/greasemonkey/ */ +/* Fields supported by the "site" object. + * + * Manadatory fields: + * pageURL: the URL of the page we are modifying + * urlContainer: the element containing the URL to link + * urlRegexp: the regular expression for finding the URL, the first + * sub-pattern is taken as the URL + * linkDest: the element where to place the Direct Download link + * + * + * Optional fields: + * onEvent: used to delay the urlRegexp matching to a certain event like + * 'DOMNodeInserted' useful when the URL is added by some javascript + * library. It has two fields: + * + * evt: the event we want to wait for (e.g. 'DOMNodeInserted') + * + * targetElement: the element in the event handler we want the + * urlRegexp is performed on. + * + */ var supported_sites = [ { locationRegexp: /^http:\/\/video\.repubblica\.it\/.*$/, - fileElem: 'contA', - fileRegexp: /'pcUrl', '((http|mms):\/\/[^']*)'/, + urlContainer: 'contA', + urlRegexp: /'pcUrl', '((http|mms):\/\/[^']*)'/, linkDest: 'contA', }, { locationRegexp: /^http:\/\/tv\.repubblica\.it\/.*$/, - fileElem: 'boxPlayer', - fileRegexp: /'pcUrl', '((http|mms):\/\/[^']*)'/, + urlContainer: 'boxPlayer', + urlRegexp: /'pcUrl', '((http|mms):\/\/[^']*)'/, linkDest: 'box_embed', }, { locationRegexp: /^http:\/\/trovacinema\.repubblica\.it\/.*$/, - fileElem: 'col-center', - fileRegexp: /'flvUrl', '((http|mms):\/\/[^']*)'/, + urlContainer: 'col-center', + urlRegexp: /'flvUrl', '((http|mms):\/\/[^']*)'/, linkDest: 'col-center', }, { locationRegexp: /^http:\/\/www\.kataweb\.it\/tvzap\/.*$/, - fileElem: 'tvzap_video', - fileRegexp: /'pcUrl', '((http|mms):\/\/[^']*)'/, + urlContainer: 'tvzap_video', + urlRegexp: /'pcUrl', '((http|mms):\/\/[^']*)'/, linkDest: 'playerCont', }, + { + locationRegexp: /^http:\/\/www\.rai\.tv\/.*$/, + urlContainer: 'Player', + urlRegexp: /mediaUri=(http:\/\/[^,]*)/, + onEvent: { evt: 'DOMNodeInserted', targetElement: 'object' }, + linkDest: 'Player', + }, ]; /* Apply different rules to different sites */ @@ -68,51 +102,78 @@ for (i = 0; i < supported_sites.length; i++) { var result = window.location.href.match(site.locationRegexp); if (result) { - var ret = direct_download_link_add(window.location.href, site.fileElem, site.fileRegexp, site.linkDest); + var ret = direct_download_link_add(window.location.href, site); if (!ret) { - alert('Cannot add the link'); + DDL_log('Cannot add the link'); } } } /** - * Add a Direct Download link on the page for the specified file + * Add a Direct Download link on the page for the specified URL * - * @param pageURL: the URL of the page we are modifying - * @param fileElem: the element containing the file URL - * @param fileRegexp: the regular expression for finding the file, the first - * sub-pattern is taken as the file URL - * @param linkDest: the element where to place the Direct Download link + * @param: a 'site' object described above. * * @return: null on error, true on success */ -function direct_download_link_add(pageURL, fileElem, fileRegexp, linkDest) { - var element = document.getElementById(fileElem); +function direct_download_link_add(pageURL, site) { + var element = document.getElementById(site.urlContainer); if (!element) { - alert('DirectDL (' + pageURL + '): Cannot find the element containing the file URL.'); + DDL_log('DirectDL (' + site.pageURL + '): Cannot find the element ' + site.urlContainer + ' containing the URL.'); return null; } - var content = element.textContent; + + if (site.onEvent) { + element.addEventListener(site.onEvent.evt, function(e) { + if (site.onEvent.targetElement && + e.target.tagName.toLowerCase() != site.onEvent.targetElement) { + DDL_log('DirectDL (' + site.pageURL + '): skipping element ' + e.target.tagName); + return; + } + var URL = _get_URL(site, element); + return _add_link(site, URL); + }, false); + return true; + } + + var URL = _get_URL(site, element); + if (!URL) { + DDL_log('DirectDL (' + site.pageURL + '): cannot get the URL.'); + return null; + } + + return _add_link(site, URL); +} + +function _get_URL(site, element) { + var content = element.innerHTML; if (!content) { - alert('DirectDL (' + pageURL + '): textContent is null, cannot fild file URL.'); + DDL_log('DirectDL (' + site.pageURL + '): content is null, cannot find URL.'); + return null; } - var fileURL = content.match(fileRegexp)[1]; - if (!fileURL) { - alert('DirectDL (' + pageURL + '): file URL not found, check the fileRegexp'); + var matches = content.match(site.urlRegexp); + if (!matches || matches.length < 2 || !matches[1]) { + DDL_log('DirectDL (' + site.pageURL + '): URL not found, check the urlRegexp'); return null; } + var URL = matches[1]; - var links = document.getElementById(linkDest); + return URL; +} + +function _add_link(site, URL) { + + var links = document.getElementById(site.linkDest); if (!links) { - alert('DirectDl (' + pageURL + '): Cannot add the direct download link.'); + DDL_log('DirectDl (' + site.pageURL + '): Cannot add the direct download link.'); return null; } var download_link = document.createElement('a'); download_link.textContent = 'Direct Link'; - download_link.setAttribute('href', fileURL); + download_link.setAttribute('href', URL); var style = 'background-color: white; color: blue;'; style += ' border: 2px solid red;' style += ' float: right; font-size: large;'; @@ -123,3 +184,12 @@ function direct_download_link_add(pageURL, fileElem, fileRegexp, linkDest) { return true; } + +function DDL_log(message) { + var debug = false; + if (debug) { + alert(message) + } else { + GM_log(message); + } +}