mirror of
https://gitee.com/ledc/IYUUAutoReseed
synced 2025-07-07 16:11:52 +00:00
IYUU自动辅种工具初始化版本
This commit is contained in:
336
app/Protocols/ourbits.php
Normal file
336
app/Protocols/ourbits.php
Normal file
@ -0,0 +1,336 @@
|
||||
<?php
|
||||
/**
|
||||
* ourbits.club解码类
|
||||
* Veteran User及以上用户会永远保留账号。必须注册至少25周,并且下载至少2TB,分享率大于4.0。[8TB保号]
|
||||
*/
|
||||
use phpspider\core\requests;
|
||||
use phpspider\core\selector;
|
||||
|
||||
class Ourbits implements decodeBase
|
||||
{
|
||||
/**
|
||||
* 站点标志
|
||||
* @var string
|
||||
*/
|
||||
const SITE = 'ourbits';
|
||||
/**
|
||||
* 域名
|
||||
* @var string
|
||||
*/
|
||||
const domain = 'ourbits.club';
|
||||
const HOST = 'https://'.self::domain.'/';
|
||||
// 下载种子的请求类型
|
||||
const METHOD = 'GET';
|
||||
/**
|
||||
* 种子存放路径
|
||||
* @var string
|
||||
*/
|
||||
const TORRENT_DIR = TORRENT_PATH . self::SITE . DS;
|
||||
/**
|
||||
* 种子下载前缀
|
||||
*/
|
||||
const downloadPrefix = 'download.php?id=';
|
||||
/**
|
||||
* 种子详情页前缀
|
||||
*/
|
||||
const detailsPrefix = 'details.php?id=';
|
||||
// 网页编码
|
||||
const encoding = 'UTF-8';
|
||||
// 超时时间
|
||||
const CONNECTTIMEOUT = 30;
|
||||
const TIMEOUT = 600;
|
||||
/**
|
||||
* cookie
|
||||
*/
|
||||
public static $cookies = '';
|
||||
/**
|
||||
* 浏览器 User-Agent
|
||||
*/
|
||||
public static $userAgent = '';
|
||||
/**
|
||||
* passkey
|
||||
*/
|
||||
public static $passkey = '';
|
||||
/**
|
||||
* 获取的种子标志
|
||||
*/
|
||||
public static $getTorrent = array('class="pro_free');
|
||||
/**
|
||||
* 促销时间特征
|
||||
*/
|
||||
public static $proTime = '剩余时间:<b><span title';
|
||||
/**
|
||||
* 置顶标志
|
||||
*/
|
||||
public static $sticky = 'src="pic/sticky';
|
||||
/**
|
||||
* H&R 标志
|
||||
*/
|
||||
public static $HR = array('class="hitandrun"','alt="H&R"','title="H&R"');
|
||||
/**
|
||||
* 解码后种子列表数组
|
||||
*/
|
||||
public static $TorrentList = array();
|
||||
/**
|
||||
* 初始化配置
|
||||
*/
|
||||
public static function init(){
|
||||
global $configALL;
|
||||
|
||||
$config = $configALL[self::SITE];
|
||||
self::$cookies = $config['cookie'];
|
||||
self::$userAgent = isset($config['userAgent']) && $config['userAgent'] ? $config['userAgent'] : $configALL['default']['userAgent'];
|
||||
self::$passkey = isset($config['passkey']) ? '&passkey='.$config['passkey'].'&https=1' : '';
|
||||
|
||||
requests::$input_encoding = self::encoding;
|
||||
requests::$output_encoding = self::encoding;
|
||||
requests::set_cookies(self::$cookies, self::domain);
|
||||
requests::set_useragent([self::$userAgent]);
|
||||
requests::set_timeout([self::CONNECTTIMEOUT,self::TIMEOUT]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 执行
|
||||
*
|
||||
* @param string
|
||||
* @return array
|
||||
*/
|
||||
public static function run()
|
||||
{
|
||||
self::init();
|
||||
Rpc::init(self::SITE, self::METHOD);
|
||||
$html = self::get();
|
||||
if ( $html === null ) {
|
||||
exit(1);
|
||||
}
|
||||
$data = self::decode($html);
|
||||
Rpc::call($data);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* 请求页面
|
||||
*
|
||||
* @param string $url
|
||||
* @return array
|
||||
*/
|
||||
public static function get($url = 'torrents.php')
|
||||
{
|
||||
// 发起请求
|
||||
$html = requests::get(self::HOST.$url);
|
||||
|
||||
// 一级置顶
|
||||
$data1 = selector::select($html, "//*[@class='sticky_top']");
|
||||
$data1 = is_array($data1) ? array_filter($data1, "evenFilter", ARRAY_FILTER_USE_KEY) : array();
|
||||
// 二级置顶
|
||||
$data2 = selector::select($html, "//*[@class='sticky_normal']");
|
||||
$data2 = is_array($data2) ? array_filter($data2, "evenFilter", ARRAY_FILTER_USE_KEY) : array();
|
||||
// 普通
|
||||
$data3 = selector::select($html, "//*[@class='sticky_blank']");
|
||||
$data3 = is_array($data3) ? array_filter($data3, "evenFilter", ARRAY_FILTER_USE_KEY) : array();
|
||||
$mark = 0;
|
||||
if( empty($data1) ){
|
||||
$mark = $mark + 1;
|
||||
}
|
||||
if( empty($data2) ){
|
||||
$mark = $mark + 2;
|
||||
}
|
||||
switch($mark){
|
||||
case 0:
|
||||
$data = array_merge($data1, $data2, $data3);
|
||||
break;
|
||||
case 1:
|
||||
$data = array_merge($data2, $data3);
|
||||
break;
|
||||
case 2:
|
||||
$data = array_merge($data1, $data3);
|
||||
break;
|
||||
case 3:
|
||||
$data = $data3;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
if(!$data){
|
||||
echo "登录信息过期,请重新设置! \n";
|
||||
return null;
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 解码
|
||||
*
|
||||
* @param array $data
|
||||
* @return array
|
||||
*/
|
||||
public static function decode($data = array())
|
||||
{
|
||||
$br = '<br/>';
|
||||
$downloadStrLen = strlen(self::downloadPrefix); // 前缀长度
|
||||
$downloadStrEnd = '"'; //种子地址结束标志
|
||||
$len = $downloadStrLen + 10; // 截取长度
|
||||
foreach ( $data as $k => $v ){
|
||||
$arr = array();
|
||||
// 种子基本信息处理
|
||||
// 偏移量
|
||||
$offset = strpos($v,self::downloadPrefix);
|
||||
// 截取
|
||||
$urlTemp = substr($v,$offset,$len);
|
||||
// 种子地址
|
||||
$arr['url'] = substr($urlTemp,0,strpos($urlTemp,$downloadStrEnd));
|
||||
// 种子id
|
||||
$arr['id'] = substr($arr['url'],$downloadStrLen);
|
||||
|
||||
// 获取主标题
|
||||
// 偏移量
|
||||
$h1_offset = strpos($v, '<a title="') + strlen('<a title="');
|
||||
$h1_len = strpos($v, '" href="details.php?id=') - $h1_offset;
|
||||
$arr['h1'] = substr($v, $h1_offset, $h1_len);
|
||||
// 优惠时间
|
||||
$proTime = '';
|
||||
if ( strpos($v,self::$proTime)!=false ) {
|
||||
$t_offset = strpos($v, $br);
|
||||
$t_temp = substr($v, $h1_offset,$t_offset-$h1_offset);
|
||||
$proTime = selector::select($t_temp, "//span");
|
||||
$arr['h1'] = $arr['h1']. ' [优惠时间剩余:' .$proTime. ']';
|
||||
}
|
||||
|
||||
// 获取副标题
|
||||
// 偏移量
|
||||
$h2_offset = strpos($v,$br) + strlen($br);
|
||||
$h2_len = strpos($v,'</td><td class="embedded" width="30px">',$h2_offset) - $h2_offset;
|
||||
if($h2_len > 0){
|
||||
//存在副标题
|
||||
$titleTemp = substr($v, $h2_offset, $h2_len);
|
||||
$titleSpan = '';
|
||||
$title = selector::remove($titleTemp, "//div");
|
||||
// 精确适配标签 begin
|
||||
$span = selector::select($titleTemp, '//div');
|
||||
#p($span);
|
||||
if(!empty($span)){
|
||||
if(is_array($span)){
|
||||
foreach ( $span as $vv ){
|
||||
if( empty($vv) ){
|
||||
continue;
|
||||
}
|
||||
if(strpos($vv, '<div') === false){
|
||||
$titleSpan.='['.$vv.'] ';
|
||||
}
|
||||
}
|
||||
}else{
|
||||
if(strpos($vv, '<div') === false){
|
||||
$titleSpan.='['.$span.'] ';
|
||||
}
|
||||
}
|
||||
}
|
||||
// 精确适配标签 end
|
||||
|
||||
$arr['title'] = $titleSpan . $title;
|
||||
#echo $arr['title']."\n\n";
|
||||
}else{
|
||||
$arr['title'] = '';
|
||||
}
|
||||
|
||||
// 组合返回数组
|
||||
self::$TorrentList[$k]['id'] = $arr['id'];
|
||||
self::$TorrentList[$k]['h1'] = $arr['h1'];
|
||||
self::$TorrentList[$k]['title'] = isset( $arr['title'] ) && $arr['title'] ? $arr['title'] : '';
|
||||
self::$TorrentList[$k]['details'] = self::HOST.self::detailsPrefix.$arr['id'];
|
||||
self::$TorrentList[$k]['download'] = self::HOST.$arr['url'];
|
||||
self::$TorrentList[$k]['filename'] = $arr['id'].'.torrent';
|
||||
|
||||
// 种子促销类型discount
|
||||
if(strpos($v,self::$getTorrent[0]) === false){
|
||||
// 不免费
|
||||
self::$TorrentList[$k]['type'] = 1;
|
||||
// 非免费,是否需要获取扩展信息
|
||||
//continue;
|
||||
}else{
|
||||
// 免费种子
|
||||
self::$TorrentList[$k]['type'] = 0;
|
||||
}
|
||||
|
||||
// 是否置顶sticky
|
||||
self::$TorrentList[$k]['sticky'] = strpos($v,self::$sticky)===false ? 0 : 1;
|
||||
|
||||
// 优惠剩余时间proTime(可选)
|
||||
// 存活时间added(必有)
|
||||
$added = selector::select($v, '@<span title=(.*?)</span>@', "regex");
|
||||
self::$TorrentList[$k]['time'] = $added;
|
||||
|
||||
#p($added);
|
||||
/*
|
||||
Array
|
||||
(
|
||||
[0] => "2019-11-20 15:01:17">3天22时
|
||||
[1] => "2014-09-24 00:09:20">5年<br />2月
|
||||
)
|
||||
|
||||
string
|
||||
"2016-04-24 15:43:25">3年<br />7月
|
||||
*/
|
||||
|
||||
$options = selector::select($v, "//*[@class='rowfollow']");
|
||||
unset($options[0]);
|
||||
$options = array_values($options);
|
||||
#p($options);exit;
|
||||
/*
|
||||
$options = Array
|
||||
(
|
||||
[0] => <a href="comment.php?action=add&pid=114293&type=torrent" title="添加评论">0</a>
|
||||
[1] => 50.11<br/>GB
|
||||
[2] => <b><a href="details.php?id=114293&hit=1&dllist=1#seeders">70</a></b>
|
||||
[3] => <b><a href="details.php?id=114293&hit=1&dllist=1#leechers">24</a></b>
|
||||
[4] => <a href="viewsnatches.php?id=114293"><b>95</b></a>
|
||||
[5] => <i>匿名</i>
|
||||
)
|
||||
|
||||
|
||||
对应的:
|
||||
[0] => 评论
|
||||
[1] => 大小size
|
||||
[2] => 种子数seeders
|
||||
[3] => 下载数leechers
|
||||
[4] => 完成数
|
||||
[5] => 发布者
|
||||
*/
|
||||
|
||||
// 0 评论comments
|
||||
self::$TorrentList[$k]['comments'] = selector::select($options[0], "//a");
|
||||
// 1 大小size
|
||||
self::$TorrentList[$k]['size'] = str_replace('<br/>','',$options[1]);
|
||||
// 2 种子数seeders
|
||||
if ( empty($options[2]) ) {
|
||||
$seeders = 0;
|
||||
} else {
|
||||
if( strpos($options[2],'</font>') === false ){
|
||||
if ( strpos($options[2],'</span>') === false ) {
|
||||
// 普通特征
|
||||
$seeders = selector::select($options[2], "//a");
|
||||
} else {
|
||||
// 新种 0做种特征
|
||||
$seeders = selector::select($options[2], "//span");
|
||||
}
|
||||
}else{
|
||||
// 新种 1做种特征
|
||||
$seeders = selector::select($options[2], "//font");
|
||||
}
|
||||
}
|
||||
self::$TorrentList[$k]['seeders'] = $seeders;
|
||||
|
||||
// 3 下载数leechers
|
||||
self::$TorrentList[$k]['leechers'] = empty($options[3]) ? 0 : selector::select($options[3], "//a");
|
||||
// 4 完成数completed
|
||||
self::$TorrentList[$k]['completed'] = empty($options[4]) ? 0 : selector::select($options[4], "//b");
|
||||
// 5 完成百分比percentage
|
||||
|
||||
// 6 发布者owner
|
||||
$owner = selector::select($options[5], "//b");
|
||||
self::$TorrentList[$k]['owner'] = empty($owner) ? '匿名' : $owner;
|
||||
|
||||
#exit(0);
|
||||
}
|
||||
return self::$TorrentList;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user