Skip to content

Latest commit

 

History

History
111 lines (75 loc) · 3.64 KB

zend.progress-bar.upload.rst

File metadata and controls

111 lines (75 loc) · 3.64 KB

File Upload Handlers

Introduction

Zend\ProgressBar\Upload provides handlers that can give you the actual state of a file upload in progress. To use this feature you need to choose one of the upload progress handlers (APC, uploadprogress, or Session) and ensure that your server setup has the appropriate extension or feature enabled. All of the progress handlers use the same interface.

When uploading a file with a form POST, you must also include the progress identifier in a hidden input. The File Upload Progress View Helpers <zend.form.view.helper.file> provide a convenient way to add the hidden input based on your handler type.

Methods of Reporting Progress

There are two methods for reporting the current upload progress status. By either using a ProgressBar Adapter, or by using the returned status array manually.

Using a ProgressBar Adapter

A Zend\ProgressBar adapter can be used to display upload progress to your users.

$adapter  = new \Zend\ProgressBar\Adapter\JsPush();
$progress = new \Zend\ProgressBar\Upload\SessionProgress();

$filter   = new \Zend\I18n\Filter\Alnum(false, 'en_US');
$id       = $filter->filter($_GET['id']);

$status   = null;
while (empty($status['done'])) {
    $status = $progress->getProgress($id);
}

Each time the getProgress() method is called, the ProgressBar adapter will be updated.

Using the Status Array

You can also work manually with getProgress() without using a Zend\ProgressBar adapter.

The getProgress() will return you an array with several keys. They will sometimes differ based on the specific Upload handler used, but the following keys are always standard:

  • total: The total file size of the uploaded file(s) in bytes as integer.
  • current: The current uploaded file size in bytes as integer.
  • rate: The average upload speed in bytes per second as integer.
  • done: Returns TRUE when the upload is finished and FALSE otherwise.
  • message: A status message. Either the progress as text in the form "10kB / 200kB", or a helpful error message in the case of a problem. Problems such as: no upload in progress, failure while retrieving the data for the progress, or that the upload has been canceled.

All other returned keys are provided directly from the specific handler.

An example of using the status array manually:

// In a Controller...

public function sessionProgressAction()
{
    $id = $this->params()->fromQuery('id', null);
    $progress = new \Zend\ProgressBar\Upload\SessionProgress();
    return new \Zend\View\Model\JsonModel($progress->getProgress($id));
}

// Returns JSON
//{
//    "total"    : 204800,
//    "current"  : 10240,
//    "rate"     : 1024,
//    "message"  : "10kB / 200kB",
//    "done"     : false
//}

Standard Handlers

Zend\ProgressBar\Upload comes with the following three upload handlers:

  • Zend\\Progressbar\\Upload\\ApcProgress <zend.progress-bar.upload.apc-progress>
  • Zend\\ProgressBar\\Upload\\SessionProgress <zend.progress-bar.upload.session-progress>
  • Zend\\Progressbar\\Upload\\UploadProgress <zend.progress-bar.upload.upload-progress>