somov / yii2-large-file-downloader
Download file in multiple streams. With the ability to resume and monitor progress
Installs: 169
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
Type:yii2-extension
Requires
- ext-curl: *
- yiisoft/yii2: >=2.0.38
- yiisoft/yii2-httpclient: *
Requires (Dev)
- codeception/base: ^2.2.3
- codeception/specify: ~0.4.3
- codeception/verify: ~0.3.1
- phpunit/phpunit: ~5
This package is auto-updated.
Last update: 2025-03-20 01:32:26 UTC
README
It is yii2 extension based on yii2-httpclient
Download file in multiple streams. With the ability to resume and monitor progress.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist somov/yii2-large-file-downloader "~1.0"
or add
"somov/yii2-large-file-downloader": "~1.0"
to the require section of your composer.json
file.
Usage
/** @var \somov\lfd\Client $client */ $client = Yii::createObject([ 'class' => \somov\lfd\Client::class, //'threadCount' => 5, //'resumeDownload' => true, //'tmpAlias' => '@runtime/downloads' ]); $client->on(\somov\lfd\Client::EVENT_PROGRESS, function ($event){ /** @var \somov\lfd\ProgressEvent $event */ echo $event->percent; }); //Download file $fileName = $client->download("https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4")->data; $size = filesize($fileName); echo $size;
Usage with command controller
Configure the command in your main application configuration:
'controllerMap' => [ 'downloader' => '\somov\lfd\CommandController' ],
Once the extension is installed and configured, simply use it on your command line
yii downloader https://speed.hetzner.de/1GB.bin -c 20