登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
Gitee AI
NEW
我知道了
查看详情
登录
注册
1月18日,北京,聊聊2025如何加入技术开发?
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
10
Star
87
Fork
18
大卫
/
IYUUPlus
代码
Issues
16
Pull Requests
0
Wiki
统计
流水线
服务
Gitee Pages
PHPDoc
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
我知道了,不再自动展开
更新失败,请稍后重试!
Issues
/
详情
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
IYUU QB 4.4.x版本 转种 到TR 丢失 trackers 信息修复
待办的
#I5SY4L
淡定随缘
创建于
2022-09-24 17:14
本萌新简单粗暴的基于QB4.4.5版本做了添加trackers信息填入,测试可用,具体更全的希望大佬能进行修改 MoveTorrent.php 文件 在 遍历当前客户端种子 行为中 增加了读取QB种子对应的 .fastresume 文件中存在trackers信息 通过获取文件内容去获取相关信息 需要引入Bencode相关内容 ``` use Rhilip\Bencode\Bencode; use Rhilip\Bencode\ParseException; ``` ``` // 种子目录:脚本要能够读取到 $path = self::$links[$k]['BT_backup']; $torrentPath = ''; $resumePath = ''; // 待删除种子 $torrentDelete = ''; // 获取种子文件的实际路径 switch ($v['type']) { case 'transmission': // 优先使用API提供的种子路径 $torrentPath = $move[$info_hash]['torrentFile']; $torrentDelete = $move[$info_hash]['id']; // API提供的种子路径不存在时,使用配置内指定的BT_backup路径 if (!is_file($torrentPath)) { $torrentPath = str_replace("\\", "/", $torrentPath); $torrentPath = $path . strrchr($torrentPath, '/'); } echo 'TR存在种子:' . $torrentPath . PHP_EOL; break; case 'qBittorrent': if (empty($path)) { echo $help_msg; die("clients_" . $k . " IYUUPlus内下载器未设置种子目录,无法完成转移!"); } $torrentPath = $path . DS . $info_hash . '.torrent'; $resumePath = $path . DS . $info_hash . '.fastresume'; $torrentDelete = $info_hash; echo 'QB存在种子:' . $torrentPath . PHP_EOL; break; default: break; } if (!is_file($torrentPath)) { echo $help_msg; die("clients_" . $k . " 的种子文件{$torrentPath}不存在,无法完成转移!"); } echo '存在种子:' . $torrentPath . PHP_EOL; $torrent = file_get_contents($torrentPath); // 正式开始转移 echo "种子已推送给下载器,正在转移做种..." . PHP_EOL; // 目标下载器类型 $clientKey = self::$conf['to_clients']['uuid']; $type = self::$links[$clientKey]['type']; $extra_options = array(); // 转移后,是否开始? $extra_options['paused'] = isset(self::$conf['paused']) && self::$conf['paused'] ? true : false; if ($type == 'qBittorrent') { if (isset(self::$conf['skip_check']) && self::$conf['skip_check']) { $extra_options['skip_checking'] = "true"; //转移成功,跳校验 } } $res_resume = ""; echo "种子$type:$resumePath" . PHP_EOL; if ($type == 'transmission' && !empty($resumePath)) { // qb 4.4.x 版本 转移种子从 fastresume 中获取 trackers 信息 // 初步筛选出 qb 的 trackers 信息 并提取相关内容 目前默认取出第一条的 trackers 信息 $res_resume_str = file_get_contents($resumePath); $res_resume_str = strstr($res_resume_str, 'trackers'); $keyLen = strpos($res_resume_str, 'ee'); $res_resume_str = substr($res_resume_str, 8, ($keyLen - 6)); echo "种子$res_resume_str" . PHP_EOL; $res_resume = Bencode::decode($res_resume_str); if (!empty($res_resume)) { $extra_options['announce'] = $res_resume[0]; } } echo json_encode($extra_options) . PHP_EOL; ``` 在 AutoReseed.php 文件中 add 方法中 tr 类别中 在注释 添加下载任务成功下面增加了通过调用TR 自带的 增加 trackers 方法将信息补充了进去 ``` if (isset($extra_options['announce']) && !empty($extra_options['announce'])) { // 添加 qb 下载器的 trackers 信息 $res = static::getRpc($clientKey)->set([$id], ['trackerAdd' => $extra_options['announce']]); if (isset($res['result']) && $res['result'] == 'success') { print "********TR-TRACKERS添加成功 [" . $result['result'] . "] (id=" . $id . ")" . PHP_EOL . PHP_EOL; } else { print "********TR-TRACKERS添加失败 [" . $result['result'] . "] (id=" . $id . ")" . PHP_EOL . PHP_EOL; } } ```
本萌新简单粗暴的基于QB4.4.5版本做了添加trackers信息填入,测试可用,具体更全的希望大佬能进行修改 MoveTorrent.php 文件 在 遍历当前客户端种子 行为中 增加了读取QB种子对应的 .fastresume 文件中存在trackers信息 通过获取文件内容去获取相关信息 需要引入Bencode相关内容 ``` use Rhilip\Bencode\Bencode; use Rhilip\Bencode\ParseException; ``` ``` // 种子目录:脚本要能够读取到 $path = self::$links[$k]['BT_backup']; $torrentPath = ''; $resumePath = ''; // 待删除种子 $torrentDelete = ''; // 获取种子文件的实际路径 switch ($v['type']) { case 'transmission': // 优先使用API提供的种子路径 $torrentPath = $move[$info_hash]['torrentFile']; $torrentDelete = $move[$info_hash]['id']; // API提供的种子路径不存在时,使用配置内指定的BT_backup路径 if (!is_file($torrentPath)) { $torrentPath = str_replace("\\", "/", $torrentPath); $torrentPath = $path . strrchr($torrentPath, '/'); } echo 'TR存在种子:' . $torrentPath . PHP_EOL; break; case 'qBittorrent': if (empty($path)) { echo $help_msg; die("clients_" . $k . " IYUUPlus内下载器未设置种子目录,无法完成转移!"); } $torrentPath = $path . DS . $info_hash . '.torrent'; $resumePath = $path . DS . $info_hash . '.fastresume'; $torrentDelete = $info_hash; echo 'QB存在种子:' . $torrentPath . PHP_EOL; break; default: break; } if (!is_file($torrentPath)) { echo $help_msg; die("clients_" . $k . " 的种子文件{$torrentPath}不存在,无法完成转移!"); } echo '存在种子:' . $torrentPath . PHP_EOL; $torrent = file_get_contents($torrentPath); // 正式开始转移 echo "种子已推送给下载器,正在转移做种..." . PHP_EOL; // 目标下载器类型 $clientKey = self::$conf['to_clients']['uuid']; $type = self::$links[$clientKey]['type']; $extra_options = array(); // 转移后,是否开始? $extra_options['paused'] = isset(self::$conf['paused']) && self::$conf['paused'] ? true : false; if ($type == 'qBittorrent') { if (isset(self::$conf['skip_check']) && self::$conf['skip_check']) { $extra_options['skip_checking'] = "true"; //转移成功,跳校验 } } $res_resume = ""; echo "种子$type:$resumePath" . PHP_EOL; if ($type == 'transmission' && !empty($resumePath)) { // qb 4.4.x 版本 转移种子从 fastresume 中获取 trackers 信息 // 初步筛选出 qb 的 trackers 信息 并提取相关内容 目前默认取出第一条的 trackers 信息 $res_resume_str = file_get_contents($resumePath); $res_resume_str = strstr($res_resume_str, 'trackers'); $keyLen = strpos($res_resume_str, 'ee'); $res_resume_str = substr($res_resume_str, 8, ($keyLen - 6)); echo "种子$res_resume_str" . PHP_EOL; $res_resume = Bencode::decode($res_resume_str); if (!empty($res_resume)) { $extra_options['announce'] = $res_resume[0]; } } echo json_encode($extra_options) . PHP_EOL; ``` 在 AutoReseed.php 文件中 add 方法中 tr 类别中 在注释 添加下载任务成功下面增加了通过调用TR 自带的 增加 trackers 方法将信息补充了进去 ``` if (isset($extra_options['announce']) && !empty($extra_options['announce'])) { // 添加 qb 下载器的 trackers 信息 $res = static::getRpc($clientKey)->set([$id], ['trackerAdd' => $extra_options['announce']]); if (isset($res['result']) && $res['result'] == 'success') { print "********TR-TRACKERS添加成功 [" . $result['result'] . "] (id=" . $id . ")" . PHP_EOL . PHP_EOL; } else { print "********TR-TRACKERS添加失败 [" . $result['result'] . "] (id=" . $id . ")" . PHP_EOL . PHP_EOL; } } ```
评论 (
0
)
淡定随缘
创建了
任务
登录
后才可以发表评论
状态
待办的
待办的
进行中
已完成
已关闭
负责人
未设置
标签
未设置
标签管理
里程碑
未关联里程碑
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
分支 (1)
标签 (12)
master
v2.1.19
v2.1.17
v2.1.16
v2.1.15
2.1.13
v2.1.8
v2.1.2
v2.1.0
v2.0.7
v2.0.5
v2.0.4
v2.0.1
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
参与者(1)
PHP
1
https://gitee.com/ledc/iyuuplus.git
git@gitee.com:ledc/iyuuplus.git
ledc
iyuuplus
IYUUPlus
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册