Overview

Namespaces

  • Net
    • Bazzline
      • Component
        • CommandCollection
          • Filesystem
          • Http
          • Process
          • Vcs

Classes

  • Net\Bazzline\Component\CommandCollection\Filesystem\Copy
  • Net\Bazzline\Component\CommandCollection\Filesystem\Create
  • Net\Bazzline\Component\CommandCollection\Filesystem\ListSource
  • Net\Bazzline\Component\CommandCollection\Filesystem\Move
  • Net\Bazzline\Component\CommandCollection\Filesystem\Remove
  • Net\Bazzline\Component\CommandCollection\Filesystem\Unzip
  • Net\Bazzline\Component\CommandCollection\Filesystem\Zip
  • Net\Bazzline\Component\CommandCollection\Http\Curl
  • Net\Bazzline\Component\CommandCollection\Process\ProcessSnapshot
  • Net\Bazzline\Component\CommandCollection\Vcs\Git
  • Overview
  • Namespace
  • Class
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2015-05-26 
 */

namespace Net\Bazzline\Component\CommandCollection\Filesystem;

use Net\Bazzline\Component\Command\AbstractCommand;
use Net\Bazzline\Component\Command\InvalidSystemEnvironmentException;
use Net\Bazzline\Component\Command\RuntimeException;

class Unzip extends AbstractCommand
{
    /**
     * @param string $pathToArchive
     * @param null $outputPath
     * @return array
     * @throws RuntimeException
     */
    public function __invoke($pathToArchive, $outputPath = null)
    {
        return $this->unzip($pathToArchive, $outputPath);
    }

    /**
     * @param string $pathToArchive
     * @param null|string $outputPath
     * @return array
     * @throws RuntimeException
     * @todo implement parameter validation
     */
    public function unzip($pathToArchive, $outputPath = null)
    {
        if (!is_null($outputPath)) {
            $command = '/usr/bin/env unzip ' . $pathToArchive . ' -d ' . $outputPath;
        } else {
            $command = '/usr/bin/env unzip ' . $pathToArchive;
        }

        return $this->execute($command);
    }

    /**
     * @param string $pathToArchive
     * @return array
     * @throws RuntimeException
     * @todo implement parameter validation
     */
    public function listArchiveContent($pathToArchive)
    {
        $command = '/usr/bin/env unzip -l ' . $pathToArchive;

        return $this->execute($command);
    }

    /**
     * @throws InvalidSystemEnvironmentException
     */
    public function validateSystemEnvironment()
    {
        if (!is_executable('/usr/bin/unzip')) {
            throw new InvalidSystemEnvironmentException(
                '/usr/bin/unzip is mandatory'
            );
        }
    }
}
PHP Command Collection Component by bazzline.net API documentation generated by ApiGen