Beispiel #1
0
 private function getAppTemplateDirs()
 {
     if (self::$app_template_dirs === null) {
         foreach (Dja::getSetting('INSTALLED_APPS') as $app) {
             $template_dir = $app . '/templates';
             // TODO Probably needs directory exists check.
             self::$app_template_dirs[] = $template_dir;
         }
     }
     return self::$app_template_dirs;
 }
Beispiel #2
0
 public function getTemplateSources($template_name, $template_dirs = null)
 {
     if (!$template_dirs) {
         $template_dirs = Dja::getSetting('TEMPLATE_DIRS');
     }
     $dirs_ = array();
     foreach ($template_dirs as $template_dir) {
         try {
             $dirs_[] = safe_join($template_dir, $template_name);
         } catch (ValueError $e) {
             /*
              * The joined path was located outside of this particular
              * template_dir (it might be inside another one, so this isn't fatal).
              */
             continue;
         }
     }
     return $dirs_;
 }
Beispiel #3
0
 public function testCorrectExceptionIndex()
 {
     $debug_old_ = Dja::getSetting('TEMPLATE_DEBUG');
     Dja::setSetting('TEMPLATE_DEBUG', True);
     $tests = array(array('{% load bad_tag %}{% for i in range %}{% badsimpletag %}{% endfor %}', array(38, 56)), array('{% load bad_tag %}{% for i in range %}{% for j in range %}{% badsimpletag %}{% endfor %}{% endfor %}', array(58, 76)), array('{% load bad_tag %}{% for i in range %}{% badsimpletag %}{% for j in range %}Hello{% endfor %}{% endfor %}', array(38, 56)), array('{% load bad_tag %}{% for i in range %}{% for j in five %}{% badsimpletag %}{% endfor %}{% endfor %}', array(38, 57)), array('{% load bad_tag %}{% for j in five %}{% badsimpletag %}{% endfor %}', array(18, 37)));
     // {% for j in five %}
     // {% badsimpletag %}
     $context = new Context(array('range' => array(1, 2, 3, 4, 5), 'five' => 5));
     foreach ($tests as $item) {
         list($source, $expected_error_source_index) = $item;
         $template = DjaLoader::getTemplateFromString($source);
         try {
             $template->render($context);
         } catch (RuntimeError $e) {
             // TODO except (RuntimeError, TypeError), e:
             $error_source_index = $e->django_template_source[1];
             $this->assertEquals($expected_error_source_index, $error_source_index);
         }
     }
     Dja::setSetting('TEMPLATE_DEBUG', $debug_old_);
 }
Beispiel #4
0
 public function render($context)
 {
     try {
         $template_name = $this->template_name->resolve($context);
         $template = DjaLoader::getTemplate($template_name);
         return $this->renderTemplate($template, $context);
     } catch (Exception $e) {
         if (Dja::getSetting('TEMPLATE_DEBUG')) {
             throw $e;
         }
         return '';
     }
 }
Beispiel #5
0
 /**
  * @param Context $context
  * @param bool $ignore_failures
  *
  * @return mixed
  */
 public function resolve($context, $ignore_failures = False)
 {
     if ($this->var instanceof Variable) {
         try {
             $obj = $this->var->resolve($context);
         } catch (VariableDoesNotExist $e) {
             if ($ignore_failures) {
                 $obj = null;
             } else {
                 if (Dja::getSetting('TEMPLATE_STRING_IF_INVALID')) {
                     if (DjaBase::$invalid_var_format_string === null) {
                         DjaBase::$invalid_var_format_string = strpos(Dja::getSetting('TEMPLATE_STRING_IF_INVALID'), '%s') !== False;
                     }
                     if (DjaBase::$invalid_var_format_string) {
                         return sprintf(Dja::getSetting('TEMPLATE_STRING_IF_INVALID'), $this->var);
                     }
                     return Dja::getSetting('TEMPLATE_STRING_IF_INVALID');
                 } else {
                     $obj = Dja::getSetting('TEMPLATE_STRING_IF_INVALID');
                 }
             }
         }
     } else {
         $obj = $this->var;
     }
     foreach ($this->filters as $filter) {
         list($func, $args, $n_) = $filter;
         $arg_vals = array();
         foreach ($args as $arg_data) {
             /** @var $arg Variable|string */
             list($lookup, $arg) = $arg_data;
             if (!$lookup) {
                 $arg_vals[] = mark_safe($arg);
             } else {
                 $arg_vals[] = $arg->resolve($context);
             }
         }
         if (py_getattr($func, 'expects_localtime', False)) {
             $obj = localtime($obj, $context->use_tz);
         }
         $func_ = $func->closure;
         if (py_getattr($func, 'needs_autoescape', False)) {
             $new_obj = call_user_func_array($func_, array_merge(array($obj, $context->autoescape), $arg_vals));
         } else {
             $new_obj = call_user_func_array($func_, array_merge(array($obj), $arg_vals));
         }
         if (py_getattr($func, 'is_safe', False) && $obj instanceof SafeData) {
             $obj = mark_safe($new_obj);
         } else {
             if ($obj instanceof EscapeData) {
                 $obj = mark_for_escaping($new_obj);
             } else {
                 $obj = $new_obj;
             }
         }
     }
     return $obj;
 }
