Compare commits

...

8 Commits

Author SHA1 Message Date
iyuu.cn
463e45ee38 优化日志记录方式 2020-08-05 19:08:06 +08:00
iyuu.cn
b046ecc75f 示例配置新增教程 2020-08-03 22:54:15 +08:00
iyuu.cn
468813a057 编辑:更新历史.md 2020-08-02 23:10:07 +08:00
iyuu.cn
fdd5475e37 兼容qBittorrent v4.1.5【小钢炮等】 2020-08-02 15:39:25 +08:00
iyuu.cn
1f4da154fb 优化Windows批处理 2020-08-02 00:11:31 +08:00
iyuu.cn
419b6eb8cd fix 2020-08-01 22:43:44 +08:00
iyuu.cn
289df1e126 优化windows执行辅种批处理 2020-08-01 15:42:54 +08:00
iyuu.cn
4d86a9cb9f Readme.md新增Docker使用方法介绍 2020-07-31 17:09:24 +08:00
13 changed files with 388 additions and 312 deletions

4
1.Windows辅种.cmd Normal file
View File

@@ -0,0 +1,4 @@
@echo off
chcp 65001
%~dp0php\php %~dp0iyuu.php
pause

View File

@@ -2,6 +2,5 @@
chcp 65001 chcp 65001
git fetch --all git fetch --all
git reset --hard origin/master git reset --hard origin/master
#git pull php %~dp0iyuu.php
php %cd%\iyuu.php
pause pause

View File

@@ -1,4 +1,4 @@
@echo off @echo off
chcp 65001 chcp 65001
php %cd%\iyuu.php php %~dp0iyuu.php
pause pause

View File

@@ -1,6 +1,7 @@
FROM swoft/alphp:base
#FROM swoft/alphp:cli
#FROM alpine:latest #FROM alpine:latest
FROM alpine:3.8
#FROM swoft/alphp:base
#FROM swoft/alphp:cli
LABEL maintainer="david <367013672@qq.com>" version="1.0" LABEL maintainer="david <367013672@qq.com>" version="1.0"

View File

