aboutsummaryrefslogblamecommitdiffstats
path: root/library/kzykhys/git/src/PHPGit/Command/ArchiveCommand.php
blob: a6c9bd0d9ab5aa336741de233a8de8bc5a904961 (plain) (tree)































































































                                                                                                                        
<?php

namespace PHPGit\Command;

use PHPGit\Command;
use PHPGit\Exception\GitException;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;

/**
 * Create an archive of files from a named tree - `git archive`
 *
 * @author Kazuyuki Hayashi <hayashi@valnur.net>
 */
class ArchiveCommand extends Command
{

    /**
     * Create an archive of files from a named tree
     *
     * ``` php
     * $git = new PHPGit\Git();
     * $git->setRepository('/path/to/repo');
     * $git->archive('repo.zip', 'master', null, ['format' => 'zip']);
     * ```
     *
     * ##### Options
     *
     * - **format** (_boolean_) Format of the resulting archive: tar or zip
     * - **prefix** (_boolean_) Prepend prefix/ to each filename in the archive
     *
     * @param string                    $file    The filename
     * @param string                    $tree    [optional] The tree or commit to produce an archive for
     * @param string|array|\Traversable $path    [optional] If one or more paths are specified, only these are included
     * @param array                     $options [optional] An array of options {@see ArchiveCommand::setDefaultOptions}
     *
     * @throws GitException
     * @return bool
     */
    public function __invoke($file, $tree = null, $path = null, array $options = array())
    {
        $options = $this->resolve($options);
        $builder = $this->git->getProcessBuilder()
            ->add('archive');

        if ($options['format']) {
            $builder->add('--format=' . $options['format']);
        }

        if ($options['prefix']) {
            $builder->add('--prefix=' . $options['prefix']);
        }

        $builder->add('-o')->add($file);

        if ($tree) {
            $builder->add($tree);
        }

        if (!is_array($path) && !($path instanceof \Traversable)) {
            $path = array($path);
        }

        foreach ($path as $value) {
            $builder->add($value);
        }

        $this->git->run($builder->getProcess());

        return true;
    }

    /**
     * {@inheritdoc}
     *
     * - **format** (_boolean_) Format of the resulting archive: tar or zip
     * - **prefix** (_boolean_) Prepend prefix/ to each filename in the archive
     */
    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        $resolver->setDefaults(array(
            'format' => null,
            'prefix' => null
        ));

        $resolver->setAllowedTypes(array(
            'format' => array('null', 'string'),
            'prefix' => array('null', 'string')
        ));

        $resolver->setAllowedValues(array(
            'format' => array('tar', 'zip')
        ));
    }


}