Completed
Push — develop ( c79c80...d281cd )
by Julien
02:35
created

HtmlOutput::__construct()   B

Complexity

Conditions 3
Paths 4

Size

Total Lines 25
Code Lines 18

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 12

Importance

Changes 3
Bugs 0 Features 0
Metric Value
cc 3
eloc 18
c 3
b 0
f 0
nc 4
nop 1
dl 0
loc 25
ccs 0
cts 22
cp 0
crap 12
rs 8.8571
1
<?php
2
3
namespace SSpkS\Output;
4
5
use \Mustache_Engine;
6
use \Mustache_Loader_FilesystemLoader;
7
use \Mustache_Logger_StreamLogger;
8
9
class HtmlOutput
10
{
11
    private $config;
12
    private $mustache;
13
    private $tplVars;
14
    private $template;
15
16
    public function __construct(\SSpkS\Config $config)
17
    {
18
        $this->config = $config;
19
        $tplBase  = $this->config->basePath . DIRECTORY_SEPARATOR . $this->config->paths['themes'];
20
        $tplBase .= $this->config->site['theme'] . DIRECTORY_SEPARATOR . 'templates';
21
22
        $this->mustache = new Mustache_Engine(array(
23
            'loader'          => new Mustache_Loader_FilesystemLoader($tplBase),
24
            'partials_loader' => new Mustache_Loader_FilesystemLoader($tplBase . '/partials'),
25
            'charset'         => 'utf-8',
26
            'logger'          => new Mustache_Logger_StreamLogger('php://stderr'),
27
        ));
28
29
        $this->setVariable('siteName', $this->config->site['name']);
30
        $this->setVariable('baseUrl', $this->config->baseUrl);
31
        $this->setVariable('baseUrlRelative', $this->config->baseUrlRelative);
32
        $this->setVariable('themeUrl', $this->config->baseUrlRelative . $this->config->paths['themes'] . $this->config->site['theme'] . '/');
33
        $this->setVariable('requestUri', $_SERVER['REQUEST_URI']);
34
        if (getenv('SSPKS_COMMIT')){
35
            $this->setVariable('commitHash', getenv('SSPKS_COMMIT'));
36
        }
37
        if (getenv('SSPKS_BRANCH')){
38
            $this->setVariable('branch', getenv('SSPKS_BRANCH'));
39
        }
40
    }
41
42
    public function setVariable($name, $value)
43
    {
44
        $this->tplVars[$name] = $value;
45
    }
46
47
    public function setTemplate($tplName)
48
    {
49
        $this->template = $tplName;
50
    }
51
52
    public function output()
53
    {
54
        $tpl = $this->mustache->loadTemplate($this->template);
55
        echo $tpl->render($this->tplVars);
56
    }
57
}
58