@@ -13,7 +13,7 @@ use IYUU\Library\Table;
class AutoReseed class AutoReseed
{ {
// 版本号 // 版本号
const VER = '1.10.2'; const VER = '1.10.5';
// RPC连接 // RPC连接
private static $links = []; private static $links = [];
// 客户端配置 // 客户端配置
@@ -34,8 +34,8 @@ class AutoReseed
'login' => '/user/login', 'login' => '/user/login',
'sites' => '/api/sites', 'sites' => '/api/sites',
'infohash'=> '/api/infohash', 'infohash'=> '/api/infohash',
'notify' => '/api/notify',
'hash' => '/api/hash', 'hash' => '/api/hash',
'notify' => '/api/notify',
); );
// curl // curl
private static $curl = null; private static $curl = null;
@@ -68,8 +68,9 @@ class AutoReseed
public static function init() public static function init()
{ {
global $configALL; global $configALL;
echo "正在初始化运行参数,版本号:".self::VER.PHP_EOL; echo '正在初始化运行参数,版本号:'.self::VER.PHP_EOL;
sleep(mt_rand(1, 3)); echo '当前时间:'.date('Y-m-d H:i:s').PHP_EOL;
sleep(mt_rand(1, 5));
self::backup('config', $configALL); self::backup('config', $configALL);
self::$curl = new Curl(); self::$curl = new Curl();
self::$curl->setOpt(CURLOPT_SSL_VERIFYPEER, false); self::$curl->setOpt(CURLOPT_SSL_VERIFYPEER, false);
@@ -81,9 +82,6 @@ class AutoReseed
// 显示支持站点列表 // 显示支持站点列表
self::ShowTableSites(); self::ShowTableSites();
self::$clients = isset($configALL['default']['clients']) && $configALL['default']['clients'] ? $configALL['default']['clients'] : array(); self::$clients = isset($configALL['default']['clients']) && $configALL['default']['clients'] ? $configALL['default']['clients'] : array();
if (empty(self::$clients)) {
die('全局客户端为空!');
}
// 递归删除上次历史记录 // 递归删除上次历史记录
IFile::rmdir(self::$cacheDir, true); IFile::rmdir(self::$cacheDir, true);
@@ -107,28 +105,26 @@ class AutoReseed
'【IYUU自动辅种交流】QQ群859882209、931954050'.PHP_EOL, '【IYUU自动辅种交流】QQ群859882209、931954050'.PHP_EOL,
'正在连接IYUUAutoReseed服务器查询支持列表……'.PHP_EOL '正在连接IYUUAutoReseed服务器查询支持列表……'.PHP_EOL
]; ];
foreach ($list as $value) { foreach ($list as $v) {
echo $value.PHP_EOL; echo $v.PHP_EOL;
} }
$res = self::$curl->get(self::$apiUrl.self::$endpoints['sites'].'?sign='.Oauth::getSign().'&version='.self::VER); $res = self::$curl->get(self::$apiUrl.self::$endpoints['sites'].'?sign='.Oauth::getSign().'&version='.self::VER);
$rs = json_decode($res->response, true); $rs = json_decode($res->response, true);
$sites = isset($rs['data']['sites']) && $rs['data']['sites'] ? $rs['data']['sites'] : false; $sites = isset($rs['data']['sites']) && $rs['data']['sites'] ? $rs['data']['sites'] : [];
// 数据写入本地 // 数据写入本地
if ($sites) { if (empty($sites)) {
self::$sites = array_column($sites, null, 'id'); if (!empty($rs['msg'])) {
$json = array_column($sites, null, 'site');
ksort($json);
$json = json_encode($json, JSON_UNESCAPED_UNICODE);
$myfile = ROOT_PATH.DS.'config'.DS.'sites.json';
$file_pointer = @fopen($myfile, "w");
$worldsnum = @fwrite($file_pointer, $json);
@fclose($file_pointer);
} else {
if (isset($rs['msg']) && $rs['msg']) {
die($rs['msg'].PHP_EOL); die($rs['msg'].PHP_EOL);
} }
die('远端服务器无响应,请稍后再试!!!'); die('网络故障或远端服务器无响应,请稍后再试!!!');
} }
self::$sites = array_column($sites, null, 'id');
$json = array_column($sites, null, 'site');
ksort($json);
$sitesConfig = ROOT_PATH.DS.'config'.DS.'sites.json';
file_put_contents($sitesConfig, \json_encode($json, JSON_UNESCAPED_UNICODE));
$data = []; $data = [];
$i = $j = $k = 0; // i列、j序号、k行 $i = $j = $k = 0; // i列、j序号、k行
foreach ($sites as $v) { foreach ($sites as $v) {
@@ -167,9 +163,9 @@ class AutoReseed
self::$links[$k]['BT_backup'] = isset($v['BT_backup']) && $v['BT_backup'] ? $v['BT_backup'] : ''; self::$links[$k]['BT_backup'] = isset($v['BT_backup']) && $v['BT_backup'] ? $v['BT_backup'] : '';
self::$links[$k]['root_folder'] = isset($v['root_folder']) ? $v['root_folder'] : 1; self::$links[$k]['root_folder'] = isset($v['root_folder']) ? $v['root_folder'] : 1;
$result = $client->status(); $result = $client->status();
print $v['type'].''.$v['host']." Rpc连接 [{$result}] \n"; print $v['type'].''.$v['host']." Rpc连接 [{$result}]".PHP_EOL;
// 检查转移做种 (self::$move为空移动配置为真) // 检查转移做种 (self::$move为空移动配置为真)
if (is_null(self::$move) && isset($v['move']) && $v['move']) { if (is_null(self::$move) && !empty($v['move'])) {
self::$move = array($k,$v['move']); self::$move = array($k,$v['move']);
} }
} catch (\Exception $e) { } catch (\Exception $e) {
@@ -197,19 +193,14 @@ class AutoReseed
case 'transmission': case 'transmission':
$extra_options['paused'] = isset($extra_options['paused']) ? $extra_options['paused'] : true; $extra_options['paused'] = isset($extra_options['paused']) ? $extra_options['paused'] : true;
if ($is_url) { if ($is_url) {
$result = self::$links[$rpcKey]['rpc']->add($torrent, $save_path, $extra_options); // 种子URL添加下载任务 $result = self::$links[$rpcKey]['rpc']->add($torrent, $save_path, $extra_options); // URL添加
} else { } else {
$result = self::$links[$rpcKey]['rpc']->add_metainfo($torrent, $save_path, $extra_options); // 种子元数据添加下载任务 $result = self::$links[$rpcKey]['rpc']->add_metainfo($torrent, $save_path, $extra_options); // 元数据添加
} }
if (isset($result['result']) && $result['result'] == 'success') { if (isset($result['result']) && $result['result'] == 'success') {
$id = $name = ''; $_key = isset($result['arguments']['torrent-added']) ? 'torrent-added' : 'torrent-duplicate';
if (isset($result['arguments']['torrent-duplicate'])) { $id = $result['arguments'][$_key]['id'];
$id = $result['arguments']['torrent-duplicate']['id']; $name = $result['arguments'][$_key]['name'];
$name = $result['arguments']['torrent-duplicate']['name'];
} elseif (isset($result['arguments']['torrent-added'])) {
$id = $result['arguments']['torrent-added']['id'];
$name = $result['arguments']['torrent-added']['name'];
}
print "名字:" .$name . PHP_EOL; print "名字:" .$name . PHP_EOL;
print "********RPC添加下载任务成功 [" .$result['result']. "] (id=" .$id. ")".PHP_EOL.PHP_EOL; print "********RPC添加下载任务成功 [" .$result['result']. "] (id=" .$id. ")".PHP_EOL.PHP_EOL;
return true; return true;
@@ -233,12 +224,11 @@ class AutoReseed
// 是否创建根目录 // 是否创建根目录
$extra_options['root_folder'] = self::$links[$rpcKey]['root_folder'] ? 'true' : 'false'; $extra_options['root_folder'] = self::$links[$rpcKey]['root_folder'] ? 'true' : 'false';
if ($is_url) { if ($is_url) {
$result = self::$links[$rpcKey]['rpc']->add($torrent, $save_path, $extra_options); // 种子URL添加下载任务 $result = self::$links[$rpcKey]['rpc']->add($torrent, $save_path, $extra_options); // URL添加
} else { } else {
$extra_options['name'] = 'torrents'; $extra_options['name'] = 'torrents';
$rand = mt_rand(10, 42949672); $extra_options['filename'] = time().'.torrent';
$extra_options['filename'] = intval($rand).'.torrent'; $result = self::$links[$rpcKey]['rpc']->add_metainfo($torrent, $save_path, $extra_options); // 元数据添加
$result = self::$links[$rpcKey]['rpc']->add_metainfo($torrent, $save_path, $extra_options); // 种子元数据添加下载任务
} }
if ($result === 'Ok.') { if ($result === 'Ok.') {
print "********RPC添加下载任务成功 [{$result}]".PHP_EOL.PHP_EOL; print "********RPC添加下载任务成功 [{$result}]".PHP_EOL.PHP_EOL;
@@ -276,7 +266,6 @@ class AutoReseed
global $configALL; global $configALL;
// 支持站点数量 // 支持站点数量
self::$wechatMsg['sitesCount'] = count(self::$sites); self::$wechatMsg['sitesCount'] = count(self::$sites);
$sites = self::$sites;
// 遍历客户端 开始 // 遍历客户端 开始
foreach (self::$links as $k => $v) { foreach (self::$links as $k => $v) {
if (empty($v)) { if (empty($v)) {
@@ -291,11 +280,10 @@ class AutoReseed
echo "正在从下载器 clients_".$k." 获取种子哈希……".PHP_EOL; echo "正在从下载器 clients_".$k." 获取种子哈希……".PHP_EOL;
$hashArray = self::$links[$k]['rpc']->getList(); $hashArray = self::$links[$k]['rpc']->getList();
if (empty($hashArray)) { if (empty($hashArray)) {
// 失败
continue; continue;
} }
self::backup('clients_'.$k, $hashArray); self::backup('clients_'.$k, $hashArray);
$infohash_Dir = $hashArray['hashString']; $infohash_Dir = $hashArray['hashString']; // 哈希目录对应字典
unset($hashArray['hashString']); unset($hashArray['hashString']);
// 签名 // 签名
$hashArray['sign'] = Oauth::getSign(); $hashArray['sign'] = Oauth::getSign();
@@ -311,19 +299,19 @@ class AutoReseed
self::$curl->setOpt(CURLOPT_CONNECTTIMEOUT, $connecttimeout); self::$curl->setOpt(CURLOPT_CONNECTTIMEOUT, $connecttimeout);
self::$curl->setOpt(CURLOPT_TIMEOUT, $timeout); self::$curl->setOpt(CURLOPT_TIMEOUT, $timeout);
} }
// P($infohash_Dir); // 调试:打印目录对应表 // p($infohash_Dir); // 调试:打印目录对应表
echo "正在向服务器提交 clients_".$k." 种子哈希……".PHP_EOL; echo "正在向服务器提交 clients_".$k." 种子哈希……".PHP_EOL;
$res = self::$curl->post(self::$apiUrl . self::$endpoints['infohash'], $hashArray); $res = self::$curl->post(self::$apiUrl . self::$endpoints['infohash'], $hashArray);
$res = json_decode($res->response, true); $res = json_decode($res->response, true);
// 写返回日志 // 写返回日志
wlog($res, 'reseed'.$k); wlog($res, 'reseed'.$k);
$reseed = isset($res['data']) && $res['data'] ? $res['data'] : array(); $data = isset($res['data']) && $res['data'] ? $res['data'] : array();
if (empty($reseed)) { if (empty($data)) {
echo "clients_".$k." 没有查询到可辅种数据".PHP_EOL.PHP_EOL; echo "clients_".$k." 没有查询到可辅种数据".PHP_EOL.PHP_EOL;
continue; continue;
} }
// 判断返回值 // 判断返回值
if (empty($res['msg'])) { if (isset($res['ret']) && $res['ret']==200) {
echo "clients_".$k." 辅种数据下载成功!!!".PHP_EOL.PHP_EOL; echo "clients_".$k." 辅种数据下载成功!!!".PHP_EOL.PHP_EOL;
echo '【提醒】未配置passkey的站点都会跳过'.PHP_EOL.PHP_EOL; echo '【提醒】未配置passkey的站点都会跳过'.PHP_EOL.PHP_EOL;
} else { } else {
@@ -332,284 +320,187 @@ class AutoReseed
continue; continue;
} }
// 遍历当前客户端可辅种数据 // 遍历当前客户端可辅种数据
foreach ($reseed as $info_hash => $vv) { foreach ($data as $info_hash => $reseed) {
// 当前种子哈希对应的目录 $downloadDir = $infohash_Dir[$info_hash]; // 辅种目录
$downloadDir = $infohash_Dir[$info_hash]; foreach ($reseed['torrent'] as $id => $value) {
foreach ($vv['torrent'] as $id => $value) {
// 匹配的辅种数据累加 // 匹配的辅种数据累加
self::$wechatMsg['reseedCount']++; self::$wechatMsg['reseedCount']++;
// 站点id // 站点id
$sid = $value['sid']; $sid = $value['sid'];
// 种子id // 种子id
$torrent_id = $value['torrent_id']; $torrent_id = $value['torrent_id'];
// 站点 // 检查禁用站点
if (empty($sites[$sid]['site'])) { if (empty(self::$sites[$sid])) {
echo '-----当前站点不受支持,已跳过。' .PHP_EOL.PHP_EOL; echo '-----当前站点不受支持,已跳过。' .PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedSkip']++; self::$wechatMsg['reseedSkip']++;
continue; continue;
} }
$siteName = $sites[$sid]['site']; // 站名
$siteName = self::$sites[$sid]['site'];
// 错误通知 // 错误通知
self::setNotify($siteName, $sid, $torrent_id); self::setNotify($siteName, $sid, $torrent_id);
// 页面规则
$download_page = str_replace('{}', $torrent_id, $sites[$sid]['download_page']);
// 协议 // 协议
$protocol = $sites[$sid]['is_https'] == 0 ? 'http://' : 'https://'; $protocol = self::$sites[$sid]['is_https'] == 0 ? 'http://' : 'https://';
$_url = $protocol . $sites[$sid]['base_url']. '/' .$download_page; // 种子页规则
$download_page = str_replace('{}', $torrent_id, self::$sites[$sid]['download_page']);
// 临时种子连接(会写入辅种日志)
$_url = $protocol . self::$sites[$sid]['base_url']. '/' .$download_page;
/** /**
* 前置检 * 辅种前置检
*/ */
// 配置与passkey检测 if (!self::reseedCheck($k, $value, $infohash_Dir, $downloadDir, $_url)) {
if (empty($configALL[$siteName]) || empty($configALL[$siteName]['passkey'])) {
//echo '-------因当前' .$siteName. "站点未设置passkey已跳过".PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedSkip']++;
continue; continue;
} else {
echo "clients_".$k."正在辅种... {$siteName}".PHP_EOL;
}
// cookie检测
if (in_array($siteName, self::$cookieCheck) && empty($configALL[$siteName]['cookie'])) {
echo '-------因当前' .$siteName. '站点未设置cookie已跳过' .PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedSkip']++;
continue;
}
// 流控检测
if (isset($configALL[$siteName]['limit'])) {
echo "-------因当前" .$siteName. "站点触发流控,已跳过!! {$_url}".PHP_EOL.PHP_EOL;
// 流控日志
if ($siteName == 'hdchina') {
$details_page = str_replace('{}', $torrent_id, 'details.php?id={}&hit=1');
$_url = 'https://' .$sites[$sid]['base_url']. '/' .$details_page;
}
wlog('clients_'.$k.PHP_EOL.$downloadDir.PHP_EOL."-------因当前" .$siteName. "站点触发流控,已跳过!! {$_url}".PHP_EOL.PHP_EOL, 'reseedLimit');
self::$wechatMsg['reseedSkip']++;
continue;
}
// 重复做种检测
if (isset($value['info_hash']) && isset($infohash_Dir[$value['info_hash']])) {
echo '-------与客户端现有种子重复:'.$_url.PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedRepeat']++;
continue;
}
// 历史添加检测
if (is_file(self::$cacheHash . $value['info_hash'].'.txt')) {
echo '-------当前种子上次辅种已成功添加,已跳过! '.$_url.PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedPass']++;
continue;
}
// 检查站点是否可以辅种
if (in_array($siteName, self::$noReseed)) {
echo '-------已跳过不辅种的站点:'.$_url.PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedPass']++;
// 写入日志文件,供用户手动辅种
wlog('clients_'.$k.PHP_EOL.$downloadDir.PHP_EOL.$_url.PHP_EOL.PHP_EOL, $siteName);
continue;
}
// 操作站点流控的配置
if (isset($configALL[$siteName]['limitRule']) && $configALL[$siteName]['limitRule']) {
$limitRule = $configALL[$siteName]['limitRule'];
if (isset($limitRule['count']) && isset($limitRule['sleep'])) {
if ($limitRule['count'] <= 0) {
echo '-------当前站点辅种数量已满足规则,保障账号安全已跳过:'.$_url.PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedPass']++;
continue;
} else {
// 异步间隔流控算法:各站独立、执行时间最优
$lastTime = isset($limitRule['time']) ? $limitRule['time'] : 0; // 最近一次辅种成功的时间
if ($lastTime) {
$interval = time() - $lastTime; // 间隔时间
if ($interval < $limitRule['sleep']) {
$t = $limitRule['sleep'] - $interval + mt_rand(1, 5);
do {
echo microtime(true)." 为账号安全,辅种进程休眠 {$t} 秒后继续...".PHP_EOL;
sleep(1);
} while (--$t > 0);
}
}
}
} else {
echo '-------当前站点流控规则错误缺少count或sleep参数请重新配置'.$_url.PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedPass']++;
continue;
}
} }
/** /**
* 种子URL组合方式区分 * 种子推送方式区分
*/ */
$url = self::getTorrentUrl($siteName, $_url); if (in_array($siteName, self::$cookieCheck)) {
$reseedPass = false; // 标志:跳过辅种 // 特殊站点:种子元数据推送给下载器
// 特殊站点:种子元数据推送给下载器 $reseedPass = false; // 标志:跳过辅种
switch ($siteName) { $cookie = trim($configALL[$siteName]['cookie']);
case 'hdchina': $userAgent = $configALL['default']['userAgent'];
$cookie = $configALL[$siteName]['cookie']; switch ($siteName) {
$userAgent = $configALL['default']['userAgent']; case 'hdchina':
// 拼接详情页URL // 请求详情页
$details_page = str_replace('{}', $value['torrent_id'], 'details.php?id={}&hit=1'); $details_html = self::getNexusPHPdetailsPage($protocol, $value, $cookie, $userAgent);
$details_url = $protocol .$sites[$sid]['base_url']. '/' .$details_page; if (is_null($details_html)) {
print "种子详情页:".$details_url.PHP_EOL;
$details_html = download($details_url, $cookie, $userAgent);
// 删种检查
if (strpos($details_html, '没有该ID的种子') != false) {
echo '种子已被删除!'.PHP_EOL;
self::sendNotify('404');
$reseedPass = true;
break;
}
// 提取种子下载地址
$offset = strpos($details_html, str_replace('{hash}', '', $sites[$sid]['download_page']));
if ($offset === false) {
ff($siteName. '站点cookie已过期请更新后重新辅种');
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;
}
// 种子地址
$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);
if (strpos($url, '第一次下载提示') != false) {
echo "当前站点触发第一次下载提示,已加入排除列表".PHP_EOL;
echo "请进入瓷器详情页点右上角蓝色框下载种子成功后更新cookie".PHP_EOL;
$t = 30;
do {
echo microtime(true)." 请进入瓷器详情页点右上角蓝色框下载种子成功后更新cookie{$t}秒后继续...".PHP_EOL;
sleep(1);
} while (--$t > 0);
ff($siteName. '站点,辅种时触发第一次下载提示!');
self::$noReseed[] = $siteName;
$reseedPass = true;
}
if (strpos($url, '系统检测到过多的种子下载请求') != false) {
echo "当前站点触发人机验证,已加入排除列表".PHP_EOL;
ff($siteName. '站点,辅种时触发人机验证!');
$configALL[$siteName]['limit'] = 1;
self::$noReseed[] = $siteName;
$reseedPass = true;
}
break;
case 'hdcity':
$cookie = $configALL[$siteName]['cookie'];
$userAgent = $configALL['default']['userAgent'];
print "种子:".$_url.PHP_EOL;
if (isset($configALL[$siteName]['cuhash'])) {
// 已获取cuhash
# code...
} else {
// 获取cuhash
$html = download($protocol .$sites[$sid]['base_url']. '/pt', $cookie, $userAgent);
// 提取种子下载地址
$offset = strpos($html, 'cuhash=');
if ($offset === false) {
ff($siteName. '站点cookie已过期请更新后重新辅种');
echo 'cookie已过期请更新后重新辅种'.PHP_EOL;
$configALL[$siteName]['cookie'] = '';
$reseedPass = true; $reseedPass = true;
break; break;
} }
$regex = "/cuhash\=(.*?)[\"|\']/i"; // 提取种子cuhash的正则表达式 // 搜索种子地址
preg_match($regex, $html, $matchs); $remove = '{hash}';
$configALL[$siteName]['cuhash'] = $matchs[1]; $offset = strpos($details_html, str_replace($remove, '', self::$sites[$sid]['download_page']));
} if ($offset === false) {
$url = str_replace('{cuhash}', $configALL[$siteName]['cuhash'], $_url); $reseedPass = true;
// 城市下载种子时会302转向 self::cookieExpired($siteName); // cookie失效
$url = download($url, $cookie, $userAgent); break;
if (strpos($url, 'Non-exist torrent id!') != false) { }
echo '种子已被删除!'.PHP_EOL; // 提取种子地址
self::sendNotify('404'); $regex = "/download.php\?hash\=(.*?)[\"|\']/i"; // 提取种子hash的正则表达式
// 标志:跳过辅种 if (preg_match($regex, $details_html, $matchs)) {
$reseedPass = true; // 拼接种子地址
} $_url = str_replace($remove, $matchs[1], $_url);
break; echo "下载种子:".$_url.PHP_EOL;
case 'hdsky': $url = download($_url, $cookie, $userAgent);
$cookie = $configALL[$siteName]['cookie']; if (strpos($url, '第一次下载提示') != false) {
$userAgent = $configALL['default']['userAgent']; self::$noReseed[] = $siteName;
// 拼接详情页URL $reseedPass = true;
$details_page = str_replace('{}', $value['torrent_id'], 'details.php?id={}&hit=1');
$details_url = $protocol .$sites[$sid]['base_url']. '/' .$details_page; echo "当前站点触发第一次下载提示,已加入排除列表".PHP_EOL;
print "种子详情页:".$details_url.PHP_EOL; sleepIYUU(30, '请进入瓷器详情页点右上角蓝色框下载种子成功后更新cookie');
$details_html = download($details_url, $cookie, $userAgent); ff($siteName. '站点,辅种时触发第一次下载提示!');
// 删种检查 break;
if (strpos($details_html, '没有该ID的种子') != false) { }
echo '种子已被删除!'.PHP_EOL; if (strpos($url, '系统检测到过多的种子下载请求') != false) {
self::sendNotify('404'); $configALL[$siteName]['limit'] = 1;
$reseedPass = true; $reseedPass = true;
echo "当前站点触发人机验证,已加入流控列表".PHP_EOL;
ff($siteName. '站点,辅种时触发人机验证!');
break;
}
} else {
$reseedPass = true;
sleepIYUU(15, $siteName.'正则表达式未匹配到种子地址可能站点已更新请联系IYUU作者');
}
break; break;
} case 'hdcity':
// 提取种子下载地址 $details_url = $protocol . self::$sites[$sid]['base_url'] . '/t-' .$torrent_id;
$remove = 'id={}&passkey={passkey}'; print "种子详情页:".$details_url.PHP_EOL;
$offset = strpos($details_html, str_replace($remove, '', $sites[$sid]['download_page'])); if (empty($configALL[$siteName]['cuhash'])) {
if ($offset === false) { // 请求包含cuhash的列表页
ff($siteName. '站点cookie已过期请更新后重新辅种'); $html = download($protocol .self::$sites[$sid]['base_url']. '/pt', $cookie, $userAgent);
echo 'cookie已过期请更新后重新辅种已加入排除列表'.PHP_EOL; // 搜索cuhash
$t = 15; $offset = strpos($html, 'cuhash=');
do { if ($offset === false) {
echo microtime(true)." cookie已过期请更新后重新辅种已加入排除列表{$t}秒后继续...".PHP_EOL; self::cookieExpired($siteName); // cookie失效
sleep(1); $reseedPass = true;
} while (--$t > 0); break;
$configALL[$siteName]['cookie'] = ''; }
$reseedPass = true; // 提取cuhash
$regex = "/cuhash\=(.*?)[\"|\']/i"; // 提取种子cuhash的正则表达式
if (preg_match($regex, $html, $matchs)) {
$configALL[$siteName]['cuhash'] = $matchs[1];
} else {
$reseedPass = true;
sleepIYUU(15, $siteName.'正则表达式未匹配到cuhash可能站点已更新请联系IYUU作者');
break;
}
}
// 拼接种子地址
$remove = '{cuhash}';
$_url = str_replace($remove, $configALL[$siteName]['cuhash'], $_url);
// 城市下载种子会302转向
echo "下载种子:".$_url.PHP_EOL;
$url = download($_url, $cookie, $userAgent);
if (strpos($url, 'Non-exist torrent id!') != false) {
echo '种子已被删除!'.PHP_EOL;
self::sendNotify('404');
// 标志:跳过辅种
$reseedPass = true;
}
break; break;
} case 'hdsky':
// 种子地址 // 请求详情页
$regex = '/download.php\?(.*?)["|\']/i'; $details_html = self::getNexusPHPdetailsPage($protocol, $value, $cookie, $userAgent);
if (preg_match($regex, $details_html, $matchs)) { if (is_null($details_html)) {
$download_page = str_replace($remove, '', $sites[$sid]['download_page']).str_replace('&amp;', '&', $matchs[1]); $reseedPass = true;
} break;
$_url = $protocol . $sites[$sid]['base_url']. '/' . $download_page; }
print "种子下载页:".$_url.PHP_EOL; // 搜索种子地址
$url = download($_url, $cookie, $userAgent); $remove = 'id={}&passkey={passkey}';
if (strpos($url, '第一次下载提示') != false) { $offset = strpos($details_html, str_replace($remove, '', self::$sites[$sid]['download_page']));
echo "当前站点触发第一次下载提示,已加入排除列表".PHP_EOL; if ($offset === false) {
echo "请进入种子详情页下载种子成功后更新cookie".PHP_EOL; self::cookieExpired($siteName); // cookie失效
$t = 30; $reseedPass = true;
do { break;
echo microtime(true)." 请进入种子详情页下载种子成功后更新cookie{$t}秒后继续...".PHP_EOL; }
sleep(1); // 提取种子地址
} while (--$t > 0); $regex = '/download.php\?(.*?)["|\']/i';
ff($siteName. '站点,辅种时触发第一次下载提示!'); if (preg_match($regex, $details_html, $matchs)) {
self::$noReseed[] = $siteName; // 拼接种子地址
$reseedPass = true; $download_page = str_replace($remove, '', self::$sites[$sid]['download_page']).str_replace('&amp;', '&', $matchs[1]);
} $_url = $protocol . self::$sites[$sid]['base_url']. '/' . $download_page;
break; print "下载种子:".$_url.PHP_EOL;
default: $url = download($_url, $cookie, $userAgent);
// 默认站点推送给下载器种子URL链接 if (strpos($url, '第一次下载提示') != false) {
break; self::$noReseed[] = $siteName;
$reseedPass = true;
echo "当前站点触发第一次下载提示,已加入排除列表".PHP_EOL;
echo "请进入种子详情页下载种子成功后更新cookie".PHP_EOL;
sleepIYUU(30, '请进入种子详情页下载种子成功后更新cookie');
ff($siteName. '站点,辅种时触发第一次下载提示!');
}
} else {
$reseedPass = true;
sleepIYUU(15, $siteName.'正则表达式未匹配到种子地址可能站点已更新请联系IYUU作者');
}
break;
default:
// 默认站点推送给下载器种子URL链接
break;
}
// 检查switch内是否异常
if ($reseedPass) {
continue;
}
$downloadUrl = $_url;
} else {
$url = self::getTorrentUrl($siteName, $_url);
$downloadUrl = $url;
} }
// 检查switch内是否异常
if ($reseedPass) { // 把种子URL推送给下载器
continue;
}
// 把拼接的种子URL推送给下载器
echo '推送种子:' . $_url . PHP_EOL; echo '推送种子:' . $_url . PHP_EOL;
$ret = false; // 成功true | 失败false
// 成功返回true
$ret = self::add($k, $url, $downloadDir); $ret = self::add($k, $url, $downloadDir);
// 按站点规范日志内容 // 规范日志内容
switch ($siteName) { $log = 'clients_'. $k . PHP_EOL . $downloadDir . PHP_EOL . $downloadUrl . PHP_EOL.PHP_EOL;
case 'hdchina':
case 'hdsky':
$url = $details_url;
break;
case 'hdcity':
$url = $_url;
break;
default:
break;
}
$log = 'clients_'.$k.PHP_EOL.$downloadDir.PHP_EOL.$url.PHP_EOL.PHP_EOL;
if ($ret) { if ($ret) {
// 成功的种子 // 成功
// 操作流控参数 // 操作流控参数
if (isset($configALL[$siteName]['limitRule']) && $configALL[$siteName]['limitRule']) { if (isset($configALL[$siteName]['limitRule']) && $configALL[$siteName]['limitRule']) {
$limitRule = $configALL[$siteName]['limitRule']; $limitRule = $configALL[$siteName]['limitRule'];
@@ -618,12 +509,13 @@ class AutoReseed
$configALL[$siteName]['limitRule']['time'] = time(); $configALL[$siteName]['limitRule']['time'] = time();
} }
} }
wlog($log, $value['info_hash'], self::$cacheHash); // 添加成功的种子以infohash为文件名写入缓存 // 添加成功以infohash为文件名写入缓存;所有客户端共用缓存,不可以重复辅种!如果需要重复辅种,请经常删除缓存!
wlog($log, $value['info_hash'], self::$cacheHash);
wlog($log, 'reseedSuccess'); wlog($log, 'reseedSuccess');
// 成功累加 // 成功累加
self::$wechatMsg['reseedSuccess']++; self::$wechatMsg['reseedSuccess']++;
} else { } else {
// 失败的种子 // 失败
wlog($log, 'reseedError'); wlog($log, 'reseedError');
// 失败累加 // 失败累加
self::$wechatMsg['reseedError']++; self::$wechatMsg['reseedError']++;
@@ -635,6 +527,44 @@ class AutoReseed
} }
// 按客户端循环辅种 结束 // 按客户端循环辅种 结束
} }
/**
* 请求NexusPHP详情页
* @param $protocol string 协议
* @param $torrent array 种子
* @param $cookie string Cookie
* @param $userAgent string UA
* @return mixed|null
*/
private static function getNexusPHPdetailsPage($protocol, $torrent, $cookie, $userAgent)
{
$sid = $torrent['sid'];
$torrent_id = $torrent['torrent_id'];
// 拼接详情页URL
$details = str_replace('{}', $torrent_id, 'details.php?id={}&hit=1');
$details_url = $protocol . self::$sites[$sid]['base_url'] . '/' .$details;
print "种子详情页:".$details_url.PHP_EOL;
$details_html = download($details_url, $cookie, $userAgent);
// 删种检查
if (strpos($details_html, '没有该ID的种子') != false) {
echo '种子已被删除!'.PHP_EOL;
self::sendNotify('404');
return null;
}
return $details_html;
}
/**
* 微信通知cookie失效延时15秒提示
* @param $siteName
*/
private static function cookieExpired($siteName)
{
global $configALL;
$configALL[$siteName]['cookie'] = '';
ff($siteName. '站点cookie已过期请更新后重新辅种');
sleepIYUU(15, 'cookie已过期请更新后重新辅种已加入排除列表');
}
/** /**
* IYUUAutoReseed做种客户端转移 * IYUUAutoReseed做种客户端转移
*/ */
@@ -755,8 +685,105 @@ class AutoReseed
} }
} }
} }
/**
* 辅种前置检查
* @param $k int 客户端key
* @param $torrent array 可辅的种子
* @param $infohash_Dir array 当前客户端hash目录对应字典
* @param $downloadDir string 辅种目录
* @param $_url string 种子临时连接
* @return bool true 可辅种 | false 不可辅种
*/
private static function reseedCheck($k, $torrent, $infohash_Dir, $downloadDir, $_url)
{
global $configALL;
$sid = $torrent['sid'];
$torrent_id = $torrent['torrent_id'];
$info_hash = $torrent['info_hash'];
$siteName = self::$sites[$sid]['site'];
// cookie检测
if (in_array($siteName, self::$cookieCheck) && empty($configALL[$siteName]['cookie'])) {
echo '-------因当前' .$siteName. '站点未设置cookie已跳过' .PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedSkip']++;
return false;
}
// passkey检测
if (empty($configALL[$siteName]) || empty($configALL[$siteName]['passkey'])) {
//echo '-------因当前' .$siteName. "站点未设置passkey已跳过".PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedSkip']++;
return false;
} else {
echo "clients_".$k."正在辅种... {$siteName}".PHP_EOL;
}
// 重复做种检测
if (isset($infohash_Dir[$info_hash])) {
echo '-------与客户端现有种子重复:'.$_url.PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedRepeat']++;
return false;
}
// 历史添加检测
if (is_file(self::$cacheHash . $info_hash.'.txt')) {
echo '-------当前种子上次辅种已成功添加,已跳过! '.$_url.PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedPass']++;
return false;
}
// 检查站点是否可以辅种
if (in_array($siteName, self::$noReseed)) {
echo '-------已跳过不辅种的站点:'.$_url.PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedPass']++;
// 写入日志文件,供用户手动辅种
wlog('clients_'.$k.PHP_EOL.$downloadDir.PHP_EOL.$_url.PHP_EOL.PHP_EOL, $siteName);
return false;
}
// 流控检测
if (isset($configALL[$siteName]['limit'])) {
echo "-------因当前" .$siteName. "站点触发流控,已跳过!! {$_url}".PHP_EOL.PHP_EOL;
// 流控日志
if ($siteName == 'hdchina') {
$details_page = str_replace('{}', $torrent_id, 'details.php?id={}&hit=1');
$_url = 'https://' .self::$sites[$sid]['base_url']. '/' .$details_page;
}
wlog('clients_'.$k.PHP_EOL.$downloadDir.PHP_EOL."-------因当前" .$siteName. "站点触发流控,已跳过!! {$_url}".PHP_EOL.PHP_EOL, 'reseedLimit');
self::$wechatMsg['reseedSkip']++;
return false;
}
// 操作站点流控的配置
if (isset($configALL[$siteName]['limitRule']) && $configALL[$siteName]['limitRule']) {
$limitRule = $configALL[$siteName]['limitRule'];
if (isset($limitRule['count']) && isset($limitRule['sleep'])) {
if ($limitRule['count'] <= 0) {
echo '-------当前站点辅种数量已满足规则,保障账号安全已跳过:'.$_url.PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedPass']++;
return false;
} else {
// 异步间隔流控算法:各站独立、执行时间最优
$lastTime = isset($limitRule['time']) ? $limitRule['time'] : 0; // 最近一次辅种成功的时间
if ($lastTime) {
$interval = time() - $lastTime; // 间隔时间
if ($interval < $limitRule['sleep']) {
$t = $limitRule['sleep'] - $interval + mt_rand(1, 5);
do {
echo microtime(true)." 为账号安全,辅种进程休眠 {$t} 秒后继续...".PHP_EOL;
sleep(1);
} while (--$t > 0);
}
}
}
} else {
echo '-------当前站点流控规则错误缺少count或sleep参数请重新配置'.$_url.PHP_EOL.PHP_EOL;
self::$wechatMsg['reseedPass']++;
return false;
}
}
return true;
}
/** /**
* 过滤已转移的种子hash * 过滤已转移的种子hash
* @param array $infohash_Dir infohash与路径对应的字典
* @return bool true 过滤 | false 不过滤
*/ */
private static function hashFilter(&$infohash_Dir = array()) private static function hashFilter(&$infohash_Dir = array())
{ {
@@ -770,6 +797,7 @@ class AutoReseed
} }
/** /**
* 实际路径与相对路径之间互相转换 * 实际路径与相对路径之间互相转换
* @return string | null string转换成功
*/ */
private static function pathReplace($path = '') private static function pathReplace($path = '')
{ {
@@ -805,8 +833,10 @@ class AutoReseed
} }
return null; return null;
} }
/** /**
* 处理转移种子时所设置的过滤器、选择器 * 处理转移种子时所设置的过滤器、选择器
* @param string $path
* @return bool true 过滤 | false 不过滤 * @return bool true 过滤 | false 不过滤
*/ */
private static function pathFilter(&$path = '') private static function pathFilter(&$path = '')
@@ -867,15 +897,15 @@ class AutoReseed
* 获取站点种子的URL * 获取站点种子的URL
* @param string $site * @param string $site
* @param string $url * @param string $url
* @return string * @return string 带host的完整种子下载连接
*/ */
private static function getTorrentUrl($site = '', $url = '') private static function getTorrentUrl($site = '', $url = '')
{ {
global $configALL; global $configALL;
// 兼容旧配置 // 兼容旧配置,进行补全
if (isset($configALL[$site]['passkey']) && $configALL[$site]['passkey']) { if (isset($configALL[$site]['passkey']) && $configALL[$site]['passkey']) {
if (empty($configALL[$site]['url_replace'])) { if (empty($configALL[$site]['url_replace'])) {
$configALL[$site]['url_replace'] = array('{passkey}' => $configALL[$site]['passkey']); $configALL[$site]['url_replace'] = array('{passkey}' => trim($configALL[$site]['passkey']));
} }
if (empty($configALL[$site]['url_join'])) { if (empty($configALL[$site]['url_join'])) {
$configALL[$site]['url_join'] = array(); $configALL[$site]['url_join'] = array();
@@ -899,6 +929,7 @@ class AutoReseed
} }
/** /**
* 微信模板消息拼接方法 * 微信模板消息拼接方法
* @return string 发送情况json
*/ */
private static function wechatMessage() private static function wechatMessage()
{ {
@@ -933,8 +964,11 @@ class AutoReseed
$desp .= $br.'*此消息将在3天后过期*。'; $desp .= $br.'*此消息将在3天后过期*。';
return ff($text, $desp); return ff($text, $desp);
} }
/** /**
* 错误的种子通知服务器 * 错误的种子通知服务器
* @param string $error
* @return bool
*/ */
private static function sendNotify($error = '') private static function sendNotify($error = '')
{ {
@@ -954,8 +988,12 @@ class AutoReseed
} }
return true; return true;
} }
/** /**
* 设置通知主体 * 设置通知主体
* @param string $siteName
* @param int $sid
* @param int $torrent_id
*/ */
private static function setNotify($siteName = '', $sid = 0, $torrent_id = 0) private static function setNotify($siteName = '', $sid = 0, $torrent_id = 0)
{ {
@@ -966,8 +1004,12 @@ class AutoReseed
'torrent_id'=> $torrent_id, 'torrent_id'=> $torrent_id,
); );
} }
/** /**
* 备份功能 * 备份功能
* @param string $key
* @param array $array
* @return bool|int
*/ */
private static function backup($key = '', $array = []) private static function backup($key = '', $array = [])
{ {

View File

@@ -168,7 +168,7 @@ class qBittorrent extends AbstractClient
$torrents = json_decode($this->torrentList()); $torrents = json_decode($this->torrentList());
$response = ''; $response = '';
foreach ($torrents as $torrent) { foreach ($torrents as $torrent) {
$response .= $this->torrentDelete($torrent->hash, $deleteFiles); $response .= $this->delete($torrent->hash, $deleteFiles);
} }
return $response; return $response;
@@ -236,7 +236,8 @@ class qBittorrent extends AbstractClient
// Find authentication cookie and set in curl connection // Find authentication cookie and set in curl connection
foreach ($this->curl->response_headers as $header) { foreach ($this->curl->response_headers as $header) {
if (preg_match('/SID=(\S[^;]+)/', $header, $matches)) { if (preg_match('/SID=(\S[^;]+)/', $header, $matches)) {
$this->curl->setHeader('Cookie', $matches[0]); $qb415 = '; QB_'.$matches[0]; // 兼容qBittorrent v4.1.5[小钢炮等]
$this->curl->setHeader('Cookie', $matches[0].$qb415);
return true; return true;
} }
}; };

View File

@@ -618,6 +618,10 @@ class transmission extends AbstractClient
$ch = curl_init(); $ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->url); curl_setopt($ch, CURLOPT_URL, $this->url);
if (stripos($this->url, 'https://') === 0) {
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 禁止验证证书
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); // 不检查证书
}
curl_setopt($ch, CURLOPT_HTTPHEADER, $header); curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, $this->username . ':' . $this->password); curl_setopt($ch, CURLOPT_USERPWD, $this->username . ':' . $this->password);

