debug
This commit is contained in:
@@ -13,6 +13,7 @@ use app\model\NovelModel;
|
||||
use storage\StorageCore;
|
||||
use think\facade\View;
|
||||
use app\Request;
|
||||
use app\task\crawler\zw630\page\ChapterPage;
|
||||
use template\page\CusteomPage02;
|
||||
|
||||
class Novel extends BaseController
|
||||
@@ -330,10 +331,22 @@ class Novel extends BaseController
|
||||
// 小说详情
|
||||
$arrNovel = $NovelModel->getNovelInfo($intNId);
|
||||
|
||||
// 分品拼音
|
||||
$arrNovel['category_pinyin'] = CategoryModel::getPinYinByZh($arrNovel['og_novel_category']);
|
||||
|
||||
|
||||
// 最后章节
|
||||
$ChapterModel = new ChapterModel;
|
||||
$arrLatestChapter = $ChapterModel->getLatestChapter($intNId);
|
||||
|
||||
// 要点
|
||||
$strFocus = strip_tags($arrLatestChapter['content']);
|
||||
$intCount = mb_strlen($strFocus);
|
||||
if ($intCount > 300) {
|
||||
$intPos = mt_rand(0, $intCount - 300);
|
||||
$strFocus = mb_substr($strFocus, $intPos, 300);
|
||||
}
|
||||
|
||||
// 最近五个章节
|
||||
$arrChapter = $ChapterModel->getChapterAll([
|
||||
'n_id' => $intNId,
|
||||
@@ -357,7 +370,6 @@ class Novel extends BaseController
|
||||
ConverterMovel::setVal("strNovelName", $strNovel);
|
||||
|
||||
|
||||
|
||||
// 模拟数据-随机推荐数据10条
|
||||
$arrRecommendNovel = [
|
||||
['id' => 1, 'name' => '小说1', 'author' => '作者1'],
|
||||
@@ -410,10 +422,22 @@ class Novel extends BaseController
|
||||
public function getNovelNewsChapter(Request $Request)
|
||||
{
|
||||
|
||||
$boolIsMobile = $Request->param('boolIsMobile');
|
||||
|
||||
$intNId = $Request->param('n_id');
|
||||
|
||||
// 小说详情
|
||||
$NovelModel = new NovelModel;
|
||||
$arrNovel = $NovelModel->getNovelInfo($intNId);
|
||||
|
||||
// 最新章节
|
||||
$ChapterModel = new ChapterModel;
|
||||
$arrChapter = $ChapterModel->getLatestChapter($intNId);
|
||||
|
||||
// 上一章节和下一章节
|
||||
$arrPreChapter = $ChapterModel->getPreChapter($arrChapter['n_id'], $arrChapter['c_sort_num'], $arrChapter['c_page']);
|
||||
$arrNextChapter = $ChapterModel->getNextChapter($arrChapter['n_id'], $arrChapter['c_sort_num'], $arrChapter['c_page']);
|
||||
|
||||
$boolIsMobile = $Request->param('boolIsMobile');
|
||||
|
||||
// 模拟数据-随机推荐数据10条
|
||||
$arrNewsNovel = [
|
||||
|
||||
@@ -70,4 +70,10 @@ class CategoryModel extends MongoModel
|
||||
{
|
||||
return self::$arrWomen;
|
||||
}
|
||||
|
||||
static public function getPinYinByZh(string $strZh)
|
||||
{
|
||||
$intKey = array_search($strZh, self::$arrCategory);
|
||||
return self::$arrCategoryPinYin[$intKey];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -58,7 +58,6 @@ class ChapterModel extends MongoModel
|
||||
$arrChapter['content'] = StorageCore::getInstance()->read($arrChapter['c_content_path']);
|
||||
}
|
||||
|
||||
|
||||
return $arrChapter;
|
||||
}
|
||||
|
||||
@@ -78,8 +77,6 @@ class ChapterModel extends MongoModel
|
||||
|
||||
$arrOptions['limit'] = $intCount;
|
||||
|
||||
$arrFilter = [];
|
||||
|
||||
$Cursor = $this->getCol()->find($arrFilter, $arrOptions);
|
||||
|
||||
$arrResult = iterator_to_array($Cursor);
|
||||
@@ -95,4 +92,74 @@ class ChapterModel extends MongoModel
|
||||
|
||||
return $arrResult;
|
||||
}
|
||||
|
||||
/**
|
||||
* Undocumented function
|
||||
*
|
||||
* @param integer $intNId
|
||||
* @param integer $intCSortNum
|
||||
* @param integer $intCPage
|
||||
* @return null|array
|
||||
*/
|
||||
public function getPreChapter(int $intNId, int $intCSortNum, int $intCPage): null|array
|
||||
{
|
||||
$arrFilter = [
|
||||
'$and' => [
|
||||
[
|
||||
'$or' => [
|
||||
['c_sort_num' => ['$lt' => $intCSortNum]],
|
||||
[
|
||||
'$and' => [
|
||||
['c_sort_num' => ['$eq' => $intCSortNum]],
|
||||
['c_page' => ['$lt' => $intCPage]]
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
['n_id' => $intNId]
|
||||
]
|
||||
];
|
||||
|
||||
|
||||
$arrSort = [
|
||||
'c_sort_num' => -1,
|
||||
'c_page' => -1,
|
||||
];
|
||||
return $this->getChapterAll($arrFilter, 1, $arrSort);
|
||||
}
|
||||
|
||||
/**
|
||||
* Undocumented function
|
||||
*
|
||||
* @param integer $intNId
|
||||
* @param integer $intCSortNum
|
||||
* @param integer $intCPage
|
||||
* @return null|array
|
||||
*/
|
||||
public function getNextChapter(int $intNId, int $intCSortNum, int $intCPage): null|array
|
||||
{
|
||||
$arrFilter = [
|
||||
'$and' => [
|
||||
[
|
||||
'$or' => [
|
||||
['c_sort_num' => ['$gt' => $intCSortNum]],
|
||||
[
|
||||
'$and' => [
|
||||
['c_sort_num' => ['$eq' => $intCSortNum]],
|
||||
['c_page' => ['$gt' => $intCPage]]
|
||||
]
|
||||
]
|
||||
]
|
||||
],
|
||||
['n_id' => $intNId]
|
||||
]
|
||||
];
|
||||
|
||||
|
||||
$arrSort = [
|
||||
'c_sort_num' => 1,
|
||||
'c_page' => 1,
|
||||
];
|
||||
return $this->getChapterAll($arrFilter, 1, $arrSort);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -102,12 +102,13 @@ class NovelModel extends MongoModel
|
||||
foreach ($arrResult as &$arrItem) {
|
||||
|
||||
applyToKeys($arrItem, ['created_at', 'updated_at'], 'formatMongoDate');
|
||||
|
||||
}
|
||||
|
||||
return $arrResult;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Undocumented function
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user