重要更新:

1.hdhome、pthome、ourbits,加入新的辅种下载规则;
2.新增支持HDAI站点。
3.合作站验证参数,改为云端获取;
4.辅种检查参数,改为云端获取。
This commit is contained in:
david
2020-12-12 14:29:12 +08:00
parent 3a97c17e66
commit 59622691e1
5 changed files with 209 additions and 66 deletions

View File

@ -13,17 +13,19 @@ use IYUU\Library\Table;
class AutoReseed class AutoReseed
{ {
// 版本号 // 版本号
const VER = '1.10.10'; const VER = '1.10.12';
// RPC连接 // RPC连接
private static $links = []; private static $links = [];
// 客户端配置 // 客户端配置
private static $clients = []; private static $clients = [];
// 站点列表 // 站点列表
private static $sites = []; private static $sites = [];
// 推荐的合作站点
private static $recommend = [];
// 不辅种的站点 'pt','hdchina' // 不辅种的站点 'pt','hdchina'
private static $noReseed = []; private static $noReseed = [];
// cookie检查 // cookie检查
private static $cookieCheck = ['hdchina','hdcity','hdsky']; private static $cookieCheck = [];
// 缓存路径 // 缓存路径
public static $cacheDir = TORRENT_PATH.'cache'.DS; public static $cacheDir = TORRENT_PATH.'cache'.DS;
public static $cacheHash = TORRENT_PATH.'cachehash'.DS; public static $cacheHash = TORRENT_PATH.'cachehash'.DS;
@ -36,6 +38,8 @@ class AutoReseed
'infohash'=> '/api/infohash', 'infohash'=> '/api/infohash',
'hash' => '/api/hash', 'hash' => '/api/hash',
'notify' => '/api/notify', 'notify' => '/api/notify',
'recommendSites' => '/Api/GetRecommendSites',
'getSign' => '/Api/GetSign'
); );
// curl // curl
private static $curl = null; private static $curl = null;
@ -64,7 +68,11 @@ class AutoReseed
'torrent_id'=> 0, 'torrent_id'=> 0,
'error' => '', 'error' => '',
); );
// 初始化
/**
* 初始化
* @throws \ErrorException
*/
public static function init() public static function init()
{ {
global $configALL; global $configALL;
@ -77,11 +85,18 @@ class AutoReseed
self::$curl->setOpt(CURLOPT_SSL_VERIFYHOST, 2); self::$curl->setOpt(CURLOPT_SSL_VERIFYHOST, 2);
// 合作站点鉴权绑定 // 合作站点鉴权绑定
Oauth::login(self::$apiUrl . self::$endpoints['login']); $recommend_sites = [];
$ret = self::$curl->get(self::$apiUrl . self::$endpoints['recommendSites']);
$ret = json_decode($ret->response, true);
if (isset($ret['ret']) && $ret['ret'] === 200 && isset($ret['data']['recommend']) && is_array($ret['data']['recommend'])) {
$recommend_sites = $ret['data']['recommend'];
self::$recommend = array_column($recommend_sites, 'site'); // init
}
Oauth::login(self::$apiUrl . self::$endpoints['login'], $recommend_sites);
// 显示支持站点列表 // 显示支持站点列表
self::ShowTableSites(); self::ShowTableSites();
self::$clients = empty($configALL['default']['clients']) ? [] : $configALL['default']['clients']; self::$clients = empty($configALL['default']['clients']) ? [] : $configALL['default']['clients']; // init
// 递归删除上次历史记录 // 递归删除上次历史记录
IFile::rmdir(self::$cacheDir, true); IFile::rmdir(self::$cacheDir, true);
@ -92,6 +107,7 @@ class AutoReseed
// 连接全局客户端 // 连接全局客户端
self::links(); self::links();
} }
/** /**
* 显示支持站点列表 * 显示支持站点列表
*/ */
@ -105,13 +121,12 @@ class AutoReseed
'【IYUU自动辅种交流】QQ群859882209、931954050、924099912'.PHP_EOL, '【IYUU自动辅种交流】QQ群859882209、931954050、924099912'.PHP_EOL,
'正在连接IYUUAutoReseed服务器查询支持列表……'.PHP_EOL '正在连接IYUUAutoReseed服务器查询支持列表……'.PHP_EOL
]; ];
array_walk($list,function ($v, $k){ array_walk($list, function ($v, $k) {
echo $v.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 = empty($rs['data']['sites']) ? [] : $rs['data']['sites']; $sites = empty($rs['data']['sites']) ? [] : $rs['data']['sites'];
// 数据写入本地
if (empty($sites)) { if (empty($sites)) {
if (!empty($rs['msg'])) { if (!empty($rs['msg'])) {
die($rs['msg'].PHP_EOL); die($rs['msg'].PHP_EOL);
@ -139,11 +154,12 @@ class AutoReseed
echo($table->render()); echo($table->render());
// 生成IYUUPTT使用的JSON // 生成IYUUPTT使用的JSON
$json = array_column($sites, null, 'site'); $_sites = array_column($sites, null, 'site');
ksort($json); ksort($_sites);
$sitesConfig = ROOT_PATH.DS.'config'.DS.'sites.json'; $sitesConfig = ROOT_PATH.DS.'config'.DS.'sites.json';
file_put_contents($sitesConfig, \json_encode($json, JSON_UNESCAPED_UNICODE)); file_put_contents($sitesConfig, \json_encode($_sites, JSON_UNESCAPED_UNICODE));
} }
/** /**
* 连接远端RPC下载器 * 连接远端RPC下载器
*/ */
@ -153,7 +169,7 @@ class AutoReseed
// 跳过未配置的客户端 // 跳过未配置的客户端
if (empty($v['username']) || empty($v['password'])) { if (empty($v['username']) || empty($v['password'])) {
self::$links[$k] = array(); self::$links[$k] = array();
echo "clients_".$k." 用户名或密码未配置,已跳过".PHP_EOL.PHP_EOL; echo "clients_".$k." 用户名或密码未配置,已跳过".PHP_EOL.PHP_EOL;
continue; continue;
} }
try { try {
@ -167,7 +183,7 @@ class AutoReseed
print $v['type'].''.$v['host']." Rpc连接 [{$result}]".PHP_EOL; print $v['type'].''.$v['host']." Rpc连接 [{$result}]".PHP_EOL;
// 检查转移做种 (self::$move为空移动配置为真) // 检查转移做种 (self::$move为空移动配置为真)
if (is_null(self::$move) && !empty($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) {
die('[连接错误] '. $v['host'] . $e->getMessage() . PHP_EOL); die('[连接错误] '. $v['host'] . $e->getMessage() . PHP_EOL);
@ -250,18 +266,20 @@ class AutoReseed
} }
return false; return false;
} }
/** /**
* 辅种或转移,总入口 * 辅种或转移,总入口
*/ */
public static function call() public static function call()
{ {
if (self::$move!==null) { if (self::$move !== null) {
self::move(); self::move();
} }
self::reseed(); self::reseed();
self::wechatMessage(); self::wechatMessage();
exit(self::$ExitCode); exit(self::$ExitCode);
} }
/** /**
* IYUUAutoReseed辅种 * IYUUAutoReseed辅种
*/ */
@ -315,7 +333,7 @@ class AutoReseed
continue; continue;
} }
// 判断返回值 // 判断返回值
if (isset($res['ret']) && $res['ret']==200) { 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 {
@ -348,6 +366,21 @@ class AutoReseed
// 种子页规则 // 种子页规则
$download_page = str_replace('{}', $torrent_id, self::$sites[$sid]['download_page']); $download_page = str_replace('{}', $torrent_id, self::$sites[$sid]['download_page']);
// 辅种检查规则 2020年12月12日新增
if (!is_array(self::$sites[$sid]['reseed_check'])) {
// 初始化
if (!empty(self::$sites[$sid]['reseed_check'])) {
$reseed_check = explode(',', self::$sites[$sid]['reseed_check']);
array_walk($reseed_check, function (&$v, $k){
$v = trim($v);
});
self::$sites[$sid]['reseed_check'] = $reseed_check;
} else {
self::$sites[$sid]['reseed_check'] = [];
}
}
$reseed_check = self::$sites[$sid]['reseed_check']; // 赋值
// 临时种子连接(会写入辅种日志) // 临时种子连接(会写入辅种日志)
$_url = $protocol . self::$sites[$sid]['base_url']. '/' .$download_page; $_url = $protocol . self::$sites[$sid]['base_url']. '/' .$download_page;
/** /**
@ -359,7 +392,7 @@ class AutoReseed
/** /**
* 种子推送方式区分 * 种子推送方式区分
*/ */
if (in_array($siteName, self::$cookieCheck)) { if (in_array('cookie', $reseed_check)) {
// 特殊站点:种子元数据推送给下载器 // 特殊站点:种子元数据推送给下载器
$reseedPass = false; // 标志:跳过辅种 $reseedPass = false; // 标志:跳过辅种
$cookie = trim($configALL[$siteName]['cookie']); $cookie = trim($configALL[$siteName]['cookie']);
@ -705,20 +738,24 @@ class AutoReseed
$torrent_id = $torrent['torrent_id']; $torrent_id = $torrent['torrent_id'];
$info_hash = $torrent['info_hash']; $info_hash = $torrent['info_hash'];
$siteName = self::$sites[$sid]['site']; $siteName = self::$sites[$sid]['site'];
$reseed_check = self::$sites[$sid]['reseed_check'];
// passkey检测 [优先检查passkey排除用户没有的站点] if ($reseed_check && is_array($reseed_check)) {
if (empty($configALL[$siteName]) || empty($configALL[$siteName]['passkey'])) { // 循环检查所有项目
//echo '-------因当前' .$siteName. "站点未设置passkey已跳过".PHP_EOL.PHP_EOL; foreach ($reseed_check as $item) {
self::$wechatMsg['reseedSkip']++; echo "clients_".$k."正在循环检查所有项目... {$siteName}".PHP_EOL;
return false; $item = ($item === 'uid' ? 'id' : $item); // 兼容性处理
} else { if (empty($configALL[$siteName]) || empty($configALL[$siteName][$item])) {
echo "clients_".$k."正在辅种... {$siteName}".PHP_EOL; $msg = '-------因当前' .$siteName. "站点未设置".$item.",已跳过!!".PHP_EOL.PHP_EOL;
} echo $msg;
// cookie检测 // 调试代码begin
if (in_array($siteName, self::$cookieCheck) && empty($configALL[$siteName]['cookie'])) { if ($siteName == 'pthome') {
echo '-------因当前' .$siteName. '站点未设置cookie已跳过' .PHP_EOL.PHP_EOL; sleepIYUU(10, $msg);
self::$wechatMsg['reseedSkip']++; }
return false; // 调试代码end
self::$wechatMsg['reseedSkip']++;
return false;
}
}
} }
// 重复做种检测 // 重复做种检测
if (isset($infohash_Dir[$info_hash])) { if (isset($infohash_Dir[$info_hash])) {
@ -909,6 +946,8 @@ class AutoReseed
private static function getTorrentUrl($site = '', $url = '') private static function getTorrentUrl($site = '', $url = '')
{ {
global $configALL; global $configALL;
// 注入合作站种子的URL规则
$url = self::getRecommendTorrentUrl($site, $url);
// 兼容旧配置,进行补全 // 兼容旧配置,进行补全
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'])) {
@ -934,6 +973,102 @@ class AutoReseed
} }
return $url; return $url;
} }
/**
* 注入合作站种子的URL规则
* @param string $site
* @param string $url
* @return string
*/
private static function getRecommendTorrentUrl($site = '', $url = '')
{
global $configALL;
if (in_array($site, self::$recommend)) {
$now = time();
$uid = isset($configALL[$site]['id']) ? $configALL[$site]['id'] : $now;
$pk = isset($configALL[$site]['passkey']) ? trim($configALL[$site]['passkey']) : $now;
$signString = self::getDownloadTorrentSign($site);
switch ($site) {
case 'pthome':
case 'hdhome':
case 'hddolby':
//兼容性处理:新旧规则
if (isset($configALL[$site]['rss']) && $configALL[$site]['rss']) {
$url = str_replace('passkey={passkey}', 'uid={uid}&hash={hash}', $url);
$pk = $configALL[$site]['rss']; // 专用下载hash
}
break;
case 'ourbits':
// 兼容性处理:新旧规则
if (isset($configALL[$site]['id']) && $configALL[$site]['id']) {
$url = str_replace('passkey={passkey}', 'uid={uid}&hash={hash}', $url);
}
// TODO... 注入流控规则 60S/20pcs、3600S/100pcs
break;
default:
break;
}
// 兼容性处理:新旧规则
if (isset($configALL[$site]['new']) && $configALL[$site]['new']) {
$url = str_replace('passkey={passkey}', 'uid={uid}&hash={hash}', $url);
}
// 注入替换规则
$replace = [
'{uid}' => $uid,
'{hash}'=> md5(trim($pk)),
'{passkey}' => $pk, // 兼容性处理
];
$configALL[$site]['url_replace'] = $replace;
// 注入拼接规则
if (empty($configALL[$site]['url_join'])) {
$configALL[$site]['url_join'] = array();
}
$configALL[$site]['url_join'][] = $signString;
}
return $url;
}
/**
* 获取下载合作站种子的签名
* @param string $site
* @return string
*/
private static function getDownloadTorrentSign($site = '')
{
global $configALL;
$signKEY = 'signString';
$expireKEY = 'signExpire';
if (isset($configALL[$site][$signKEY]) && isset($configALL[$site][$expireKEY]) && ($configALL[$site][$expireKEY] > time())) {
return $configALL[$site][$signKEY]; // 缓存在有效期内,直接返回
}
// 请求IYUU获取签名
$data = [
'sign' => $configALL['iyuu.cn'],
'timestamp' => time(),
'version' => self::VER,
'site' => $site,
'uid' => $configALL[$site]['id']
];
$res = self::$curl->get(self::$apiUrl . self::$endpoints['getSign'], $data);
$ret = json_decode($res->response, true);
$signString = '';
if (isset($ret['ret']) && $ret['ret'] === 200) {
if (isset($ret['data'][$signKEY]) && isset($ret['data']['expire'])) {
$signString = $ret['data'][$signKEY];
$expire = $ret['data']['expire'];
$configALL[$site][$signKEY] = $signString;
$configALL[$site][$expireKEY] = time() + $expire - 60; // 提前60秒过期
}
} else {
echo $site.' 很抱歉请求IYUU辅种签名时失败啦请稍后重新尝试辅种'.PHP_EOL;
}
return $signString;
}
/** /**
* 微信模板消息拼接方法 * 微信模板消息拼接方法
* @return string 发送情况json * @return string 发送情况json
@ -942,7 +1077,7 @@ class AutoReseed
{ {
global $configALL; global $configALL;
if (isset($configALL['notify_on_change']) && $configALL['notify_on_change'] && self::$wechatMsg['reseedSuccess'] == 0 && self::$wechatMsg['reseedError'] == 0) { if (isset($configALL['notify_on_change']) && $configALL['notify_on_change'] && self::$wechatMsg['reseedSuccess'] == 0 && self::$wechatMsg['reseedError'] == 0) {
return; return '';
} }
$br = PHP_EOL; $br = PHP_EOL;
$text = 'IYUU自动辅种-统计报表'; $text = 'IYUU自动辅种-统计报表';

View File

@ -100,9 +100,10 @@ class IFile
/** /**
* @brief 创建文件夹 * @brief 创建文件夹
* @param String $path 路径 * @param String $path 路径
* @param int $chmod 文件夹权限 * @param int $chmod 文件夹权限
* @note $chmod 参数不能是字符串(加引号)否则linux会出现权限问题 * @note $chmod 参数不能是字符串(加引号)否则linux会出现权限问题
* @return bool
*/ */
public static function mkdir($path, $chmod=0777) public static function mkdir($path, $chmod=0777)
{ {
@ -113,7 +114,7 @@ class IFile
* @brief 复制文件 * @brief 复制文件
* @param String $from 源文件路径 * @param String $from 源文件路径
* @param String $to 目标文件路径 * @param String $to 目标文件路径
* @param String $mod 操作模式c:复制(默认); x:剪切(删除$from文件) * @param String $mode 操作模式c:复制(默认); x:剪切(删除$from文件)
* @return bool 操作结果 true:成功; false:失败; * @return bool 操作结果 true:成功; false:失败;
*/ */
public static function copy($from, $to, $mode = 'c') public static function copy($from, $to, $mode = 'c')
@ -178,7 +179,7 @@ class IFile
/** /**
* @brief 获取文件类型 * @brief 获取文件类型
* @param String $fileName 文件名 * @param String $fileName 文件名
* @return String $filetype 文件类型 * @return String|array $filetype 文件类型
* @note 如果文件不存在返回false,如果文件后缀名不在识别列表之内返回NULL对于docx及elsx格式文档识别在会出现识别为ZIP格式的错误这是office2007的bug目前尚未修复请谨慎使用 * @note 如果文件不存在返回false,如果文件后缀名不在识别列表之内返回NULL对于docx及elsx格式文档识别在会出现识别为ZIP格式的错误这是office2007的bug目前尚未修复请谨慎使用
*/ */
public static function getFileType($fileName) public static function getFileType($fileName)

View File

@ -8,18 +8,8 @@ use Curl\Curl;
*/ */
class Oauth class Oauth
{ {
// 合作的站点
public static $sites = ['ourbits','hddolby','hdhome','pthome','chdbits'];
// 爱语飞飞token
private static $token = '';
// 合作站点用户id
private static $user_id = 0;
// 合作站点密钥
private static $passkey = '';
// 合作站名字
private static $site = '';
// 登录缓存路径 // 登录缓存路径
private static $SiteLoginCache = ROOT_PATH.DS.'config'.DS.'siteLoginCache_{}.json'; const SiteLoginCache = ROOT_PATH.DS.'config'.DS.'siteLoginCache_{}.json';
/** /**
* 从配置文件内读取爱语飞飞token作为鉴权参数 * 从配置文件内读取爱语飞飞token作为鉴权参数
*/ */
@ -48,57 +38,64 @@ class Oauth
{ {
global $configALL; global $configALL;
// 云端下发合作的站点标识 // 云端下发合作的站点标识
self::$sites = $sites ? $sites : self::$sites; if (empty($sites)) {
die('云端下发合作站点信息失败,请稍后重试');
}
$_sites = array_column($sites, 'site');
$ret = false; $ret = false;
self::$token = self::getSign(); $token = self::getSign();
foreach (self::$sites as $name) { foreach ($_sites as $k => $site) {
if (is_file(str_replace('{}', $name, self::$SiteLoginCache))) { if (is_file(str_replace('{}', $site, self::SiteLoginCache))) {
// 存在鉴权缓存 // 存在鉴权缓存
$ret = true; $ret = true;
continue; continue;
} }
if (isset($configALL[$name]['passkey']) && $configALL[$name]['passkey'] && isset($configALL[$name]['id']) && $configALL[$name]['id']) { if (isset($configALL[$site]['passkey']) && $configALL[$site]['passkey'] && isset($configALL[$site]['id']) && $configALL[$site]['id']) {
self::$user_id = $configALL[$name]['id']; $user_id = $configALL[$site]['id'];
self::$passkey = sha1($configALL[$name]['passkey']); // 避免泄露用户passkey秘钥 $passkey = $configALL[$site]['passkey'];
self::$site = $name;
$curl = new Curl(); $curl = new Curl();
$curl->setOpt(CURLOPT_SSL_VERIFYPEER, false); $curl->setOpt(CURLOPT_SSL_VERIFYPEER, false);
$data = [ $data = [
'token' => self::$token, 'token' => $token,
'id' => self::$user_id, 'id' => $user_id,
'passkey'=> self::$passkey, 'passkey'=> sha1($passkey), // 避免泄露用户passkey秘钥
'site' => self::$site, 'site' => $site,
]; ];
$res = $curl->get($apiUrl, $data); $res = $curl->get($apiUrl, $data);
p($res->response); p($res->response);
$rs = json_decode($res->response, true); $rs = json_decode($res->response, true);
if (isset($rs['ret']) && $rs['ret'] == 200 && isset($rs['data']['success']) && $rs['data']['success']) { if (isset($rs['ret']) && ($rs['ret'] === 200) && isset($rs['data']['success']) && $rs['data']['success']) {
self::setSiteLoginCache($name, $rs); self::setSiteLoginCache($site, $rs);
$ret = true; $ret = true;
} else { } else {
$msg = isset($rs['msg']) && $rs['msg'] ? $rs['msg'] : '远端服务器无响应,请稍后重试!'; $msg = !empty($rs['msg']) ? $rs['msg'] : '远端服务器无响应,请稍后重试!';
$msg = isset($rs['data']['errmsg']) && $rs['data']['errmsg'] ? $rs['data']['errmsg'] : $msg; $msg = !empty($rs['data']['errmsg']) ? $rs['data']['errmsg'] : $msg;
echo $msg . PHP_EOL; echo $msg . PHP_EOL;
} }
} else { } else {
echo $name.'合作站点参数配置不完整请同时填写passkey和用户id。' . PHP_EOL; echo $site.'合作站点参数配置不完整请同时填写passkey和用户id。' . PHP_EOL;
echo '合作站点鉴权配置请查阅https://www.iyuu.cn/archives/337/'. PHP_EOL. PHP_EOL; echo '合作站点鉴权配置请查阅https://www.iyuu.cn/archives/337/'. PHP_EOL. PHP_EOL;
} }
} }
return $ret; return $ret;
} }
/** /**
* 写鉴权成功缓存 * 写鉴权成功缓存
* @desc 作用:减少对服务器请求,跳过鉴权提示信息; * @desc 作用:减少对服务器请求,跳过鉴权提示信息;
* @param string $site
* @param array $array
* @return bool|int
*/ */
private static function setSiteLoginCache($key = '', $array = []) private static function setSiteLoginCache($site = '', $array = [])
{ {
$json = json_encode($array, JSON_UNESCAPED_UNICODE); $json = json_encode($array, JSON_UNESCAPED_UNICODE);
$myfile = str_replace('{}', $key, self::$SiteLoginCache); $myfile = str_replace('{}', $site, self::SiteLoginCache);
$file_pointer = @fopen($myfile, "w"); $file_pointer = @fopen($myfile, "w");
$worldsnum = @fwrite($file_pointer, $json); $worldsnum = @fwrite($file_pointer, $json);
@fclose($file_pointer); @fclose($file_pointer);
return $worldsnum;
} }
} }

View File

@ -197,14 +197,14 @@ function convertToMB($from)
/** /**
* 字节数Byte转换为KB、MB、GB、TB * 字节数Byte转换为KB、MB、GB、TB
* * @param $num
* @return string
*/ */
function getFilesize($num) function getFilesize($num)
{ {
$p = 0; $p = 0;
$format='bytes'; $format='bytes';
if ($num>0 && $num<1024) { if ($num>0 && $num<1024) {
$p = 0;
return number_format($num).' '.$format; return number_format($num).' '.$format;
} }
if ($num>=1024 && $num<pow(1024, 2)) { if ($num>=1024 && $num<pow(1024, 2)) {

View File

@ -177,6 +177,16 @@ return array(
'url_replace' => array(), 'url_replace' => array(),
'url_join' => array(), 'url_join' => array(),
), ),
// HDAI
'hdai' => array(
// 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项)
'cookie' => '',
// 如果需要自动辅种,必须配置
'passkey' => '',
'id' => 0, // 用户ID(不是用户名)
'url_replace' => array(),
'url_join' => array(),
),
// m-team // m-team
'm-team' => array( 'm-team' => array(
// 14.m-team的cookie 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项) // 14.m-team的cookie 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项)