Source code of filesite.io.
https://filesite.io
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
3 years ago
|
<?php
|
||
|
/**
|
||
|
* Site Controller
|
||
|
*/
|
||
|
require_once __DIR__ . '/../../../lib/DirScanner.php';
|
||
|
require_once __DIR__ . '/../../../plugins/Parsedown.php';
|
||
|
|
||
|
Class SiteController extends Controller {
|
||
|
|
||
|
public function actionIndex() {
|
||
|
//获取数据
|
||
|
$menus = [];
|
||
|
$htmlReadme = '';
|
||
|
|
||
|
$titles = [];
|
||
|
$content = '';
|
||
|
|
||
|
$scanner = new DirScanner();
|
||
|
$scanner->setWebRoot(FSC::$app['config']['content_directory']);
|
||
|
$dirTree = $scanner->scan(__DIR__ . '/../../../www/' . FSC::$app['config']['content_directory'], 4);
|
||
|
$readmeFile = $scanner->getDefaultReadme();
|
||
|
|
||
|
$menus = $scanner->getMenus();
|
||
|
|
||
|
if (!empty($readmeFile)) {
|
||
|
$titles = $scanner->getMDTitles($readmeFile['id']);
|
||
|
$content = file_get_contents($readmeFile['realpath']);
|
||
|
|
||
|
$Parsedown = new Parsedown();
|
||
|
$htmlReadme = $Parsedown->text($content);
|
||
|
$htmlReadme = $scanner->fixMDUrls($readmeFile['realpath'], $htmlReadme);
|
||
|
}
|
||
|
|
||
|
$pageTitle = !empty($titles) ? $titles[0]['name'] : "FileSite.io - 无数据库、基于文件和目录的Markdown文档、网址导航、图书、图片、视频网站PHP开源系统";
|
||
|
$viewName = 'index';
|
||
|
$params = compact('dirTree', 'menus', 'htmlReadme');
|
||
|
return $this->render($viewName, $params, $pageTitle);
|
||
|
}
|
||
|
|
||
|
}
|