ohffs/transmission-client
Composer 安装命令:
composer require ohffs/transmission-client
包简介
PHP library for the Transmission BitTorrent client
README 文档
README
WIP
Basic PHP API wrapper for Transmission
This is a (for now) very basic wrapper around the Transmission bittorrent client's API.
For now it only supports getting a list of all current torrents, fetching a specific torrent and adding a new torrent. This was all I needed for my purposes in transcopy.
If you are a Laravel user, you might want to check out the Laravel Wrapper.
Installing
Assuming you have composer available :
composer require ohnotnow/transmission-client
Usage
$client = new \Ohffs\Transmission\Client('127.0.0.1', 9091, 'username', 'password'); $allTorrents = $client->all(); // returns an array of TorrentEntry's $singleTorrent = $client->find(1234); // returns a single TorrentEntry or null $borkedTorrent = $client->find(-1); // returns null $ohno = $client->findOrFail(-1); // throws a RuntimeException $newTorrent = $client->add('/path/to/an/exciting.torrent'); // returns a TorrentEntry $pausedTorrent = $client->addPaused('/path/to/an/exciting.torrent'); // returns a TorrentEntry and pauses it in transmission $client->remove(1234); // removes a torrent from transmission - returns a boolean
The TorrentEntry is a small class which wraps the data that comes back from Transmission :
$singleTorrent = $client->find(1234); var_dump($singleTorrent->toArray()); /* 'name' => 'Some Exciting File', 'id' => 1234, 'doneDate' => 0, 'eta' => 1000, 'haveValid' => 0, 'rateDownload' => 0, 'rateUpload' => 0, 'status' => 2, 'totalSize' => 364514248, 'downloadDir' => '/tmp/torrents', 'percentDone' => 0.3, */ // And you can also get those as attributes on the object, eg : echo $torrent->name; // 'Some Exciting File'
Instead of passing the host, username etc when creating a client, you can set some environment variables which will be used :
TRANSMISSION_HOST=127.0.0.1
TRANSMISSION_PORT=9091
TRANSMISSION_USERNAME=whatever
TRANSMISSION_PASSWORD=secret
统计信息
- 总下载量: 195
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 4
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-03-07