首次运行生成config.php;提高瓷器、城市兼容性。

master v1.9.8
iyuu.cn 5 years ago
parent 18cdd7abed
commit 29c2e43405
  1. 41
      app/AutoReseed.php
  2. 6
      config/config.sample.php
  3. 6
      init.php

@ -13,7 +13,7 @@ use IYUU\Library\Table;
class AutoReseed
{
// 版本号
const VER = '1.9.7';
const VER = '1.9.8';
// RPC连接
private static $links = [];
// 客户端配置
@ -444,23 +444,12 @@ class AutoReseed
case 'hdchina':
$cookie = $configALL[$siteName]['cookie'];
$userAgent = $configALL['default']['userAgent'];
// 拼接URL
// 拼接详情页URL
$details_page = str_replace('{}', $value['torrent_id'], 'details.php?id={}&hit=1');
$details_url = $protocol .$sites[$sid]['base_url']. '/' .$details_page;
print "种子详情页:".$details_url.PHP_EOL;
$details_html = download($details_url, $cookie, $userAgent);
if (empty($details_html)) {
ff($siteName. '站点,cookie已过期,请更新后重新辅种!');
echo 'cookie已过期,请更新后重新辅种!已加入排除列表'.PHP_EOL;
$t = 30;
do {
echo microtime(true)." cookie已过期,请更新后重新辅种!已加入排除列表!,{$t}秒后继续...".PHP_EOL;
sleep(1);
} while (--$t > 0);
$configALL[$siteName]['cookie'] = '';
$reseedPass = true;
break;
}
// 删种检查
if (strpos($details_html, '没有该ID的种子') != false) {
echo '种子已被删除!'.PHP_EOL;
self::sendNotify('404');
@ -471,23 +460,23 @@ class AutoReseed
$offset = strpos($details_html, str_replace('{hash}', '', $sites[$sid]['download_page']));
if ($offset === false) {
ff($siteName. '站点,cookie已过期,请更新后重新辅种!');
echo 'cookie已过期,请更新后重新辅种!'.PHP_EOL;
echo 'cookie已过期,请更新后重新辅种!已加入排除列表'.PHP_EOL;
$t = 15;
do {
echo microtime(true)." cookie已过期,请更新后重新辅种!已加入排除列表!,{$t}秒后继续...".PHP_EOL;
sleep(1);
} while (--$t > 0);
$configALL[$siteName]['cookie'] = '';
$reseedPass = true;
break;
}
$urlTemp = substr($details_html, $offset, 50);
// 种子地址
$download_page = substr($urlTemp, 0, strpos($urlTemp, '">'));
if (empty($download_page)) {
echo '未知错误,未提取到种子URL,请联系脚本作者!'.PHP_EOL;
$reseedPass = true;
break;
}
$regex = "/download.php\?hash\=(.*?)[\"|\']/i"; // 提取种子hash的正则表达式
preg_match($regex, $details_html, $matchs);
$download_page = str_replace('{hash}', $matchs[1], $sites[$sid]['download_page']);
$_url = $protocol . $sites[$sid]['base_url']. '/' . $download_page;
print "种子下载页:".$_url.PHP_EOL;
$url = download($_url, $cookie, $userAgent);
#p($url);
if (strpos($url, '第一次下载提示') != false) {
echo "当前站点触发第一次下载提示,已加入排除列表".PHP_EOL;
echo "请进入瓷器详情页,点右上角蓝色框:下载种子,成功后更新cookie!".PHP_EOL;
@ -527,9 +516,9 @@ class AutoReseed
$reseedPass = true;
break;
}
$len = strlen('cuhash=');
$cuhashTemp = substr($html, $offset+$len, 40);
$configALL[$siteName]['cuhash'] = substr($cuhashTemp, 0, strpos($cuhashTemp, '"'));
$regex = "/cuhash\=(.*?)[\"|\']/i"; // 提取种子cuhash的正则表达式
preg_match($regex, $html, $matchs);
$configALL[$siteName]['cuhash'] = $matchs[1];
}
$url = str_replace('{cuhash}', $configALL[$siteName]['cuhash'], $_url);
// 城市下载种子时会302转向

@ -30,8 +30,8 @@ return array(
array(
'type' => 'transmission', // 支持:transmission、qBittorrent
'host' => 'http://127.0.0.1:9091/transmission/rpc', // 警告!注意:transmission/rpc这段别动,你只需要修改 127.0.0.1:9091
'username' => '',
'password' => '',
'username' => 'null',
'password' => 'null',
'BT_backup' => '/var/lib/transmission/torrents', // 移动做种:如果脚本与当前客户端不在一台机器,必须配置
'move' => 0, // 0不移动,1移动并辅种,2移动且只在当前客户端辅种
),
@ -40,7 +40,7 @@ return array(
array(
'type' => 'qBittorrent', // 支持:transmission、qBittorrent
'host' => 'http://127.0.0.1:8083',
'username' => '',
'username' => 'admin',
'password' => '',
'root_folder'=> 1, // 0不创建根目录,1创建根目录
'BT_backup' => 'C:\Users\ASUS\AppData\Local\qBittorrent\BT_backup', // 移动做种:必须配置,Linux搜索方法:find / -name BT_backup

@ -53,12 +53,14 @@ if (file_exists(ROOT_PATH."/config/config.php")) {
// 示例配置
$configALL = require_once ROOT_PATH . '/config/config.sample.php';
echo microtime(true).' 缺少config.php,已载入config.sample.php示例配置。'.PHP_EOL;
echo microtime(true).' 请把配置文件改名为config.php,以免后续版本升级覆盖配置!!!'.PHP_EOL;
echo microtime(true).' 请编辑配置文件config.php,以免后续版本升级覆盖配置!!!'.PHP_EOL;
$t = 30;
do {
echo microtime(true)." 请把配置文件改名为config.php,{$t}秒后继续...".PHP_EOL;
echo microtime(true)." 请编辑配置文件config.php,{$t}秒后继续...".PHP_EOL;
sleep(1);
} while (--$t > 0);
// 第一次会生成
@copy(ROOT_PATH . '/config/config.sample.php', ROOT_PATH . '/config/config.php');
}
echo microtime(true).' 全局配置载入完成!'.PHP_EOL;
// 读取支持列表

Loading…
Cancel
Save