loadCategories(); $locale = Cookie::get('language') ?? 'en'; // 获取一级分类和对应的书籍 $categoryData = []; foreach ($categories as $category) { if ($category['level'] == 1) { $children = $this->subCategories($categories, $category['id']); $categoryData[] = [ 'category' => $category, 'children' => $children, ]; } } $categoryData = $this->termService->attachLocalName($categoryData, $locale); $recentBooks = $this->getUpdateBooks(); return view('library.index', compact( 'categoryData', 'categories', 'recentBooks' )); } // ------------------------------------------------------------------------- // 从 uid / id 字符串中提取一个稳定的整数,用于色池取余 // ------------------------------------------------------------------------- private function colorIndex(string $uid): int { return hexdec(substr(str_replace('-', '', $uid), 0, 4)) % 255; } private function subCategories($categories, int $id) { return array_filter($categories, function ($cat) use ($id) { return $cat['parent_id'] == $id; }); } private function getUpdateBooks() { $books = ProgressChapter::with('channel.owner') ->leftJoin('pali_texts', function ($join) { $join->on('progress_chapters.book', '=', 'pali_texts.book') ->on('progress_chapters.para', '=', 'pali_texts.paragraph'); }) ->whereHas('channel', function ($query) { $query->where('status', 30); }) ->where('progress', '>', config('mint.library.list_min_progress')) ->take(10) ->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), 'updated_at' => $book->updated_at, 'is_new' => false, //FIXME 'category' => '经藏', //FIXME ]; }); 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; } }