Browse Source

readme in root dir save into cache

master
filesite 5 months ago
parent
commit
22a8706975
  1. 7
      themes/beauty/controller/ListController.php
  2. 25
      themes/beauty/controller/SiteController.php

7
themes/beauty/controller/ListController.php

@ -90,6 +90,13 @@ Class ListController extends Controller { @@ -90,6 +90,13 @@ Class ListController extends Controller {
$cacheKey = $this->getCacheKey('all', 'menu', $maxScanDeep);
$menus = Common::getCacheFromFile($cacheKey, 3600);
//获取根目录下的readme
$cacheKey = $this->getCacheKey('root', 'readme', $maxScanDeep);
$cachedData = Common::getCacheFromFile($cacheKey);
if (!empty($cachedData)) {
$htmlReadme = $cachedData['htmlReadme'];
}
//获取目录面包屑
$subcate = $scanResults[$cateId];

25
themes/beauty/controller/SiteController.php

@ -81,14 +81,23 @@ Class SiteController extends Controller { @@ -81,14 +81,23 @@ Class SiteController extends Controller {
//获取联系方式
$titles = array();
$readmeFile = $scanner->getDefaultReadme();
if (!empty($readmeFile)) {
$titles = $scanner->getMDTitles($readmeFile['id']);
$Parsedown = new Parsedown();
$content = file_get_contents($readmeFile['realpath']);
$htmlReadme = $Parsedown->text($content);
$htmlReadme = $scanner->fixMDUrls($readmeFile['realpath'], $htmlReadme);
$cacheKey = $this->getCacheKey('root', 'readme', $maxScanDeep);
$cachedData = Common::getCacheFromFile($cacheKey);
if (empty($cachedData)) {
$readmeFile = $scanner->getDefaultReadme();
if (!empty($readmeFile)) {
$titles = $scanner->getMDTitles($readmeFile['id']);
$Parsedown = new Parsedown();
$content = file_get_contents($readmeFile['realpath']);
$htmlReadme = $Parsedown->text($content);
$htmlReadme = $scanner->fixMDUrls($readmeFile['realpath'], $htmlReadme);
Common::saveCacheToFile($cacheKey, array('htmlReadme' => $htmlReadme, 'titles' => $titles));
}
}else {
$htmlReadme = $cachedData['htmlReadme'];
$titles = $cachedData['titles'];
}

Loading…
Cancel
Save