33 lines
828 B
PHP
33 lines
828 B
PHP
<?php
|
|
|
|
namespace top\middleware;
|
|
|
|
use top\library\cache\driver\File;
|
|
use top\library\Config;
|
|
use top\library\http\Response;
|
|
use top\middleware\ifs\MiddlewareIfs;
|
|
|
|
class View implements MiddlewareIfs
|
|
{
|
|
|
|
public function before()
|
|
{
|
|
if (!DEBUG) {
|
|
$ident = viewCacheIdent();
|
|
$config = Config::instance()->get('view');
|
|
(!$config['cacheDir']) && $config['cacheDir'] = './runtime/cache/application/' . request()->module() . '/';
|
|
$cache = File::instance($config['cacheDir']);
|
|
if ($cache->exists($ident)) {
|
|
$content = $cache->get($ident);
|
|
return Response::instance()->dispatch($content);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
public function after($data)
|
|
{
|
|
// TODO: Implement after() method.
|
|
}
|
|
|
|
} |