Beispiel #6
0
/**
 * Checks if value is a datetime and converts it to local time if necessary.
 *
 * If use_tz is provided and is not None, that will force the value to
 * be converted (or not), overriding the value of settings.USE_TZ.
 *
 * @param $value
 * @param null $use_tz
 */
function dja_localtime($value, $use_tz = null)
{
    $convert = True;
    if (isset($value->convert_to_local_time) && !$value->convert_to_local_time) {
        $convert = False;
    }
    if (is_a($value, 'DateTime') && ($use_tz === null ? Dja::getSetting('USE_TZ') : $use_tz) && !is_naive($value) && $convert) {
        $timezone = new DateTimeZone(date_default_timezone_get());
        $value->setTimezone($timezone);
    }
    return $value;
}
Beispiel #7
0
 /**
  * Simple rendering method.
  *
  * Handles Dja exceptions and renders pretty error
  * page if TEMPLATE_DEBUG = True.
  *
  * @static
  * @param string $template
  * @param array $context
  * @param bool $use_cache Use compiled template object cache.
  * @return string
  * @throws DjaException
  */
 public static function render($template, $context, $use_cache = True)
 {
     Dja::setSetting('TEMPLATE_CACHE', $use_cache);
     try {
         $result = DjaLoader::renderToString($template, $context);
     } catch (DjaException $e) {
         if (!Dja::getSetting('TEMPLATE_DEBUG')) {
             throw $e;
         }
         $result = DjaDebug::getTracebackHtml($template, $e);
     }
     return (string) $result;
 }
Beispiel #8
0
 /**
  * @param Context $context
  * @return SafeString|string
  */
 public function render($context)
 {
     // TODO Maybe get rid of USE_TZ?
     $use_tz = Dja::getSetting('USE_TZ');
     if (!$use_tz) {
         $old_tz = date_default_timezone_get();
         date_default_timezone_set('UTC');
     }
     $d_ = dja_date(time(), $this->format_string);
     if (!$use_tz) {
         date_default_timezone_set($old_tz);
     }
     return $d_;
 }
