Source of file Mediasize.php
Size: 5,815 Bytes - Last Modified: 2015-05-15T11:18:15+02:00
/www-data/git/Hackathon_MageMonitoring/src/app/code/community/FireGento/MageMonitoring/Model/Widget/HealthCheck/Mediasize.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 | <?php /** * This file is part of a FireGento e.V. module. * * This FireGento e.V. module is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This script is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * PHP version 5 * * @category FireGento * @package FireGento_MageMonitoring * @author FireGento Team <team@firegento.com> * @copyright 2015 FireGento Team (http://www.firegento.com) * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3) */ /** * class FireGento_MageMonitoring_Model_Widget_HealthCheck_Mediasize * * @category FireGento * @package FireGento_MageMonitoring * @author FireGento Team <team@firegento.com> */ class FireGento_MageMonitoring_Model_Widget_HealthCheck_Mediasize extends FireGento_MageMonitoring_Model_Widget_Abstract implements FireGento_MageMonitoring_Model_Widget { // config key const CONFIG_ALLOW_SLOW_MODE = 'allow_slow_mode'; // defaults protected $_defAllowSlowMode = false; /** * Returns name * * @see FireGento_MageMonitoring_Model_Widget::getName() */ public function getName() { return 'Media Size Check'; } /** * Inits configuration * * @see FireGento_MageMonitoring_Model_Widget::initConfig() */ public function initConfig() { $helper = Mage::helper('magemonitoring'); parent::initConfig(); // add config for slow mode $this->addConfig(self::CONFIG_ALLOW_SLOW_MODE, $helper->__('Enable slower php methods to collect dir size?'), $this->_defAllowSlowMode, 'widget', 'checkbox', false, $helper->__('Warning! Depending on the size of your media directory this might take a very long time.') ); return $this->_config; } /** * Gets directory size * * @param string $path Path to directory * @return array */ protected function _getDirectorySize($path) { $totalsize = 0; $totalcount = 0; $dircount = 0; if ($handle = opendir ($path)) { while (false !== ($file = readdir($handle))) { $nextpath = $path . '/' . $file; if ($file != '.' && $file != '..' && !is_link ($nextpath)) { if (is_dir ($nextpath)) { $dircount++; $result = $this->_getDirectorySize($nextpath); $totalsize += $result['size']; $totalcount += $result['count']; $dircount += $result['dircount']; } elseif (is_file ($nextpath)) { $totalsize += filesize ($nextpath); $totalcount++; } } } } closedir ($handle); $total['size'] = $totalsize; $total['count'] = $totalcount; $total['dircount'] = $dircount; return $total; } /** * Fetches and returns output * * @return array */ public function getOutput() { $block = $this->newMultiBlock(); /** @var FireGento_MageMonitoring_Block_Widget_Multi_Renderer_Table $renderer */ $renderer = $block->newContentRenderer('table'); $helper = Mage::helper('magemonitoring'); $header = array( $helper->__('Size'), $helper->__('Number Directories'), $helper->__('Number Files') ); $renderer->setHeaderRow($header); $path = Mage::getBaseDir() . "/media"; $dirSize = $helper->getTotalSize($path); if (!$dirSize && !$this->getConfig(self::CONFIG_ALLOW_SLOW_MODE)) { $block = $this->newMonitoringBlock(); $os = strtoupper(substr(PHP_OS, 0, 3)); $block->addRow( 'warning', $helper->__( 'This PHP instance only allows slow methods for collecting the size of a directory. Solutions:' ) ); if ($os !== 'WIN') { $block->addRow('info', $helper->__('1. Remove popen from disable_functions in your php.ini or..')); } else { $block->addRow('info', $helper->__('1. Enable com_dotnet extension in your PHP instance or..')); } $block->addRow( 'info', $helper->__( '2. Enable the much slower php way of collecting directory size by clicking on the '. 'gear icon of this widget.' ) ); $block->addRow( 'warning', $helper->__('Solution 2 may take a very long time depending on your catalog size.') ); } elseif (!$dirSize && $this->getConfig(self::CONFIG_ALLOW_SLOW_MODE)) { $dirSize = $this->_getDirectorySize($path); $row = array($helper->formatByteSize($dirSize['size']), $dirSize['count'], $dirSize['dircount']); $renderer->addRow($row); } else { $row = array($helper->formatByteSize($dirSize), '-', '-'); $renderer->addRow($row); } $this->_output[] = $block; return $this->_output; } /** * Returns node name */ protected function _getNodeName() { // TODO: Implement _getNodeName() method. } } |