Fix in CryptoHelper class, templates are now loaded from application (templates in...
authorRoland Häder <roland@mxchange.org>
Sat, 14 Mar 2009 01:50:36 +0000 (01:50 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 14 Mar 2009 01:50:36 +0000 (01:50 +0000)
inc/classes/main/class_BaseFrameworkSystem.php
inc/classes/main/controller/web/class_WebLoginController.php
inc/classes/main/crypto/class_CryptoHelper.php
inc/classes/main/helper/web/links/class_WebLinkHelper.php
inc/classes/main/template/class_BaseTemplateEngine.php

index fafe6b0310e0d9dcfe400acb403d4409e1870167..ade1a13689ac103c78ec8f242eb438a343fcf9d5 100644 (file)
@@ -1119,6 +1119,30 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                        $wrapperInstance->doUpdateByResult($this->getResultInstance());
                } // END - if
        }
                        $wrapperInstance->doUpdateByResult($this->getResultInstance());
                } // END - if
        }
+
+       /**
+        * Outputs a deprecation warning to the developer.
+        *
+        * @param       $message        The message we shall output to the developer
+        * @return      void
+        * @todo        Write a logging mechanism for productive mode
+        */
+       public function deprecationWarning ($message) {
+               // Is developer mode active?
+               if (defined('DEVELOPER')) {
+                       // Debug instance is there?
+                       if (!is_null($this->getDebugInstance())) {
+                               // Output stub message
+                               $this->debugOutput($message);
+                       } else {
+                               // Trigger an error
+                               trigger_error($message."<br />\n");
+                       }
+               } else {
+                       // @TODO Finish this part!
+                       $this->partialStub('Developer mode inactive. Message:' . $message);
+               }
+       }
 }
 
 // [EOF]
 }
 
 // [EOF]