Beispiel #9
0
 public function testTemplates()
 {
     $template_tests = self::getTemplateTests();
     $filter_tests = get_filter_tests();
     /*
      * Quickly check that we aren't accidentally using a name in both
      * template and filter tests.
      */
     $overlapping_names = array();
     $tkeys_ = array_keys($template_tests);
     foreach ($filter_tests as $name => $v) {
         if (array_key_exists($name, $tkeys_)) {
             $overlapping_names[] = $name;
         }
     }
     if (!empty($overlapping_names)) {
         throw new Exception('Duplicate test name(s): ' . join(', ', $overlapping_names));
     }
     $template_tests = array_merge($template_tests, $filter_tests);
     $tpls_ = array();
     foreach ($template_tests as $name => $t) {
         $tpls_[$name] = $t[0];
     }
     $cache_loader = setup_test_template_loader($tpls_, True);
     $failures = array();
     $tests = $template_tests;
     ksort($tests);
     // Turn TEMPLATE_DEBUG off, because tests assume that.
     $old_debug = Dja::getSetting('TEMPLATE_DEBUG');
     Dja::setSetting('TEMPLATE_DEBUG', True);
     // Set TEMPLATE_STRING_IF_INVALID to a known string.
     $old_invalid = Dja::getSetting('TEMPLATE_STRING_IF_INVALID');
     $expected_invalid_str = 'INVALID';
     // Set ALLOWED_INCLUDE_ROOTS so that ssi works.
     $old_allowed_include_roots = Dja::getSetting('ALLOWED_INCLUDE_ROOTS');
     Dja::setSetting('ALLOWED_INCLUDE_ROOTS', array(realpath(dirname(__FILE__))));
     // Warm the URL reversing cache. This ensures we don't pay the cost
     // warming the cache during one of the tests.
     Dja::getUrlDispatcher()->reverse('regressiontests.templates.views.client_action', null, array(), array('id' => 0, 'action' => "update"));
     foreach ($tests as $name => $vals) {
         if (is_array($vals[2])) {
             $normal_string_result = $vals[2][0];
             $invalid_string_result = $vals[2][1];
             if (is_array($invalid_string_result)) {
                 $expected_invalid_str = 'INVALID %s';
                 $invalid_string_result = sprintf($invalid_string_result[0], $invalid_string_result[1]);
                 DjaBase::$invalid_var_format_string = True;
             }
             if (isset($vals[2][2])) {
                 $template_debug_result = $vals[2][2];
             } else {
                 $template_debug_result = $normal_string_result;
             }
         } else {
             $normal_string_result = $vals[2];
             $invalid_string_result = $vals[2];
             $template_debug_result = $vals[2];
         }
         if (isset($vals[1]['LANGUAGE_CODE'])) {
             Dja::getI18n()->activate($vals[1]['LANGUAGE_CODE']);
         } else {
             Dja::getI18n()->activate('en-us');
         }
         foreach (array(array('', False, $normal_string_result), array($expected_invalid_str, False, $invalid_string_result), array('', True, $template_debug_result)) as $itm) {
             list($invalid_str, $template_debug, $result) = $itm;
             Dja::setSetting('TEMPLATE_STRING_IF_INVALID', $invalid_str);
             Dja::setSetting('TEMPLATE_DEBUG', $template_debug);
             foreach (array(False, True) as $is_cached) {
                 $fail_str_ = 'Template test (Cached=' . ($is_cached ? 'TRUE' : 'FALSE') . ', TEMPLATE_STRING_IF_INVALID=\'' . $invalid_str . '\', TEMPLATE_DEBUG=' . ($template_debug ? 'TRUE' : 'FALSE') . '): ' . $name . ' -- FAILED. ';
                 try {
                     try {
                         $test_template = DjaLoader::getTemplate($name);
                     } catch (ShouldNotExecuteException $e) {
                         $failures[] = $fail_str_ . 'Template loading invoked method that shouldn\'t have been invoked.';
                     }
                     try {
                         $output = self::render($test_template, $vals);
                     } catch (ShouldNotExecuteException $e) {
                         $failures[] = $fail_str_ . 'Template loading invoked method that shouldn\'t have been invoked.';
                     }
                 } catch (ContextStackException $e) {
                     $failures[] = $fail_str_ . 'Context stack was left imbalanced';
                     continue;
                 } catch (Exception $e) {
                     $exc_type = get_class($e);
                     $exc_value = $e->getMessage();
                     $exc_tb = $e->getTraceAsString();
                     if ($exc_type != $result) {
                         $tb = $exc_tb;
                         $failures[] = $fail_str_ . 'Got ' . $exc_type . ', exception: ' . $exc_value . "\n" . $tb;
                     }
                     continue;
                 }
                 if ($output != $result) {
                     $failures[] = $fail_str_ . 'Expected [' . $result . '], got [' . $output . ']';
                 }
             }
             $cache_loader->reset();
         }
         if (isset($vals[1]['LANGUAGE_CODE'])) {
             Dja::getI18n()->deactivate();
         }
         if (DjaBase::$invalid_var_format_string) {
             $expected_invalid_str = 'INVALID';
             DjaBase::$invalid_var_format_string = False;
         }
     }
     restore_template_loaders();
     Dja::getI18n()->deactivate();
     Dja::setSetting('TEMPLATE_STRING_IF_INVALID', $old_invalid);
     Dja::setSetting('TEMPLATE_DEBUG', $old_debug);
     Dja::setSetting('ALLOWED_INCLUDE_ROOTS', $old_allowed_include_roots);
     $sep_ = str_pad('', 70, '-');
     $this->assertEquals(array(), $failures, "Tests failed:\n{$sep_}\n" . join("\n{$sep_}\n", $failures));
 }
Beispiel #10
0
 /**
  * Returns a compiled Template object for the given template name,
  * handling template inheritance recursively.
  *
  * @param $template_name
  *
  * @return Template
  */
 public static function getTemplate($template_name)
 {
     $self = get_called_class();
     $get_template = function () use($template_name, $self) {
         list($template, $origin) = $self::findTemplate($template_name);
         if (!py_hasattr($template, 'render')) {
             // template needs to be compiled
             $template = $self::getTemplateFromString($template, $origin, $template_name);
         }
         return $template;
     };
     $use_cache = Dja::getSetting('TEMPLATE_CACHE');
     if (!$use_cache) {
         return $get_template();
     }
     $cacher = Dja::getCacheManager();
     if (!($template = $cacher->get($template_name))) {
         $template = $get_template();
         $cacher->set($template_name, $template);
     }
     return $template;
 }