TOP-framework/framework/library/template/driver/Top.php

151 lines
3.7 KiB
PHP

<?php
namespace top\library\template\driver;
use top\library\Register;
use top\library\template\driver\tags\Engine;
use top\library\template\ifs\TemplateIfs;
class Top implements TemplateIfs
{
/**
* @var null 当前实例
*/
private static $instance = null;
/**
* @var null 模板引擎实现
*/
private $engine = null;
/**
* @var null 模板配置
*/
private $config = null;
/**
* @var bool 缓存状态
*/
private $cache = false;
/**
* 构造方法
* Top constructor.
*/
private function __construct()
{
}
/**
* 外部获取当前类实例
* @return null|Top
*/
public static function instance()
{
if (!self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
public function run()
{
$this->engine = Engine::instance();
$this->config = Register::get('Config')->get('view');
return $this;
}
/**
* 编译文件
* @param $filename
* @return string
*/
private function compile($filename)
{
$compileFileName = $this->config['compileDir'] . md5($filename) . '.php';
if (!file_exists($compileFileName) || DEBUG === true) {
if (!is_dir($this->config['compileDir'])) {
mkdir($this->config['compileDir'], 0777, true);
}
if (isset($this->config['tagLib']) && !empty($this->config['tagLib'])) {
foreach ($this->config['tagLib'] as $lib) {
$this->engine->loadTaglib($lib);
}
}
$content = file_get_contents($filename);
$content = $this->engine->compile($content);
$content = $this->engine->returnRaw($content);
file_put_contents($compileFileName, $content);
}
return $compileFileName;
}
/**
* @param $status
*/
public function cache($status)
{
$this->cache = $status;
}
/**
* 缓存文件
* @param $filename
* @param $params
* @return string
* @throws \Exception
*/
private function cacheFile($filename, $params)
{
if (isset($_SERVER['REQUEST_URI'])) {
$fileIdent = md5($_SERVER['REQUEST_URI']);
} else {
$fileIdent = request()->module() . request()->controller() . request()->method();
}
$filePath = $this->config['cacheDir'] . $fileIdent;
$cache = Register::get('FileCache');
extract($params);
ob_start();
require $filename;
$content = ob_get_clean();
ob_clean();
if ($cache->set($filePath, $content)) {
return $filePath;
} else {
throw new \Exception('无法创建缓存文件');
}
}
/**
* 渲染文件并返回内容
* @param $file
* @param $params
* @param $cache
* @return bool|false|mixed|string
* @throws \Exception
*/
public function fetch($file, $params, $cache)
{
$filename = $this->config['dir'] . $file . '.' . $this->config['ext'];
if (file_exists($filename)) {
$filename = $this->compile($filename);
if ($this->cache || $cache) {
$filename = $this->cacheFile($filename, $params);
return file_get_contents($filename);
} else {
extract($params);
ob_start();
require $filename;
$content = ob_get_contents();
ob_clean();
return $content;
}
} else {
throw new \Exception("模板文件 $file 不存在");
}
}
}