mostertb/transmission-php
Composer 安装命令:
composer require mostertb/transmission-php
包简介
Fork of unmaintained kleiram/transmission-php PHP Transmission RPC client library
README 文档
README
This repo contains a fork of the un-maintained kleiram/transmission-php PHP Transmission RPC client library. This fork provides support for more recent versions of PHP and functionality in newer versions of Transmission as well as fixes to upstream issues. See the CHANGLOG for a full list of changes
The library provides an interface to the Transmission bit-torrent downloader. It provides means to get and remove torrents from the downloader as well as adding new torrents to the download queue.
Installation
Installation is easy using Composer:
composer require mostertb/transmission-php
Usage
Using the library is as easy as installing it:
<?php use Transmission\Transmission; $transmission = new Transmission(); // Getting all the torrents currently in the download queue $torrents = $transmission->all(); // Getting a specific torrent from the download queue $torrent = $transmission->get(1); // (you can also get a torrent by the hash of the torrent) $torrent = $transmission->get(/* torrent hash */); // Adding a torrent to the download queue $torrent = $transmission->add(/* path to torrent */); // Removing a torrent from the download queue $torrent = $transmission->get(1); $transmission->remove($torrent); // Or if you want to delete all local data too $transmission->remove($torrent, true); // You can also get the Trackers that the torrent currently uses // These are instances of the Transmission\Model\Tracker class $trackers = $torrent->getTrackers(); // You can also get the Trackers statistics and info that the torrent currently has // These are instances of the Transmission\Model\trackerStats class $trackerStats = $torrent->getTrackerStats(); // To get the start date/time of the torrent in UNIX Timestamp format $startTime = $torrent -> getStartDate(); // To get the number of peers connected $connectedPeers = $torrent -> getPeersConnected(); // Getting the files downloaded by the torrent are available too // These are instances of Transmission\Model\File $files = $torrent->getFiles(); // You can start, stop, verify the torrent and ask the tracker for // more peers to connect to $transmission->stop($torrent); $transmission->start($torrent); $transmission->start($torrent, true); // Pass true if you want to start the torrent immediatly $transmission->verify($torrent); $transmission->reannounce($torrent);
To find out which information is contained by the torrent, check
Transmission\Model\Torrent.
By default, the library will try to connect to localhost:9091. If you want to
connect to another host or post you can pass those to the constructor of the
Transmission class.
<?php use Transmission\Transmission; $transmission = new Transmission('example.com', 33); $torrents = $transmission->all(); $torrent = $transmission->get(1); $torrent = $transmission->add(/* path to torrent */); // When you already have a torrent, you don't have to pass the client again $torrent->delete();
The constructor will also allow you to configure a non-standard RPC URL with its third parameter and a request timeout (in seconds) with its fourth parameter. All parameters are optional:
<?php use Transmission\Transmission; $transmission = new Transmission(null, null, '/transmission/some-custom-url/rpc', 10);
It is also possible to pass the torrent data directly instead of using a file but the metadata must be base64-encoded:
<?php $torrent = $transmission->add(/* base64-encoded metainfo */, true);
If the Transmission server is secured with a username and password you can
authenticate using the Client class:
<?php use Transmission\Client; use Transmission\Transmission; $client = new Client(); // Can take the same optional parameters for host, port, url and timeout as the Transmission class $client->authenticate('username', 'password'); $transmission = new Transmission(); $transmission->setClient($client);
Additionally, you can control the actual Transmission setting. This means you can modify the global download limit or change the download directory:
<?php use Transmission\Transmission; $transmission = new Transmission(); $session = $transmission->getSession(); $session->setDownloadDir('/home/foo/downloads/complete'); $session->setIncompleteDir('/home/foo/downloads/incomplete'); $session->setIncompleteDirEnabled(true); $session->save();
Testing
Testing is done using PHPUnit. Assuming your composer install was done
including development dependencies, you can run the version of PHPUnit supported by this project straight from the vendor
directory:
php vendor/bin/phpunit
License
This library is licensed under the BSD 2-clause license. Refer to the LICENSE file
mostertb/transmission-php 适用场景与选型建议
mostertb/transmission-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 116 次下载、GitHub Stars 达 1, 最近一次更新时间为 2020 年 04 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「torrent」 「download」 「transmission」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mostertb/transmission-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mostertb/transmission-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mostertb/transmission-php 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The NzoFileDownloaderBundle is a Symfony Bundle used to Download all types of files from servers and Web applications safely and with ease. You can also read/show the file content in the Web Browser.
Adds a download link next to assets
A Transmission-RPC API SDK for PHP with Laravel Support
Extract media information from torrent-like filename
Composer version of torrent-rw https://github.com/adriengibrat/torrent-rw
PHP Encrypted transmission
统计信息
- 总下载量: 116
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-2-Clause
- 更新时间: 2020-04-12