Source of file WidgetAjaxController.php
Size: 9,576 Bytes - Last Modified: 2015-05-15T11:18:15+02:00
/www-data/git/Hackathon_MageMonitoring/src/app/code/community/FireGento/MageMonitoring/controllers/Adminhtml/WidgetAjaxController.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 | <?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) */ /** * Widget Ajax Controller * * @category FireGento * @package FireGento_MageMonitoring * @author FireGento Team <team@firegento.com> */ class FireGento_MageMonitoring_Adminhtml_WidgetAjaxController extends Mage_Adminhtml_Controller_Action { /** * Ajax refresh */ public function refreshWidgetAction() { $response = ''; if ($widget = $this->_getWidgetFromRequest()) { foreach ($widget->getOutput() as $block) { $response .= $block->toHtml(); } } if ($response == '') { $response = 'ERR'; } $this->getResponse() ->clearHeaders() ->setHeader('Content-Type', 'application/json') ->setBody($response); } /** * Get widget config html */ public function getWidgetConfAction() { $response = "ERR"; if ($widget = $this->_getWidgetFromRequest()) { $response = $this->getLayout()->createBlock('core/template') ->setTemplate('monitoring/widget/config.phtml') ->setData('widget', $widget) ->setData('tab_id', $this->getRequest()->getParam('tabId')) ->toHtml(); } $this->getResponse()->setBody($response); } /** * Save widget config */ public function saveWidgetConfAction() { $response = "ERR"; $post = $this->getRequest()->getPost(); $className = null; if (array_key_exists('class_name', $post)) { $className = $post['class_name']; } $widgetDbId = null; if (array_key_exists('widget_id', $post)) { $widgetDbId = $post['widget_id']; } if ($widget = $this->_getWidgetFromRequest($className, $widgetDbId)) { // ignore display prio if we save from config tab page $ref = $this->getRequest()->getServer('HTTP_REFERER'); if (strpos($ref, '/config_tabs/') !== false) { $post['display_prio'] = $widget->getConfig('display_prio', true); } unset($post['form_key']); $widget->saveConfig($post); Mage::getConfig()->reinit(); $response = 'Settings saved for ' . $widget->getName() . '. Changing display prio and collapseable state requires a page reload.'; } $this->getResponse()->setBody($response); } /** * Delete widget config */ public function resetWidgetConfAction() { $response = "ERR"; if ($widget = $this->_getWidgetFromRequest()) { $widget->deleteConfig(); Mage::getConfig()->reinit(); $response = 'Deleted config for ' . $widget->getName(); } $this->getResponse()->setBody($response); } /** * Tab config - get widget config form html */ public function getWidgetConfigFormAction() { $response = "ERR"; if ($widget = $this->_getWidgetFromRequest()) { $response = $this->getLayout()->createBlock('magemonitoring/tab_config_form_widgetConf') ->setData('widget', $widget) ->setData('tab_id', $this->getRequest()->getParam('tabId')) ->setData('widget_id_org', $this->getRequest()->getParam('widgetId')) ->toHtml(); } $this->getResponse()->setBody($response); } /** * Save tab config */ public function saveTabConfigAction() { $response = array(); $hasError = false; $data = Mage::helper('core')->jsonDecode($this->getRequest()->getPost('data')); try { $this->_saveTabConfig($data); $this->_getSession()->addSuccess($this->__('Tab config has been saved.')); } catch (Mage_Core_Exception $e) { $this->_getSession()->addError($e->getMessage()); $hasError = true; } catch (Exception $e) { Mage::logException($e); $this->_getSession()->addException($e, $this->__('An error occurred while saving the tab config.')); $hasError = true; } if ($hasError) { $this->_initLayoutMessages('adminhtml/session'); $response['error'] = 1; $response['message'] = $this->getLayout()->getMessagesBlock()->getGroupedHtml(); } else { $response['error'] = 0; $response['url'] = $this->getUrl('*/monitoring'); } $this->getResponse()->setBody(Mage::helper('core')->jsonEncode($response)); } /** * Execute callback on widget */ public function execCallbackAction() { $response = "ERR"; if ($widget = $this->_getWidgetFromRequest()) { if ($cbMethod = $this->getRequest()->getParam('cb')) { if (method_exists($widget, $cbMethod)) { try { $response = $widget->$cbMethod(); // make true/false responses look a bit nicer if ($response === true) { $response = $cbMethod . ' was successful!'; } else if ($response === false) { $response = $cbMethod . ' caused an error. :('; } } catch (Exception $e) { $response = $e->getMessage(); Mage::logException($e); } } } } $this->getResponse()->setBody($response); } /** * Returns widget instance if widgetId or widgetImpl is found in current request params. * * @param string|null $className Class name * @param int|null $widgetDbId Widget DB Id * @return mixed */ private function _getWidgetFromRequest($className = null, $widgetDbId = null) { if ($id = $this->getRequest()->getParam('widgetId')) { $tabId = null; if ($this->getRequest()->getParam('tabId')) { $tabId = $this->getRequest()->getParam('tabId'); } if ($className !== null || (is_numeric($id) && $this->getRequest()->getParam('widgetImpl'))) { if ($className === null) { $className = $this->getRequest()->getParam('widgetImpl'); } if ($widgetDbId === null) { $w = new $className(); $widgetDbId = $w->getConfigId(); } $id = array($widgetDbId => $className); $widget = Mage::helper('magemonitoring')->getActiveWidgets($id, $tabId, false); } else { $widget = Mage::helper('magemonitoring')->getConfiguredWidgets($tabId, $id, false); $widget = reset($widget); } $widget = reset($widget); if ($widget instanceof FireGento_MageMonitoring_Model_Widget) { return $widget; } } return false; } /** * Saves tab/widget display structure from ext.tree data array. * * @param array $data Data */ private function _saveTabConfig($data) { $tabData = $data['tabs']; foreach ($tabData as $t) { Mage::getConfig()->saveConfig('magemonitoring/tabs/' . $t[0] . '/visible', 1); Mage::getConfig()->saveConfig('magemonitoring/tabs/' . $t[0] . '/title', $t[1]); Mage::getConfig()->saveConfig('magemonitoring/tabs/' . $t[0] . '/label', $t[1]); Mage::getConfig()->saveConfig('magemonitoring/tabs/' . $t[0] . '/display_prio', $t[2] * 10); } $tabData = $data['removedTabs']; foreach ($tabData as $t) { Mage::getConfig()->saveConfig('magemonitoring/tabs/' . $t . '/visible', 0); } $widgetData = $data['widgets']; foreach ($widgetData as $w) { if (is_int($w[0])) { $w[0] = $w[1] . '_' . $w[0]; } Mage::getConfig()->saveConfig('magemonitoring/tabs/' . $w[1] . '/widgets/' . $w[0] . '/impl', $w[3]); Mage::getConfig()->saveConfig( 'magemonitoring/tabs/' . $w[1] . '/widgets/' . $w[0] . '/display_prio', $w[2] * 10 ); Mage::getConfig()->saveConfig('magemonitoring/tabs/' . $w[1] . '/widgets/' . $w[0] . '/visible', 1); } $widgetData = $data['removedWidgets']; foreach ($widgetData as $w) { Mage::getConfig()->saveConfig('magemonitoring/tabs/' . $w[0] . '/widgets/' . $w[1] . '/visible', 0); } Mage::getConfig()->reinit(); } } |