|
|
@@ -0,0 +1,325 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace App\Http\Controllers\Library;
|
|
|
+
|
|
|
+use App\Http\Controllers\Controller;
|
|
|
+
|
|
|
+use Illuminate\Http\Request;
|
|
|
+
|
|
|
+use Illuminate\Support\Facades\File;
|
|
|
+
|
|
|
+use Illuminate\Support\Facades\DB;
|
|
|
+use App\Models\PaliText;
|
|
|
+use App\Models\ProgressChapter;
|
|
|
+use App\Models\Tag;
|
|
|
+use App\Models\TagMap;
|
|
|
+
|
|
|
+
|
|
|
+class TipitakaController extends Controller
|
|
|
+{
|
|
|
+ // 封面渐变色池:uid 首字节取余循环,保证同一文集颜色稳定
|
|
|
+ private array $coverGradients = [
|
|
|
+ 'linear-gradient(160deg, #2d1020, #ae6b8b)',
|
|
|
+ 'linear-gradient(160deg, #1a2d10,rgba(75, 114, 36, 0.61))',
|
|
|
+ 'linear-gradient(160deg, #0d1f3c,rgb(55, 98, 150))',
|
|
|
+ 'linear-gradient(160deg, #2d1020,rgb(151, 69, 94))',
|
|
|
+ 'linear-gradient(160deg, #1a1a2d,rgb(76, 68, 146))',
|
|
|
+ 'linear-gradient(160deg, #1a2820,rgb(55, 124, 99))',
|
|
|
+ ];
|
|
|
+ // -------------------------------------------------------------------------
|
|
|
+ // 从 uid / id 字符串中提取一个稳定的整数,用于色池取余
|
|
|
+ // -------------------------------------------------------------------------
|
|
|
+ private function colorIndex(string $uid): int
|
|
|
+ {
|
|
|
+ return hexdec(substr(str_replace('-', '', $uid), 0, 4)) % 255;
|
|
|
+ }
|
|
|
+ protected static int $nextId = 1;
|
|
|
+
|
|
|
+
|
|
|
+ // app/Http/Controllers/Library/CategoryController.php
|
|
|
+ // category() 方法修改版
|
|
|
+ // 变更:
|
|
|
+ // 1. $id 改为可选参数,无参数时显示顶级分类(首页复用)
|
|
|
+ // 2. 新增 $filters 过滤参数(type / lang / author / sort)
|
|
|
+ // 3. 新增右边栏数据:$recommended / $activeAuthors
|
|
|
+ // 4. 新增 $filterOptions(过滤器选项 + 计数)
|
|
|
+ // 5. 新增 $totalCount
|
|
|
+
|
|
|
+ public function index(Request $request, ?int $id = null)
|
|
|
+ {
|
|
|
+
|
|
|
+ $categories = $this->loadCategories();
|
|
|
+
|
|
|
+ // ── 当前分类 ──────────────────────────────────────────
|
|
|
+ if ($id) {
|
|
|
+ $currentCategory = collect($categories)->firstWhere('id', $id);
|
|
|
+ if (!$currentCategory) {
|
|
|
+ abort(404);
|
|
|
+ }
|
|
|
+ $breadcrumbs = $this->getBreadcrumbs($currentCategory, $categories);
|
|
|
+ } else {
|
|
|
+ // 首页:虚拟顶级分类
|
|
|
+ $currentCategory = ['id' => null, 'name' => '三藏'];
|
|
|
+ $breadcrumbs = [];
|
|
|
+ }
|
|
|
+
|
|
|
+ // ── 子分类 ─────────────────────────────────────────────
|
|
|
+ $subCategories = array_values(array_filter(
|
|
|
+ $categories,
|
|
|
+ fn($cat) => $cat['parent_id'] == $id
|
|
|
+ ));
|
|
|
+
|
|
|
+ // ── 过滤参数 ────────────────────────────────────────────
|
|
|
+ $selectedType = request('type', 'all');
|
|
|
+ $selectedLang = request('lang', 'all');
|
|
|
+ $selectedAuthor = request('author', 'all');
|
|
|
+ $selectedSort = request('sort', 'updated_at');
|
|
|
+
|
|
|
+ $selected = [
|
|
|
+ 'type' => $selectedType,
|
|
|
+ 'lang' => $selectedLang,
|
|
|
+ 'author' => $selectedAuthor,
|
|
|
+ 'sort' => $selectedSort,
|
|
|
+ ];
|
|
|
+
|
|
|
+ // ── 书籍列表(过滤+排序,真实实现替换此处) ──────────────
|
|
|
+ $categoryBooks = $this->getBooks($categories, $id, $selected);
|
|
|
+ // TODO: 将 $selected 传入 getBooks() 做实际过滤
|
|
|
+
|
|
|
+ $totalCount = count($categoryBooks);
|
|
|
+
|
|
|
+ // ── 过滤器选项(mock,真实实现从书籍数据聚合) ────────────
|
|
|
+ $filterOptions = [
|
|
|
+ 'types' => [
|
|
|
+ ['value' => 'all', 'label' => '全部', 'count' => $totalCount],
|
|
|
+ ['value' => 'original', 'label' => '原文', 'count' => 0],
|
|
|
+ ['value' => 'translation', 'label' => '译文', 'count' => 0],
|
|
|
+ ['value' => 'nissaya', 'label' => 'Nissaya', 'count' => 0],
|
|
|
+ ],
|
|
|
+ 'languages' => [
|
|
|
+ ['value' => 'all', 'label' => '全部', 'count' => $totalCount],
|
|
|
+ ['value' => 'zh-Hans', 'label' => '简体中文', 'count' => 0],
|
|
|
+ ['value' => 'zh-Hant', 'label' => '繁体中文', 'count' => 0],
|
|
|
+ ['value' => 'pi', 'label' => '巴利语', 'count' => 0],
|
|
|
+ ['value' => 'en', 'label' => '英语', 'count' => 0],
|
|
|
+ ],
|
|
|
+ 'authors' => $this->getAuthorOptions($categoryBooks),
|
|
|
+ ];
|
|
|
+
|
|
|
+ // ── 右边栏:本周推荐(mock) ────────────────────────────
|
|
|
+ $recommended = [
|
|
|
+ ['id' => 1, 'title' => '相应部·因缘篇', 'category' => '经藏'],
|
|
|
+ ['id' => 2, 'title' => '法句经', 'category' => '经藏'],
|
|
|
+ ['id' => 3, 'title' => '清净道论', 'category' => '注释'],
|
|
|
+ ['id' => 4, 'title' => '律藏·波罗夷', 'category' => '律藏'],
|
|
|
+ ['id' => 5, 'title' => '长部·梵网经', 'category' => '经藏'],
|
|
|
+ ];
|
|
|
+
|
|
|
+ // ── 右边栏:活跃译者(mock) ────────────────────────────
|
|
|
+ $activeAuthors = [
|
|
|
+ [
|
|
|
+ 'name' => 'Bhikkhu Bodhi',
|
|
|
+ 'avatar' => null,
|
|
|
+ 'color' => '#2d5a8e',
|
|
|
+ 'initials' => 'BB',
|
|
|
+ 'count' => 24,
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ 'name' => 'Bhikkhu Sujato',
|
|
|
+ 'avatar' => null,
|
|
|
+ 'color' => '#5a2d8e',
|
|
|
+ 'initials' => 'BS',
|
|
|
+ 'count' => 18,
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ 'name' => 'Buddhaghosa',
|
|
|
+ 'avatar' => null,
|
|
|
+ 'color' => '#8e5a2d',
|
|
|
+ 'initials' => 'BG',
|
|
|
+ 'count' => 12,
|
|
|
+ ],
|
|
|
+ [
|
|
|
+ 'name' => 'Bhikkhu Brahmali',
|
|
|
+ 'avatar' => null,
|
|
|
+ 'color' => '#2d8e5a',
|
|
|
+ 'initials' => 'BR',
|
|
|
+ 'count' => 9,
|
|
|
+ ],
|
|
|
+ ];
|
|
|
+
|
|
|
+ $types = $this->types();
|
|
|
+
|
|
|
+ return view('library.tipitaka.category', compact(
|
|
|
+ 'currentCategory',
|
|
|
+ 'subCategories',
|
|
|
+ 'categoryBooks',
|
|
|
+ 'breadcrumbs',
|
|
|
+ 'types',
|
|
|
+ 'selected',
|
|
|
+ 'filterOptions',
|
|
|
+ 'totalCount',
|
|
|
+ 'recommended',
|
|
|
+ 'activeAuthors',
|
|
|
+ ));
|
|
|
+ }
|
|
|
+
|
|
|
+ // ── 辅助:从书籍列表聚合作者选项(mock,真实实现替换) ─────────
|
|
|
+ private function getAuthorOptions(array $books): array
|
|
|
+ {
|
|
|
+ // TODO: 从 $books 聚合真实作者列表
|
|
|
+ return [
|
|
|
+ ['value' => 'all', 'label' => '全部作者', 'count' => count($books)],
|
|
|
+ ['value' => 'bhikkhu-bodhi', 'label' => 'Bhikkhu Bodhi', 'count' => 0],
|
|
|
+ ['value' => 'bhikkhu-sujato', 'label' => 'Bhikkhu Sujato', 'count' => 0],
|
|
|
+ ['value' => 'buddhaghosa', 'label' => 'Buddhaghosa', 'count' => 0],
|
|
|
+ ['value' => 'bhikkhu-brahmali', 'label' => 'Bhikkhu Brahmali', 'count' => 0],
|
|
|
+ ];
|
|
|
+ }
|
|
|
+
|
|
|
+ private function types()
|
|
|
+ {
|
|
|
+ return [
|
|
|
+ ['id' => '1', 'name' => 'sutta'],
|
|
|
+ ['id' => '48', 'name' => 'vinaya'],
|
|
|
+ ['id' => '66', 'name' => 'abhidhamma'],
|
|
|
+ ['id' => '82', 'name' => 'añña']
|
|
|
+ ];
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ private function subCategories($categories, int $id)
|
|
|
+ {
|
|
|
+ return array_filter($categories, function ($cat) use ($id) {
|
|
|
+ return $cat['parent_id'] == $id;
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ private function getBooks($categories, $id, $filters)
|
|
|
+ {
|
|
|
+
|
|
|
+ if ($id) {
|
|
|
+ $currentCategory = collect($categories)->firstWhere('id', $id);
|
|
|
+ if (!$currentCategory) {
|
|
|
+ abort(404);
|
|
|
+ }
|
|
|
+ // 标签查章节
|
|
|
+ $tagNames = $currentCategory['tag'];
|
|
|
+ $booksChapter = PaliText::withAllTags($tagNames)
|
|
|
+ ->where('level', 1)->get();
|
|
|
+ } else {
|
|
|
+ $booksChapter = PaliText::select(['book', 'paragraph'])
|
|
|
+ ->where('level', 1)
|
|
|
+ ->get();
|
|
|
+ }
|
|
|
+
|
|
|
+ $chapters = [];
|
|
|
+ foreach ($booksChapter as $key => $value) {
|
|
|
+ $chapters[] = [$value->book, $value->paragraph];
|
|
|
+ }
|
|
|
+ $books = ProgressChapter::with('channel.owner')
|
|
|
+ ->whereHas('channel', function ($query) use ($filters) {
|
|
|
+ $query->where('status', 30);
|
|
|
+
|
|
|
+ if ($filters['type'] !== 'all') {
|
|
|
+ $query->where('type', $filters['type']);
|
|
|
+ }
|
|
|
+
|
|
|
+ if ($filters['lang'] !== 'all') {
|
|
|
+ $query->where('lang', $filters['lang']);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ ->where('progress', '>', config('mint.library.list_min_progress'))
|
|
|
+ ->whereIns(['book', 'para'], $chapters)
|
|
|
+ ->take(100)
|
|
|
+ ->get();
|
|
|
+ return $this->getBooksInfo($books);
|
|
|
+ }
|
|
|
+
|
|
|
+ private function getBooksInfo($books,)
|
|
|
+ {
|
|
|
+ $pali = PaliText::where('level', 1)->get();
|
|
|
+ // 获取该分类下的书籍
|
|
|
+ $categoryBooks = [];
|
|
|
+ $books->each(function ($book) use (&$categoryBooks, $pali) {
|
|
|
+ $title = $book->title;
|
|
|
+ if (empty($title)) {
|
|
|
+ $title = $pali->firstWhere('book', $book->book)->toc;
|
|
|
+ }
|
|
|
+ //Log::debug('getBooksInfo', ['book' => $book->book, 'paragraph' => $book->para]);
|
|
|
+ $pcd_book_id = $pali->first(function ($item) use ($book) {
|
|
|
+ return $item->book == $book->book
|
|
|
+ && $item->paragraph == $book->para;
|
|
|
+ })?->pcd_book_id;
|
|
|
+
|
|
|
+ $coverFile = "/assets/images/cover/zh-hans/1/{$pcd_book_id}.png";
|
|
|
+ if (File::exists(public_path($coverFile))) {
|
|
|
+ $coverUrl = $coverFile;
|
|
|
+ } else {
|
|
|
+ $coverUrl = null;
|
|
|
+ }
|
|
|
+ $colorIdx = $this->colorIndex($book->uid);
|
|
|
+
|
|
|
+ $categoryBooks[] = [
|
|
|
+ "id" => $book->uid,
|
|
|
+ "title" => $title,
|
|
|
+ "author" => $book->channel->name,
|
|
|
+ "publisher" => $book->channel->owner,
|
|
|
+ "type" => __('labels.' . $book->channel->type),
|
|
|
+ "cover" => $coverUrl,
|
|
|
+ 'cover_gradient' => $this->coverGradients[$colorIdx % count($this->coverGradients)],
|
|
|
+ "description" => $book->summary ?? "比库戒律的详细说明",
|
|
|
+ "language" => __('language.' . $book->channel->lang),
|
|
|
+ ];
|
|
|
+ });
|
|
|
+ return $categoryBooks;
|
|
|
+ }
|
|
|
+ private function loadCategories()
|
|
|
+ {
|
|
|
+ $json = file_get_contents(public_path("data/category/default.json"));
|
|
|
+ $tree = json_decode($json, true);
|
|
|
+ $flat = self::flattenWithIds($tree);
|
|
|
+ return $flat;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static function flattenWithIds(array $tree, int $parentId = 0, int $level = 1): array
|
|
|
+ {
|
|
|
+
|
|
|
+ $flat = [];
|
|
|
+
|
|
|
+ foreach ($tree as $node) {
|
|
|
+ $currentId = self::$nextId++;
|
|
|
+
|
|
|
+ $item = [
|
|
|
+ 'id' => $currentId,
|
|
|
+ 'parent_id' => $parentId,
|
|
|
+ 'name' => $node['name'] ?? null,
|
|
|
+ 'tag' => $node['tag'] ?? [],
|
|
|
+ "description" => "佛教戒律经典",
|
|
|
+ 'level' => $level,
|
|
|
+ ];
|
|
|
+
|
|
|
+ $flat[] = $item;
|
|
|
+
|
|
|
+ if (isset($node['children']) && is_array($node['children'])) {
|
|
|
+ $childrenLevel = $level + 1;
|
|
|
+ $flat = array_merge($flat, self::flattenWithIds($node['children'], $currentId, $childrenLevel));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return $flat;
|
|
|
+ }
|
|
|
+
|
|
|
+ private function getBreadcrumbs($category, $categories)
|
|
|
+ {
|
|
|
+ $breadcrumbs = [];
|
|
|
+ $current = $category;
|
|
|
+
|
|
|
+ while ($current) {
|
|
|
+ array_unshift($breadcrumbs, $current);
|
|
|
+ $current = collect($categories)->firstWhere('id', $current['parent_id']);
|
|
|
+ }
|
|
|
+
|
|
|
+ return $breadcrumbs;
|
|
|
+ }
|
|
|
+}
|