index f6be6d61c096b8ef40fb2cd2714cba590e225b22..82582c61bec7f68fce3425eb976676727e8b3e7e 100644 (file)
@@ -61,7 +61,7 @@ class WebLoginController extends BaseController implements Controller {
        public function handleRequest (Requestable $requestInstance, Responseable $responseInstance) {
                // Get the command instance from the resolver by sending a request instance to the resolver
                $commandInstance = $this->getResolverInstance()->resolveCommandByRequest($requestInstance);
        public function handleRequest (Requestable $requestInstance, Responseable $responseInstance) {
                // Get the command instance from the resolver by sending a request instance to the resolver
                $commandInstance = $this->getResolverInstance()->resolveCommandByRequest($requestInstance);
-
                // Add more filters by the command
                $commandInstance->addExtraFilters($this, $requestInstance);
 
                // Add more filters by the command
                $commandInstance->addExtraFilters($this, $requestInstance);
 
index 004ea24f6bcf357964463bbcb4db052952224dbf..ace0560299c24c38ecd1e65c7a889e6b083e0616 100644 (file)
@@ -44,7 +44,7 @@ class CryptoHelper extends BaseFrameworkSystem implements Cryptable {
        /**
         * Seperator on many places
         */
        /**
         * Seperator on many places
         */
-       private $seperator '|';
+       private $seperator '|';
 
        /**
         * Protected constructor
 
        /**
         * Protected constructor
index 5dd2ef7e0b436a29c099d621457b5058354655d0..7b2706871df3877218f52acf48babe7194a69a90 100644 (file)
@@ -57,10 +57,12 @@ class WebLinkHelper extends BaseWebHelper implements HelpableTemplate {
         *
         * @param       $templateInstance       An instance of a template engine
         * @param       $linkName                       Name of the link we shall generate
         *
         * @param       $templateInstance       An instance of a template engine
         * @param       $linkName                       Name of the link we shall generate
-        * @param       $linkBase                       Link base for all generated links
+        * @param       $linkBase                       Link base for the link. This parameter is deprecated.
         * @return      $helperInstance         A prepared instance of this helper
         * @return      $helperInstance         A prepared instance of this helper
+        * @throws      NullPointerException    Thrown if an instance is null
+        * @throws      ConfigEntryNotFoundException    A deprecated exception at this point
         */
         */
-       public final static function createWebLinkHelper (CompileableTemplate $templateInstance, $linkName, $linkBase) {
+       public final static function createWebLinkHelper (CompileableTemplate $templateInstance, $linkName, $linkBase = null) {
                // Get new instance
                $helperInstance = new WebLinkHelper();
 
                // Get new instance
                $helperInstance = new WebLinkHelper();
 
@@ -70,6 +72,48 @@ class WebLinkHelper extends BaseWebHelper implements HelpableTemplate {
                // Set link name
                $helperInstance->setLinkName($linkName);
 
                // Set link name
                $helperInstance->setLinkName($linkName);
 
+               // Get the application instance
+               $applicationInstance = Registry::getRegistry()->getInstance('application');
+
+               // Sanity-check on it
+               if (is_null($applicationInstance)) {
+                       // Throw an exception here
+                       throw new NullPointerException($helperInstance, self::EXCEPTION_IS_NULL_POINTER);
+               } // END - if
+
+               // Get the request instance
+               $requestInstance = $applicationInstance->getRequestInstance();
+
+               // Sanity-check on it
+               if (is_null($requestInstance)) {
+                       // Throw an exception here
+                       throw new NullPointerException($helperInstance, self::EXCEPTION_IS_NULL_POINTER);
+               } // END - if
+
+               // Get page (this will throw an exception if not set)
+               $page = $helperInstance->convertDashesToUnderscores($requestInstance->getRequestElement('page'));
+
+               // Construct config entry
+               $configEntry = $page . '_' . $linkName;
+
+               // Is the deprecated parameter set?
+               if (!is_null($linkBase)) {
+                       // Then output a deprecation message
+                       $helperInstance->deprecationWarning(__METHOD__ . ': linkBase is deprecated. Please remove it from your templates and add a config entry ' . $configEntry . ' in your config.php file.');
+               } // END - if
+
+               // Determine link base from config now and 'page' request
+               try {
+                       $newLinkBase = $helperInstance->getConfigInstance()->readConfig($configEntry);
+                       $linkBase = $newLinkBase;
+               } catch (ConfigEntryNotFoundException $e) {
+                       // Is the deprecated linkBase not set?
+                       if (is_null($linkBase)) {
+                               // Then throw again the exception
+                               throw new ConfigEntryNotFoundException(array(__CLASS__, ($configEntry)), self::EXCEPTION_CONFIG_ENTRY_WAS_NOT_FOUND);
+                       } // END - if
+               }
+
                // Set link base
                $helperInstance->setLinkBase($linkBase);
 
                // Set link base
                $helperInstance->setLinkBase($linkBase);
 
index c40b183c021148b0cc3fba84b297083080e53bf7..21234b81e8295b2e6eac43680f543a7068202fb8 100644 (file)
@@ -523,7 +523,9 @@ class BaseTemplateEngine extends BaseFrameworkSystem {
                } // END - if
 
                // Construct the FQFN for the template by honoring the current language
                } // END - if
 
                // Construct the FQFN for the template by honoring the current language
-               $fqfn = sprintf("%s%s/%s/%s%s",
+               $fqfn = sprintf("%s%s/%s%s/%s/%s%s",
+                       $this->getConfigInstance()->readConfig('application_path'),
+                       Registry::getRegistry()->getInstance('application')->getAppShortName(),
                        $this->getBasePath(),
                        $this->getLanguageInstance()->getLanguageCode(),
                        $this->getTemplateType(),
                        $this->getBasePath(),
                        $this->getLanguageInstance()->getLanguageCode(),
                        $this->getTemplateType(),
@@ -1018,7 +1020,7 @@ class BaseTemplateEngine extends BaseFrameworkSystem {
                        @eval($eval);
 
                        // Goes something wrong?
                        @eval($eval);
 
                        // Goes something wrong?
-                       if (!isset($result)) {
+                       if ((!isset($result)) || (empty($result))) {
                                // Output eval command
                                $this->debugOutput(sprintf("Failed eval() code: <pre>%s</pre>", $this->markupCode($eval, true)), true);
 
                                // Output eval command
                                $this->debugOutput(sprintf("Failed eval() code: <pre>%s</pre>", $this->markupCode($eval, true)), true);