aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Render/SmartyTemplate.php
blob: 79f03637ba14058262d24d44e33f2b77bd15c574 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php /** @file */

namespace Zotlabs\Render;

use App;


class SmartyTemplate implements TemplateEngine {

	static $name ="smarty3";

	public function __construct() {

		// Cannot use Config::Get() here because it is called during installation when there is no DB.
		// FIXME: this may leak private information such as system pathnames.

        $basecompiledir = ((array_key_exists('smarty3_folder', App::$config['system']))
			? App::$config['system']['smarty3_folder'] : '');
        if (! $basecompiledir) {
			$basecompiledir = str_replace('Zotlabs','',dirname(__dir__)) . TEMPLATE_BUILD_PATH;
		}
        if (! is_dir($basecompiledir)) {
			@os_mkdir(TEMPLATE_BUILD_PATH, STORAGE_DEFAULT_PERMISSIONS, true);
	        if (! is_dir($basecompiledir)) {
				echo "<b>ERROR:</b> folder <tt>$basecompiledir</tt> does not exist."; killme();
			}
        }
		if (! is_writable($basecompiledir)) {
			echo "<b>ERROR:</b> folder <tt>$basecompiledir</tt> must be writable by webserver."; killme();
		}
		App::$config['system']['smarty3_folder'] = $basecompiledir;
	}

	// TemplateEngine interface

	public function replace_macros($s, $r) {
		$template = '';

		// macro or macros available for use in all templates

		$r['$z_baseurl']     = z_root();
		$r['$z_server_role'] = \Zotlabs\Lib\System::get_server_role();
		$r['$z_techlevel']   = get_account_techlevel();

		if (gettype($s) === 'string') {
			$template = $s;
			$s = new SmartyInterface();
		}
		foreach ($r as $key=>$value) {
			if ($key[0] === '$') {
				$key = substr($key, 1);
			}
			$s->assign($key, $value);
		}
		return $s->parsed($template);
	}

	public function get_markup_template($file, $root = '') {
		$template_file = theme_include($file, $root);
		if ($template_file) {
			$template = new SmartyInterface();
			$template->filename = $template_file;

			return $template;
		}
		return EMPTY_STR;
	}

	public function get_intltext_template($file, $root = '') {

		$lang = App::$language;
		if ($root != '' && substr($root,-1) != '/' ) {
			$root .= '/';
		}
		foreach ( [ $root . "view/$lang/$file", $root . "view/en/$file", '' ] as $template_file) {
			if (is_file($template_file)) {
				break;
			}
		}
		if ($template_file == '') {
			$template_file = theme_include($file,$root);
		}
		if ($template_file) {
			$template = new SmartyInterface();
			$template->filename = $template_file;
			return $template;
		}
		return "";
	}



}