WeiPhoneDownloadHelper

批量下载威锋论坛的电子书

当前为 2014-06-15 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name           WeiPhoneDownloadHelper
// @namespace      https://github.com/ywzhaiqi
// @author         ywzhaiqi
// @version        1.2
// @description    批量下载威锋论坛的电子书
// @homepageURL    https://greasyfork.org/scripts/668/

// @include        http://bbs.feng.com/read-htm-tid-*.html
// @include        http://bbs.feng.com/thread-htm-fid-*.html
// @include        http://bbs.feng.com/forum.php*
// @run-at         document-end
// @grant          GM_addStyle
// ==/UserScript==

var $ = jQuery = unsafeWindow.jQuery;

var RES = getMStr(function(){
	var html;
	/*
	<div>
		<button id="downloadButton">批量下载</button>
		<div id="batchPublish" style="display: none;">
			<div id="batchHeader">
				<a id="closeButton" class="aui_close" href="javascript:;">×</a>
			</div>
			<div id="batchContent">
				<pre id="batchedlink"></pre>
			</div>
		</div>
		<div id="batchNotice" style="display:none">
		</div>
	</div>
	 */
	var cssText;
	/*
		#downloadButton {
			position:fixed;
			top:80px;
			right:8px;
		}
		#batchPublish {
			position:fixed;
			z-index:1001;
			top:40%;
			left:35%;
			width: 530px;
			background:white;
			border: 3px solid #AAA;
		}
		#batchedlink {
			width: 500px;
			height: 250px;
			overflow: scroll;
		}
		#batchNotice {
			position:fixed;
			z-index:1001;
			top:10%;
			left:35%;
			background: #F9EDBE;
			box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
			border: 1px solid #FBDA91;
			padding: 5px;
		}
		#batchNotice > b {
			margin-left: 5px;
		}
	 */
});


var locationHref = location.href;

locationHref.match(/thread-htm-fid|mod=forumdisplay/) != -1 && (function(){

	$('#bbs_top_news, #forum_rules_224').hide();

	var hideText = [
		"网易《迷你西游》手游公测",
		"3D纯正中国风《水浒英雄》",
		"【软件】感恩父母,免费下载:【快速问医生】",
		"【软件】随时随地 移动视频!酷6视频软件介绍",
		"威锋手游控:玩《龙纹三国》",
		"《放开那三国》威锋版火爆上线",
		"《天天爱萌仙》",
		"炉石传说",
		"同步推",
		"苹果手游",
		"苹果助手",
		"兔兔助手",
		"同步推",
		"赢iPad mini",
		"得iPhone",
		"iPad mini2大奖"
	];

	// 隐藏置顶广告的行
	$('tbody[id^="stickthread_"]').each(function(row){
		var text = $(this).text();
		for (var i = 0, l = hideText.length; i < l; i++) {
			if (text.indexOf(hideText[i]) != -1) {
				$(this).hide();
				return;
			}
		}
	});
})()

locationHref.match(/read-htm-tid|mod=viewthread/) != -1 && (function(){

	var attachSelector = '.attnm > a, span[id^="attach_"] > a';

	if (jQuery(attachSelector).size() == 0) return;

	var preUrl = location.origin;

	GM_addStyle(RES.cssText)

	jQuery(RES.html).appendTo('body');
	$('#closeButton').click(function(){
		$('#batchPublish').hide();
	})

	jQuery('#downloadButton').click(function(){
		var links = jQuery.makeArray(jQuery(attachSelector))
			$batchNotice = $('#batchNotice');
		var downUrls = [];

		$batchNotice.html('正在获取中...' + '<b>1/' + links.length + '</b>')
			.show();

		function handleResult() {
			if (links.length > 0) {
				$batchNotice.html('正在获取中...' + '<b>' + downUrls.length + '/' + links.length + '</b>');
				getDownloadLink();
			} else {
				var urls = downUrls.join('\n');
				// console.log(urls);

				$batchNotice.hide();
				$('#batchedlink').html(urls);
				$('#batchPublish').show();

				// 高亮选中文本
				var selection = unsafeWindow.getSelection();
				var range = document.createRange();
				range.selectNodeContents($('#batchedlink')[0]);
				selection.removeAllRanges();
				selection.addRange(range);
			}
		}

		function getDownloadLink() {
			var link = links.shift();
			if (!link) return;

			var url = link.href;
			if (url.indexOf('aid=') > 0) {
				downUrls.push(url);
				handleResult();
			} else {
				var m = link.getAttribute('onclick').match(/jQuery.get\('(.*?)',/);
				if (m) {
					var url = m[1];
					jQuery.get(url, {}, function(data){
						var downUrl = jQuery('<div>').html(data).find('a:first').attr('href');
						downUrl = preUrl + downUrl;
						downUrls.push(downUrl)

						handleResult();
					});
				}
			}
		}

		getDownloadLink()
	});

})()



// 从函数中获取多行注释的字符串
function getMStr(fn) {
    var fnSource = fn.toString();
    var ret = {};
    fnSource = fnSource.replace(/^[^{]+/, '');
    // console.log(fnSource);
    var matched;
    var reg = /var\s+([$\w]+)[\s\S]*?\/\*([\s\S]+?)\*\//g;
    while (matched = reg.exec(fnSource)) {
        // console.log(matched);
        ret[matched[1]] = matched[2];
    };
    
    return ret;
}