0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
magento
/
1.7.0.2-6
/
standard
/
htdocs
/
lib
/
Mage
/
Connect
/
Command
/
[
Home
]
File: Registry.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) */ final class Mage_Connect_Command_Registry extends Mage_Connect_Command { /** * List-installed callback * @param string $command * @param array $options * @param array $params * @return void */ public function doList($command, $options, $params) { $this->cleanupParams($params); try { $packager = $this->getPackager(); $ftp = empty($options['ftp']) ? false : $options['ftp']; if($ftp) { list($cache, $ftpObj) = $packager->getRemoteCache($ftp); } else { $cache = $this->getSconfig(); } if(!empty($params[0])) { $chanName = $conf->chanName($params[0]); $data = $cache->getInstalledPackages($chanName); } else { $data = $cache->getInstalledPackages(); } if($ftp) { @unlink($cache->getFilename()); } $this->ui()->output(array($command=>array('data'=>$data, 'channel-title'=>"Installed package for channel '%s' :"))); } catch (Exception $e) { if($ftp) { @unlink($cache->getFilename()); } $this->doError($command, $e->getMessage()); } } /** * list-files callback * @param string $command * @param array $options * @param array $params * @return void */ public function doFileList($command, $options, $params) { $this->cleanupParams($params); //$this->splitPackageArgs($params); try { $channel = false; if(count($params) < 2) { throw new Exception("Argument count should be = 2"); } $channel = $params[0]; $package = $params[1]; $packager = $this->getPackager(); $ftp = empty($options['ftp']) ? false : $options['ftp']; if($ftp) { list($cache, $config, $ftpObj) = $packager->getRemoteConf($ftp); } else { $cache = $this->getSconfig(); $confif = $this->config(); } if(!$cache->hasPackage($channel, $package)) { return $this->ui()->output("No package found: {$channel}/{$package}"); } $p = $cache->getPackageObject($channel, $package); $contents = $p->getContents(); if($ftp) { $ftpObj->close(); } if(!count($contents)) { return $this->ui()->output("No contents for package {$package}"); } $title = ("Contents of '{$package}': "); if($ftp) { @unlink($config->getFilename()); @unlink($cache->getFilename()); } $this->ui()->output(array($command=>array('data'=>$contents, 'title'=>$title))); } catch (Exception $e) { if($ftp) { @unlink($config->getFilename()); @unlink($cache->getFilename()); } $this->doError($command, $e->getMessage()); } } /** * Installed package info * info command callback * @param string $command * @param array $options * @param array $params * @return */ public function doInfo($command, $options, $params) { $this->cleanupParams($params); //$this->splitPackageArgs($params); try { $channel = false; if(count($params) < 2) { throw new Exception("Argument count should be = 2"); } $channel = $params[0]; $package = $params[1]; $packager = $this->getPackager(); $ftp = empty($options['ftp']) ? false : $options['ftp']; if($ftp) { list($cache, $ftpObj) = $packager->getRemoteCache($ftp); } else { $cache = $this->getSconfig(); } if(!$cache->isChannel($channel)) { throw new Exception("'{$channel}' is not a valid installed channel name/uri"); } $channelUri = $cache->chanUrl($channel); $rest = $this->rest(); $rest->setChannel($channelUri); $releases = $rest->getReleases($package); if(false === $releases) { throw new Exception("No information found about {$channel}/{$package}"); } $data = array($command => array('releases'=>$releases)); if($ftp) { @unlink($cache->getFilename()); } $this->ui()->output($data); } catch (Exception $e) { if($ftp) { @unlink($cache->getFilename()); } $this->doError($command, $e->getMessage()); } } }