Sách Giáo Khoa Việt Nam - sachgiaokhoa.org

CodeIgniter 4 website:
- Catalog 999 SGK (lớp 1-12) từ API, lọc theo lớp/môn/NXB, tìm kiếm
- Trang chủ grouped browse (bậc học -> lớp -> môn, ưu tiên môn quan trọng)
- Chi tiết sách: metadata đầy đủ, cover nghệ thuật /thumb/{W}x{H}/
- Đọc online qua gate captcha + countdown, PDF viewer pdf.js
- Download: captcha + token một lần + auto cache-bust version
- Tự đồng bộ catalog/cover khi API thay đổi (refresh:catalog)
- Legal: DMCA, miễn trừ trách nhiệm, điều khoản, bảo mật, liên hệ
This commit is contained in:
sachgiaokhoaorg
2026-08-23 07:05:49 +00:00
commit e6b265db99
494 changed files with 134829 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
<?= $this->extend('layouts/main') ?>
<?= $this->section('content') ?>
<?php $meta = $book['meta']; ?>
<div class="book-detail">
<div>
<div class="detail-cover">
<img src="/media/cover/<?= esc($book['id']) ?>?v=<?= media_version() ?>" alt="Bìa sách <?= esc($book['title']) ?>"
onerror="this.style.display='none'">
</div>
<div class="actions" style="flex-direction:column">
<a class="btn btn-primary" href="/doc/<?= esc($book['id']) ?>">📖 Đọc online</a>
<a class="btn btn-green" href="/doc/<?= esc($book['id']) ?>#tai-xuong">⬇ Tải xuống PDF</a>
</div>
</div>
<div class="detail-info">
<h1><?= esc($book['title']) ?></h1>
<table class="meta-table">
<?php if ($book['grade']): ?>
<tr><th>Lớp</th><td>Lớp <?= esc($book['grade']) ?></td></tr>
<?php endif; ?>
<?php if ($book['subject']): ?>
<tr><th>Môn học</th><td><?= esc($book['subject']) ?></td></tr>
<?php endif; ?>
<tr><th>Nhà xuất bản / Bộ sách</th><td><?= esc($book['publisher']) ?><?= ! empty($meta['publisherFull']) ? ' — ' . esc($meta['publisherFull']) : '' ?></td></tr>
<?php if (! empty($meta['authors'])): ?>
<tr><th>Tác giả / Chủ biên</th><td><?= esc($meta['authors']) ?></td></tr>
<?php endif; ?>
<?php if (! empty($meta['pages'])): ?>
<tr><th>Số trang</th><td><?= (int) $meta['pages'] ?> trang</td></tr>
<?php endif; ?>
<?php if (! empty($meta['sizeMB'])): ?>
<tr><th>Dung lượng</th><td><?= number_format((float) $meta['sizeMB'], 2) ?> MB</td></tr>
<?php endif; ?>
<?php if (! empty($meta['isbn'])): ?>
<tr><th>ISBN</th><td><?= esc($meta['isbn']) ?></td></tr>
<?php endif; ?>
<?php if (! empty($meta['price'])): ?>
<tr><th>Giá bìa</th><td><?= esc($meta['price']) ?></td></tr>
<?php endif; ?>
<?php if (! empty($meta['pdfVersion'])): ?>
<tr><th>Phiên bản PDF</th><td>PDF <?= esc($meta['pdfVersion']) ?></td></tr>
<?php endif; ?>
<?php if (! empty($meta['creationDate'])): ?>
<tr><th>Ngày tạo tài liệu</th><td><?= esc($meta['creationDate']) ?></td></tr>
<?php endif; ?>
<tr><th>Lượt tải</th><td><?= number_format((int) $downloads) ?></td></tr>
</table>
<div class="countdown-note">
⚖️ <strong>Lưu ý bản quyền:</strong> Tài liệu này thuộc bản quyền của Nhà xuất bản và Bộ Giáo dục &amp; Đào tạo.
Nội dung chỉ được hiển thị phục vụ mục đích tra cứu, tham khảo. Vui lòng mua sách giấy chính hãng để hỗ trợ tác giả và nhà xuất bản.
Báo cáo vi phạm <a href="/lien-he">tại đây</a>.
</div>
</div>
</div>
<?= $this->endSection() ?>