Skip to content

Commit

Permalink
新增合作站点:chdbits
Browse files Browse the repository at this point in the history
更新方法:依据最新示例配置,增加一行ID配置。
  • Loading branch information
ledccn committed Aug 31, 2020
1 parent 99a2894 commit 3041073
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
4 changes: 2 additions & 2 deletions app/AutoReseed.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class AutoReseed
{
// 版本号
const VER = '1.10.7';
const VER = '1.10.8';
// RPC连接
private static $links = [];
// 客户端配置
Expand Down Expand Up @@ -70,7 +70,7 @@ public static function init()
global $configALL;
echo '正在初始化运行参数,版本号:'.self::VER.PHP_EOL;
echo '当前时间:'.date('Y-m-d H:i:s').PHP_EOL;
sleep(mt_rand(1, 5));
//sleep(mt_rand(1, 5));
self::backup('config', $configALL);
self::$curl = new Curl();
self::$curl->setOpt(CURLOPT_SSL_VERIFYPEER, false);
Expand Down
2 changes: 1 addition & 1 deletion app/Library/Oauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class Oauth
{
// 合作的站点
public static $sites = ['ourbits','hddolby','hdhome','pthome','moecat'];
public static $sites = ['ourbits','hddolby','hdhome','pthome','chdbits'];
// 爱语飞飞token
public static $token = '';
// 合作站点用户id
Expand Down
27 changes: 14 additions & 13 deletions config/config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
* 以下为各站点的独立配置(互不影响、互不冲突)
* 自动辅种:需要配置各站的passkey(没有配置passkey的站点会自动跳过)
*/
// ourbits
// 【合作站点用户鉴权】ourbits
'ourbits' => array(
// 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项)
'cookie' => '',
Expand All @@ -125,7 +125,7 @@
),

),
// hddolby
// 【合作站点用户鉴权】hddolby
'hddolby' => array(
// 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项)
'cookie' => '',
Expand All @@ -139,7 +139,7 @@
'sleep' => 5, // 最少休眠5秒
),
),
// hdhome
// 【合作站点用户鉴权】hdhome
'hdhome' => array(
// 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项)
'cookie' => '',
Expand All @@ -153,7 +153,7 @@
'sleep' => 5, // 最少休眠5秒
),
),
// PTHome
// 【合作站点用户鉴权】PTHome
'pthome' => array(
// 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项)
'cookie' => '',
Expand All @@ -167,6 +167,16 @@
'sleep' => 5, // 最少休眠5秒
),
),
// 【合作站点用户鉴权】chdbits
'chdbits' => array(
// 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项)
'cookie' => '',
// 如果需要自动辅种,必须配置
'passkey' => '',
'id' => 0, // 用户ID(不是用户名)
'url_replace' => array(),
'url_join' => array(),
),
// MoeCat
'moecat' => array(
// 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项)
Expand Down Expand Up @@ -367,15 +377,6 @@
'url_replace' => array(),
'url_join' => array(),
),
// chdbits
'chdbits' => array(
// 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项)
'cookie' => '',
// 如果需要自动辅种,必须配置
'passkey' => '',
'url_replace' => array(),
'url_join' => array(),
),
// leaguehd
'leaguehd' => array(
// 如果需要用下载免费种脚本,须配置(只是自动辅种,可以不配置此项)
Expand Down

0 comments on commit 3041073

Please sign in to comment.