123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- <?php
- require_once 'phing/tasks/system/MatchingTask.php';
- require_once 'phing/tasks/ext/phar/IterableFileSet.php';
- require_once 'phing/tasks/ext/phar/PharMetadata.php';
- class PharPackageTask
- extends MatchingTask
- {
-
- private $destinationFile;
-
- private $compression = Phar::NONE;
-
- private $baseDirectory;
-
- private $cliStubFile;
-
- private $webStubFile;
-
- private $stubPath;
-
- private $signatureAlgorithm = Phar::SHA1;
-
- private $filesets = array();
-
- private $metadata = null;
-
- private $alias;
-
- public function createMetadata()
- {
- return ($this->metadata = new PharMetadata());
- }
-
- public function createFileSet()
- {
- $this->fileset = new IterableFileSet();
- $this->filesets[] = $this->fileset;
- return $this->fileset;
- }
-
- public function setSignature($algorithm)
- {
-
- switch ($algorithm) {
- case 'md5':
- $this->signatureAlgorithm = Phar::MD5;
- break;
- case 'sha1':
- $this->signatureAlgorithm = Phar::SHA1;
- break;
- case 'sha256':
- $this->signatureAlgorithm = Phar::SHA256;
- break;
- case 'sha512':
- $this->signatureAlgorithm = Phar::SHA512;
- break;
- default:
- break;
- }
- }
-
- public function setCompression($compression)
- {
-
- switch ($compression) {
- case 'gzip':
- $this->compression = Phar::GZ;
- break;
- case 'bzip2':
- $this->compression = Phar::BZ2;
- break;
- default:
- break;
- }
- }
-
- public function setDestFile(PhingFile $destinationFile)
- {
- $this->destinationFile = $destinationFile;
- }
-
- public function setBaseDir(PhingFile $baseDirectory)
- {
- $this->baseDirectory = $baseDirectory;
- }
-
- public function setCliStub(PhingFile $stubFile)
- {
- $this->cliStubFile = $stubFile;
- }
-
- public function setWebStub(PhingFile $stubFile)
- {
- $this->webStubFile = $stubFile;
- }
-
- public function setStub($stubPath)
- {
- $this->stubPath = $stubPath;
- }
-
- public function setAlias($alias)
- {
- $this->alias = $alias;
- }
-
- public function main()
- {
- $this->checkPreconditions();
- try {
- $this->log(
- 'Building package: '.$this->destinationFile->__toString(),
- Project::MSG_INFO
- );
-
- if ($this->destinationFile->exists()) {
-
- $this->destinationFile->delete();
- }
- $phar = $this->buildPhar();
- $phar->startBuffering();
- $baseDirectory = realpath($this->baseDirectory->getPath());
- foreach ($this->filesets as $fileset) {
- foreach ($fileset as $realFileName) {
-
- $localFileName = $realFileName;
- if (0 === strpos($realFileName, $baseDirectory)) {
- $localFileName = substr(
- $realFileName,
- strlen($baseDirectory)
- );
- }
- $this->log(
- 'Adding '.$realFileName.' as '.$localFileName.' to package',
- Project::MSG_VERBOSE
- );
- $phar->addFile($realFileName, $localFileName);
- }
- }
- $phar->stopBuffering();
-
- if (Phar::NONE != $this->compression) {
- $phar->compressFiles($this->compression);
- }
- } catch (Exception $e) {
- throw new BuildException(
- 'Problem creating package: '.$e->getMessage(),
- $e,
- $this->getLocation()
- );
- }
- }
-
- private function checkPreconditions()
- {
- if (is_null($this->destinationFile)) {
- throw new BuildException("destfile attribute must be set!", $this->getLocation());
- }
- if ($this->destinationFile->exists() && $this->destinationFile->isDirectory()) {
- throw new BuildException("destfile is a directory!", $this->getLocation());
- }
- if (!$this->destinationFile->canWrite()) {
- throw new BuildException("Can not write to the specified destfile!", $this->getLocation());
- }
- if (!is_null($this->baseDirectory)) {
- if (!$this->baseDirectory->exists()) {
- throw new BuildException("basedir does not exist!", $this->getLocation());
- }
- }
- if (is_null($this->metadata)) {
- throw new BuildException("metadata element must be set", $this->getLocation());
- }
- }
-
- private function buildPhar()
- {
- $phar = new Phar($this->destinationFile);
- $phar->setSignatureAlgorithm($this->signatureAlgorithm);
- if (isset($this->stubPath)) {
- $phar->setStub(file_get_contents($this->stubPath));
- } else {
- $phar->setDefaultStub(
- $this->cliStubFile,
- $this->webStubFile
- );
- }
- if ($metadata = $this->metadata->toArray()) {
- $phar->setMetadata($metadata);
- }
- if(!empty($this->alias)){
- $phar->setAlias($this->alias);
- }
- return $phar;
- }
- }
|