Ejemplo n.º 1
0
 /**
  * Call action factory
  * @return Controller
  */
 public static function getInstance()
 {
     static $instance = null;
     if (is_null($instance)) {
         $instance = Action::getController();
     }
     return $instance;
 }
Ejemplo n.º 2
0
 public static function addSitemapHTML()
 {
     $html = \Difra\Libs\XML\Sitemap::getXMLforHTML();
     if (!$html) {
         return;
     }
     $controller = \Difra\Envi\Action::getController();
     $sitemapNode = $controller->realRoot->appendChild($controller->xml->createElement('sitemap'));
     $sitemapNode->setAttribute('html', $html);
 }
Ejemplo n.º 3
0
 public function test_find_IndexIndex()
 {
     \Difra\Envi::setUri('');
     \Difra\Envi\Action::find();
     $this->assertEquals(\Difra\Envi\Action::getControllerClass(), 'IndexController');
     $this->assertEquals(\Difra\Envi\Action::$method, 'indexAction');
     \Difra\Envi::setUri('adm');
     \Difra\Envi\Action::find();
     $this->assertEquals(\Difra\Envi\Action::getControllerClass(), 'AdmIndexController');
     $this->assertEquals(\Difra\Envi\Action::$method, 'indexAction');
     \Difra\Envi::setUri('adm/development/config');
     \Difra\Envi\Action::find();
     $this->assertEquals(\Difra\Envi\Action::getControllerClass(), 'AdmDevelopmentConfigController');
     $this->assertEquals(\Difra\Envi\Action::$method, 'indexAction');
     \Difra\Envi::setUri('adm/development/config/reset');
     \Difra\Envi\Action::find();
     $this->assertEquals(\Difra\Envi\Action::getControllerClass(), 'AdmDevelopmentConfigController');
     $this->assertEquals(\Difra\Envi\Action::$methodAjax, 'resetAjaxAction');
     \Difra\Envi::setUri('');
     \Difra\Envi\Action::find();
 }
Ejemplo n.º 4
0
 /**
  * Fill output XML with some common data
  * @param \DOMDocument|null $xml
  * @param null $instance
  */
 public static function fillXML(&$xml = null, $instance = null)
 {
     $controller = Controller::getInstance();
     if (is_null($xml)) {
         $xml = $controller->xml;
         $node = $controller->realRoot;
     } else {
         $node = $xml->documentElement;
     }
     Debugger::addLine('Filling XML data for render: Started');
     // TODO: sync this with Envi::getState()
     $node->setAttribute('lang', Envi\Setup::getLocale());
     $node->setAttribute('site', Envi::getSubsite());
     $node->setAttribute('host', $host = Envi::getHost());
     $node->setAttribute('mainhost', $mainhost = Envi::getHost(true));
     $node->setAttribute('protocol', Envi::getProtocol());
     $node->setAttribute('fullhost', Envi::getURLPrefix());
     $node->setAttribute('instance', $instance ? $instance : View::$instance);
     $node->setAttribute('uri', Envi::getUri());
     $node->setAttribute('controllerUri', Action::getControllerUri());
     if ($host != $mainhost) {
         $node->setAttribute('urlprefix', Envi::getURLPrefix(true));
     }
     // get user agent
     Envi\UserAgent::getUserAgentXML($node);
     // ajax flag
     $node->setAttribute('ajax', (Request::isAjax() or isset($_SERVER['HTTP_X_REQUESTED_WITH']) and $_SERVER['HTTP_X_REQUESTED_WITH'] == 'SwitchPage') ? '1' : '0');
     $node->setAttribute('switcher', (!$controller->cache and isset($_SERVER['HTTP_X_REQUESTED_WITH']) and $_SERVER['HTTP_X_REQUESTED_WITH'] == 'SwitchPage') ? '1' : '0');
     // build and version number
     $node->setAttribute('build', Version::getBuild());
     $node->setAttribute('framework', Version::getFrameworkVersion(false));
     $node->setAttribute('frameworkLong', Version::getFrameworkVersion(true));
     // date
     /** @var $dateNode \DOMElement */
     $dateNode = $node->appendChild($xml->createElement('date'));
     $dateKeys = ['d', 'e', 'A', 'a', 'm', 'B', 'b', 'Y', 'y', 'c', 'x', 'H', 'M', 'S'];
     $dateValues = explode('|', strftime('%' . implode('|%', $dateKeys)));
     $dateCombined = array_combine($dateKeys, $dateValues);
     $dateNode->setAttribute('ts', time());
     foreach ($dateCombined as $k => $v) {
         $dateNode->setAttribute($k, $v);
     }
     // debug flag
     $node->setAttribute('debug', Debugger::isEnabled() ? '1' : '0');
     // config values (for js variable)
     $configNode = $node->appendChild($xml->createElement('config'));
     Envi::getStateXML($configNode);
     // menu
     if ($menuResource = Resourcer::getInstance('menu')->compile(View::$instance)) {
         $menuXML = new \DOMDocument();
         $menuXML->loadXML($menuResource);
         $node->appendChild($xml->importNode($menuXML->documentElement, true));
     }
     // auth
     Auth::getInstance()->getAuthXML($node);
     // locale
     Locales::getInstance()->getLocaleXML($node);
     // Add config js object
     $config = Envi::getState();
     $confJS = '';
     foreach ($config as $k => $v) {
         $confJS .= "config.{$k}='" . addslashes($v) . "';";
     }
     $node->setAttribute('jsConfig', $confJS);
     Debugger::addLine('Filling XML data for render: Done');
     Debugger::debugXML($node);
 }
