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.
299 lines
10 KiB
299 lines
10 KiB
<?php |
|
/** |
|
* Site Controller |
|
*/ |
|
require_once __DIR__ . '/../../../lib/DirScanner.php'; |
|
require_once __DIR__ . '/../../../plugins/Parsedown.php'; |
|
require_once __DIR__ . '/../../../plugins/Common.php'; |
|
|
|
Class SiteController extends Controller { |
|
|
|
public function actionIndex() { |
|
if (function_exists('mb_strlen') == false) { |
|
throw new Exception('Please install php extension php-mbstring first!', 500); |
|
} |
|
|
|
//如果没有开启多用户支持,或者当前用户不为空 |
|
if (empty(FSC::$app['config']['multipleUserUriParse']) || !empty(FSC::$app['user_id'])) { |
|
return $this->renderFavVideos(); |
|
}else { |
|
return $this->renderTajianIndex(); |
|
} |
|
} |
|
|
|
//显示当前用户收藏的视频 |
|
protected function renderFavVideos() { |
|
//获取数据 |
|
$menus = array(); //菜单,一级目录 |
|
$htmlReadme = ''; //Readme.md 内容,底部网站详细介绍 |
|
$menus_sorted = array(); //Readme_sort.txt 说明文件内容,一级目录菜单从上到下的排序 |
|
|
|
$scanner = new DirScanner(); |
|
$scanner->setWebRoot(FSC::$app['config']['content_directory']); |
|
$dirTree = $scanner->scan(__DIR__ . '/../../../www/' . FSC::$app['config']['content_directory'], 4); |
|
$scanResults = $scanner->getScanResults(); |
|
|
|
//获取目录 |
|
$menus = $scanner->getMenus(); |
|
|
|
$titles = array(); |
|
$htmlReadme = ''; |
|
$readmeFile = $scanner->getDefaultReadme(); |
|
if (!empty($readmeFile)) { |
|
if (!empty($readmeFile['sort'])) { |
|
$menus_sorted = explode("\n", $readmeFile['sort']); |
|
} |
|
|
|
$titles = $scanner->getMDTitles($readmeFile['id']); |
|
|
|
$Parsedown = new Parsedown(); |
|
$content = file_get_contents($readmeFile['realpath']); |
|
$htmlReadme = $Parsedown->text($content); |
|
$htmlReadme = $scanner->fixMDUrls($readmeFile['realpath'], $htmlReadme); |
|
} |
|
|
|
//默认显示的目录 |
|
$cateId = $menus[0]['id']; |
|
|
|
//获取tags分类 |
|
$tags = $this->getTags($dirTree); |
|
|
|
//排序 |
|
if (!empty($menus_sorted) && !empty($tags)) { |
|
$tags = $this->sortTags($menus_sorted, $tags); |
|
} |
|
|
|
//根据tag获取相关数据,并传给视图;调整视图兼容tag的数据结构 |
|
if (!empty($tags)) { |
|
foreach($tags as $id => $tag) { |
|
$scanResults[$id]['files'] = $this->getTagFiles($tag, $scanResults); |
|
} |
|
} |
|
|
|
//昵称支持 |
|
$nickname = $this->getNickname($readmeFile); |
|
|
|
$pageTitle = $defaultTitle = "{$nickname}的视频收藏夹 | " . FSC::$app['config']['site_name']; |
|
|
|
$viewName = 'myindex'; |
|
$params = compact( |
|
'cateId', 'dirTree', 'scanResults', 'menus', 'htmlReadme', 'tags', |
|
'nickname' |
|
); |
|
return $this->render($viewName, $params, $pageTitle); |
|
} |
|
|
|
//显示TA荐首页 |
|
protected function renderTajianIndex() { |
|
$pageTitle = "Ta荐:好用的视频收藏夹,帮你整理不同平台的好视频,轻松分享给朋友!"; |
|
|
|
$this->layout = 'index'; |
|
$viewName = 'tajian'; |
|
$params = compact( |
|
'pageTitle' |
|
); |
|
return $this->render($viewName, $params, $pageTitle); |
|
} |
|
|
|
//获取tag分类 |
|
protected function getTags($dirTree, $noFiles = false) { |
|
$tags = array(); |
|
|
|
$tagDir = null; |
|
$tagSaveDirName = str_replace('/', '', FSC::$app['config']['tajian']['tag_dir']); |
|
foreach($dirTree as $id => $item) { |
|
if (!empty($item['directory']) && $item['directory'] == $tagSaveDirName) { |
|
$tagDir = $item; |
|
break; |
|
} |
|
} |
|
|
|
if (!empty($tagDir) && !empty($tagDir['files'])) { |
|
foreach($tagDir['files'] as $id => $item) { |
|
if (empty($item['realpath'])) { //如果是txt描述文件 |
|
$tag = $this->getTagItem($item, $noFiles); |
|
$tags[$tag['id']] = $tag; |
|
} |
|
} |
|
} |
|
|
|
return $tags; |
|
} |
|
|
|
protected function getTagItem($tagFile, $noFiles = false) { |
|
$tag = array(); |
|
|
|
foreach($tagFile as $name => $item) { |
|
if ($name == 'id') { |
|
$tag['id'] = $item; |
|
}else { |
|
$tag['name'] = $name; |
|
if ($noFiles == false) { |
|
$tag['files'] = explode("\n", $item); |
|
} |
|
} |
|
} |
|
|
|
return $tag; |
|
} |
|
|
|
protected function sortTags($menus_sorted, $tags) { |
|
$sorted_tags = array(); |
|
|
|
foreach($menus_sorted as $tag) { |
|
foreach($tags as $id => $item) { |
|
if ($item['name'] == $tag) { |
|
$sorted_tags[$id] = $item; |
|
} |
|
} |
|
|
|
} |
|
|
|
return $sorted_tags; |
|
} |
|
|
|
//根据tag的filenames获取它们的files数据,数据结构保持跟原file一致 |
|
protected function getTagFiles($tag, $scanResults) { |
|
$files = array(); |
|
if (empty($tag['files'])) {return $files;} |
|
|
|
foreach($tag['files'] as $filename) { |
|
foreach($scanResults as $id => $item) { |
|
if (!empty($item['filename']) && $item['filename'] == $filename && $item['extension'] == 'url') { |
|
$files[$id] = $item; |
|
} |
|
} |
|
} |
|
|
|
return $files; |
|
} |
|
|
|
protected function getNickname($readmeFile) { |
|
$nickname = ''; |
|
|
|
if (!empty($readmeFile['nickname'])) { |
|
$nickname = $readmeFile['nickname']; |
|
}else if (!empty(FSC::$app['config']['multipleUserUriParse']) && !empty(FSC::$app['user_id'])) { |
|
$nickname = FSC::$app['user_id']; |
|
} |
|
|
|
return $nickname; |
|
} |
|
|
|
protected function saveNickname($nickname) { |
|
$done = false; |
|
|
|
try { |
|
$filename = FSC::$app['config']['content_directory'] . 'README_nickname.txt'; |
|
$savedBytes = file_put_contents($filename, $nickname); |
|
if ($savedBytes !== false) { |
|
$done = true; |
|
} |
|
}catch(Exception $e) { |
|
$this->logError('Save nickname failed: ' . $e->getMessage()); |
|
} |
|
|
|
return $done; |
|
} |
|
|
|
//添加新视频 |
|
//增加必须登录才能使用限制 |
|
public function actionNew() { |
|
//判断是否已经登录,自动跳转到自己的添加视频网址 |
|
$loginedUser = Common::getUserFromSession(); |
|
if (empty($loginedUser['username'])) { |
|
return $this->redirect('/site/login/'); |
|
}else if (!empty(FSC::$app['config']['multipleUserUriParse']) && FSC::$app['user_id'] != $loginedUser['username']) { |
|
$shareUrl = "/{$loginedUser['username']}/site/new/"; |
|
return $this->redirect($shareUrl); |
|
} |
|
|
|
|
|
//获取数据 |
|
$menus = array(); //菜单,一级目录 |
|
$htmlReadme = ''; //Readme.md 内容,底部网站详细介绍 |
|
$htmlCateReadme = ''; //当前目录下的Readme.md 内容 |
|
$menus_sorted = array(); //Readme_sort.txt 说明文件内容,一级目录菜单从上到下的排序 |
|
|
|
$scanner = new DirScanner(); |
|
$scanner->setWebRoot(FSC::$app['config']['content_directory']); |
|
$dirTree = $scanner->scan(__DIR__ . '/../../../www/' . FSC::$app['config']['content_directory'], 4); |
|
$scanResults = $scanner->getScanResults(); |
|
|
|
$titles = array(); |
|
$htmlReadme = ''; |
|
$readmeFile = $scanner->getDefaultReadme(); |
|
if (!empty($readmeFile)) { |
|
if (!empty($readmeFile['sort'])) { |
|
$menus_sorted = explode("\n", $readmeFile['sort']); |
|
} |
|
|
|
$titles = $scanner->getMDTitles($readmeFile['id']); |
|
|
|
$Parsedown = new Parsedown(); |
|
$content = file_get_contents($readmeFile['realpath']); |
|
$htmlReadme = $Parsedown->text($content); |
|
$htmlReadme = $scanner->fixMDUrls($readmeFile['realpath'], $htmlReadme); |
|
} |
|
|
|
//获取tags分类 |
|
$tags = $this->getTags($dirTree); |
|
|
|
//排序 |
|
if (!empty($menus_sorted) && !empty($tags)) { |
|
$tags = $this->sortTags($menus_sorted, $tags); |
|
} |
|
|
|
//昵称支持 |
|
$nickname = $this->getNickname($readmeFile); |
|
|
|
$pageTitle = '添加视频收藏 | ' . FSC::$app['config']['site_name']; |
|
$viewName = 'new'; |
|
$params = compact('dirTree', 'scanResults', 'htmlReadme', 'tags', 'nickname'); |
|
return $this->render($viewName, $params, $pageTitle); |
|
} |
|
|
|
//邀请制新用户注册,使用手机号码 + 邀请码 + 短信验证码注册 |
|
public function actionRegister() { |
|
//判断是否已经登录 |
|
$loginedUser = Common::getUserFromSession(); |
|
if (!empty($loginedUser['username'])) { |
|
$shareUrl = "/{$loginedUser['username']}/"; |
|
return $this->redirect($shareUrl); |
|
} |
|
|
|
$pageTitle = "注册Ta荐:一个好用的视频收藏夹,帮你整理不同平台的好视频,还能分享给朋友!"; |
|
|
|
$this->layout = 'index'; |
|
$viewName = 'register'; |
|
$params = compact( |
|
'pageTitle' |
|
); |
|
return $this->render($viewName, $params, $pageTitle); |
|
} |
|
|
|
//用户登陆:使用手机号码 + 短信验证码登录 |
|
public function actionLogin() { |
|
//判断是否已经登录 |
|
$loginedUser = Common::getUserFromSession(); |
|
if (!empty($loginedUser['username'])) { |
|
$shareUrl = "/{$loginedUser['username']}/"; |
|
return $this->redirect($shareUrl); |
|
} |
|
|
|
$pageTitle = "登录Ta荐:一个好用的视频收藏夹,帮你整理不同平台的好视频,还能分享给朋友!"; |
|
|
|
$this->layout = 'index'; |
|
$viewName = 'login'; |
|
$params = compact( |
|
'pageTitle' |
|
); |
|
return $this->render($viewName, $params, $pageTitle); |
|
} |
|
|
|
public function actionLogout() { |
|
$logout = Common::logoutUserFromSession(); |
|
return $this->redirect('/site/login'); |
|
} |
|
|
|
}
|
|
|