View File

@@ -456,3 +456,12 @@ function isWin()
{ {
return (DIRECTORY_SEPARATOR == '\\') ? true : false; return (DIRECTORY_SEPARATOR == '\\') ? true : false;
} }
function sleepIYUU($t, $msg)
{
echo $msg . PHP_EOL;
do {
echo microtime(true).$msg.' '.$t.'秒后继续...'.PHP_EOL;
sleep(1);
} while (--$t > 0);
}

View File

@@ -7,6 +7,7 @@
* IYUU自动辅种工具-【安装篇】Windows之git https://www.iyuu.cn/archives/367/ * IYUU自动辅种工具-【安装篇】Windows之git https://www.iyuu.cn/archives/367/
* IYUU自动辅种工具-【安装篇】群晖Linux之git https://www.iyuu.cn/archives/372/ * IYUU自动辅种工具-【安装篇】群晖Linux之git https://www.iyuu.cn/archives/372/
* IYUU自动辅种工具-【安装篇】小钢炮手把手教程 https://www.iyuu.cn/archives/386/ * IYUU自动辅种工具-【安装篇】小钢炮手把手教程 https://www.iyuu.cn/archives/386/
* IYUU自动辅种工具-【安装篇】全平台Docker安装方式 https://www.iyuu.cn/archives/401/
* IYUU自动辅种工具--最简配置(所有平台通用教程) https://www.iyuu.cn/archives/324/ * IYUU自动辅种工具--最简配置(所有平台通用教程) https://www.iyuu.cn/archives/324/
* IYUU自动辅种工具--合作站点鉴权配置说明 https://www.iyuu.cn/archives/337/ * IYUU自动辅种工具--合作站点鉴权配置说明 https://www.iyuu.cn/archives/337/
* IYUU自动下载种子--之RSS订阅使用教程 https://www.iyuu.cn/archives/349/ * IYUU自动下载种子--之RSS订阅使用教程 https://www.iyuu.cn/archives/349/
@@ -246,8 +247,8 @@ return array(
// 如果需要自动辅种,必须配置 // 如果需要自动辅种,必须配置
'passkey' => '', 'passkey' => '',
'limitRule' => array( 'limitRule' => array(
'count' => 20, // 每次辅种50个 'count' => 20, // 每次辅种20个
'sleep' => 20, // 最少休眠15 'sleep' => 20, // 最少休眠20
), ),
'url_replace' => array(), 'url_replace' => array(),
'url_join' => array(), 'url_join' => array(),

View File

@@ -1,6 +1,8 @@
FROM swoft/alphp:base
#FROM swoft/alphp:cli
#FROM alpine:latest #FROM alpine:latest
#FROM alpine:3.12
FROM alpine:3.8
#FROM swoft/alphp:base
#FROM swoft/alphp:cli
LABEL maintainer="david <367013672@qq.com>" version="1.0" LABEL maintainer="david <367013672@qq.com>" version="1.0"
@@ -44,7 +46,7 @@ RUN set -ex \
# php7-common \ # php7-common \
# php7-bcmath \ # php7-bcmath \
php7-curl \ php7-curl \
# php7-ctype \ # php7-ctype \
php7-dom \ php7-dom \
# php7-fileinfo \ # php7-fileinfo \
# php7-gettext \ # php7-gettext \
@@ -61,6 +63,7 @@ RUN set -ex \
# php7-pdo_mysql \ # php7-pdo_mysql \
# php7-pdo_sqlite \ # php7-pdo_sqlite \
# php7-phar \ # php7-phar \
# php7-pcntl \
# php7-posix \ # php7-posix \
# php7-redis \ # php7-redis \
php7-simplexml \ php7-simplexml \

View File

@@ -1,4 +1,3 @@
# FROM arm64v8/alpine
# FROM arm64v8/alpine:latest # FROM arm64v8/alpine:latest
FROM arm64v8/alpine:3.12 FROM arm64v8/alpine:3.12

View File

@@ -12,7 +12,7 @@
![stars](https://img.shields.io/github/stars/ledccn/IYUUAutoReseed)![forks](https://img.shields.io/github/forks/ledccn/IYUUAutoReseed)![release](https://img.shields.io/github/release/ledccn/IYUUAutoReseed.svg) ![stars](https://img.shields.io/github/stars/ledccn/IYUUAutoReseed)![forks](https://img.shields.io/github/forks/ledccn/IYUUAutoReseed)![release](https://img.shields.io/github/release/ledccn/IYUUAutoReseed.svg)
## 获取脚本,种方式皆可 ## 获取脚本,种方式皆可
1. 通过git命令安装 1. 通过git命令安装
@@ -25,6 +25,10 @@
3. 直接下载zip源码包 3. 直接下载zip源码包
`https://github.com/ledccn/IYUUAutoReseed/archive/master.zip` `https://github.com/ledccn/IYUUAutoReseed/archive/master.zip`
4. Docker使用
[https://gitee.com/ledc/IYUUAutoReseed/tree/master/docker](https://gitee.com/ledc/IYUUAutoReseed/tree/master/docker)
## 功能 ## 功能

View File

@@ -4,6 +4,15 @@
------ ------
### 2020年8月2日
- v1.10.2版本以后的docker每5小时会自动拉取最新代码从此您只需要看公告更新配置就行啦。
- IYUUAutoReseed正式建立了docke镜像自动编译2个版本ARM64【iyuucn/iyuuautoreseed:arm64v8】、AMD64【iyuucn/iyuuautoreseed:latest】使用方法[点击查看](https://gitee.com/ledc/IYUUAutoReseed/tree/master/docker)
- 辅种天空的用户,必须更新至最新版本。
优化了默认流控参数单次最多20个间隔20秒。
天空辅种请配置cookie并配置浏览器UA获取UA请访问[http://demo.iyuu.cn](http://demo.iyuu.cn/)
- v1.10.4版本支持qBittorrent v4.1.5 (小钢炮等)
### 2020年7月3日 ### 2020年7月3日
1. 优化windows的辅种批处理采用环境变量调用 1. 优化windows的辅种批处理采用环境变量调用