Ejemplo n.º 5
0
 /**
  * Get menu element data as XML node
  * @param \DOMElement $node
  * @return bool
  */
 public function getXML($node)
 {
     if (!$this->load()) {
         return false;
     }
     $node->setAttribute('id', $this->id);
     $node->setAttribute('id', $this->id);
     $node->setAttribute('menu', $this->menu);
     $node->setAttribute('parent', $this->parent);
     $controllerUri = Action::getControllerUri();
     $uri = Envi::getUri();
     $href = '';
     if ($this->page) {
         // page
         if (empty($this->pageData)) {
             $page = Page::get($this->page);
             $this->pageData = ['id' => $page->getId(), 'tag' => $page->getUri(), 'hidden' => $page->getHidden(), 'title' => $page->getTitle()];
         }
         $hidden = (!$this->visible or $this->pageData['hidden']) ? '1' : '0';
         $node->setAttribute('type', 'page');
         $node->setAttribute('label', $this->pageData['title']);
         $node->setAttribute('link', $href = $this->pageData['tag']);
         $node->setAttribute('hidden', $hidden);
         $node->setAttribute('page', $this->pageData['id']);
     } elseif ($this->link) {
         // link
         $node->setAttribute('type', 'link');
         $node->setAttribute('label', $this->linkLabel);
         $node->setAttribute('link', $href = $this->link);
         $node->setAttribute('hidden', !$this->visible ? '1' : '0');
     } else {
         // empty
         $node->setAttribute('type', 'empty');
         $node->setAttribute('label', $this->linkLabel);
         $node->setAttribute('hidden', !$this->visible ? '1' : '0');
     }
     if ($href) {
         if ($href == $uri) {
             $node->setAttribute('match', 'exact');
         } elseif ($href == $controllerUri) {
             $node->setAttribute('match', 'partial');
         } elseif (strpos($uri, $href) !== false) {
             $node->setAttribute('match', 'partial');
         }
     }
     return true;
 }
Ejemplo n.º 6
0
 /**
  * Detect if CMS page is requested
  */
 public static function run()
 {
     if ($page = Page::find()) {
         Action::setCustomAction('\\Difra\\Plugins\\CMS\\Controller', 'pageAction', [$page]);
     }
 }
Ejemplo n.º 7
0
 /**
  * Try to detect locale record usages
  * @param $xpath
  * @return int
  * @throws \Difra\Exception
  */
 public function findUsages($xpath)
 {
     static $cache = [];
     if (isset($cache[$xpath])) {
         return $cache[$xpath];
     }
     static $templates = null;
     if (is_null($templates)) {
         $resourcer = Resourcer::getInstance('xslt');
         $types = $resourcer->findInstances();
         foreach ($types as $type) {
             $templates[$type] = $resourcer->compile($type);
         }
     }
     $matches = 0;
     foreach ($templates as $tpl) {
         $matches += substr_count($tpl, '"$locale/' . $xpath . '"');
         $matches += substr_count($tpl, '{$locale/' . $xpath . '}');
     }
     static $menus = null;
     if (is_null($menus)) {
         $resourcer = Resourcer::getInstance('menu');
         $types = $resourcer->findInstances();
         foreach ($types as $type) {
             $menus[$type] = $resourcer->compile($type);
         }
     }
     foreach ($menus as $tpl) {
         $matches += substr_count($tpl, 'xpath="locale/' . $xpath . '"');
     }
     static $controllers = null;
     if (is_null($controllers)) {
         $controllers = [];
         $dirs = Action::getControllerPaths();
         foreach ($dirs as $dir) {
             $this->getAllFiles($controllers, $dir);
             $this->getAllFiles($controllers, $dir . '../lib');
         }
     }
     foreach ($controllers as $controller) {
         $matches += substr_count($controller, "'" . $xpath . "'");
         $matches += substr_count($controller, '"' . $xpath . '"');
     }
     return $cache[$xpath] = $matches;
 }
Ejemplo n.º 8
0
 /**
  * Constructor
  */
 public function __construct()
 {
     $this->linkPrefix = Action::getControllerUri();
 }