0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
magento
/
1.7.0.2-6
/
standard
/
htdocs
/
lib
/
Mage
/
Connect
/
Package
/
[
Home
]
File: Writer.php
<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * * @category Mage * @package Mage_Connect * @copyright Copyright (c) 2009 Irubin Consulting Inc. DBA Varien (http://www.varien.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Class to create archive. * * @category Mage * @package Mage_Connect * @author Magento Core Team <core@magentocommerce.com> */ class Mage_Connect_Package_Writer { /** * Name of package configuration file */ const DEFAULT_NAME_PACKAGE_CONFIG = 'package.xml'; /** * Temporary dir for extract DEFAULT_NAME_PACKAGE. */ const PATH_TO_TEMPORARY_DIRECTORY = 'var/package/tmp/'; /** * Files are used in package. * * @var array */ protected $_files = array(); /** * Archivator is used for extract DEFAULT_NAME_PACKAGE. * * @var Mage_Archive */ protected $_archivator = null; /** * Name of package with extension. Extension should be only one. * "package.tar.gz" is not ability, only "package.tgz". * * @var string */ protected $_namePackage = 'package'; /** * Temporary directory where package is situated. * * @var string */ protected $_temporaryPackageDir = ''; /** * Path to archive with package. * * @var mixed */ protected $_pathToArchive = ''; /** * Constructor initializes $_file. * * @param array $files * @param string $namePackage * @return Mage_Connect_Package_Reader */ public function __construct($files, $namePackage='') { $this->_files = $files; $this->_namePackage = $namePackage; return $this; } /** * Retrieve archivator. * * @return Mage_Archive */ protected function _getArchivator() { if (is_null($this->_archivator)) { $this->_archivator = new Mage_Archive(); } return $this->_archivator; } /** * Create dir in PATH_TO_TEMPORARY_DIRECTORY and move all files * to this dir. * * @return Mage_Connect_Package_Writer */ public function composePackage() { @mkdir(self::PATH_TO_TEMPORARY_DIRECTORY, 0777, true); $root = self::PATH_TO_TEMPORARY_DIRECTORY . basename($this->_namePackage); @mkdir($root, 0777, true); foreach ($this->_files as $file) { if (is_dir($file) || is_file($file)) { $fileName = basename($file); $filePath = dirname($file); @mkdir($root . DS . $filePath, 0777, true); if (is_file($file)) { copy($file, $root . DS . $filePath . DS . $fileName); } else { @mkdir($root . DS . $filePath . $fileName, 0777); } } } $this->_temporaryPackageDir = $root; return $this; } /** * Create dir in PATH_TO_TEMPORARY_DIRECTORY and move all files * to this dir. * This dir has a structure compatible with previous version of Magento Connact Manager * * @param arra $destinationFiles * @return Mage_Connect_Package_Writer */ public function composePackageV1x(array $destinationFiles) { @mkdir(self::PATH_TO_TEMPORARY_DIRECTORY, 0777, true); $root = self::PATH_TO_TEMPORARY_DIRECTORY . basename($this->_namePackage); @mkdir($root, 0777, true); $packageFilesDir = $root . DS . basename($this->_namePackage); @mkdir($packageFilesDir, 0777, true); foreach ($this->_files as $index => $file) { $destinationFile = $destinationFiles[$index]; if (is_dir($file) || is_file($file)) { $fileName = basename($destinationFile); $filePath = dirname($destinationFile); @mkdir($packageFilesDir . DS . $filePath, 0777, true); if (is_file($file)) { copy($file, $packageFilesDir . DS . $filePath . DS . $fileName); } else { @mkdir($packageFilesDir . DS . $filePath . $fileName, 0777); } } } $this->_temporaryPackageDir = $root; return $this; } /** * Add package.xml to temporary package directory. * * @param $content * @return Mage_Connect_Package_Writer */ public function addPackageXml($content) { file_put_contents($this->_temporaryPackageDir . DS . self::DEFAULT_NAME_PACKAGE_CONFIG, $content); return $this; } /** * Archives package. * * @return Mage_Connect_Package_Writer */ public function archivePackage() { $this->_pathToArchive = $this->_getArchivator()->pack( $this->_temporaryPackageDir, $this->_namePackage.'.tgz', true); //delete temporary dir Mage_System_Dirs::rm(array("-r", $this->_temporaryPackageDir)); return $this; } /** * Getter for pathToArchive * * @return string */ public function getPathToArchive() { return $this->_pathToArchive; } }