主要更新: 1. 按H5网页端完全重构匹配功能(match页面) - 4种匹配类型: 创业合伙/资源对接/导师顾问/团队招募 - 资源对接等类型弹出手机号/微信号输入框 - 去掉重新匹配按钮,改为返回按钮 2. 修复所有卡片对齐和宽度问题 - 目录页附录卡片居中 - 首页阅读进度卡片满宽度 - 我的页面菜单卡片对齐 - 推广中心分享卡片统一宽度 3. 修复目录页图标和文字对齐 - section-icon固定40rpx宽高 - section-title与图标垂直居中 4. 更新真实完整文章标题(62篇) - 从book目录读取真实markdown文件名 - 替换之前的简化标题 5. 新增文章数据API - /api/db/chapters - 获取完整书籍结构 - 支持按ID获取单篇文章内容
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { type NextRequest, NextResponse } from "next/server"
|
|
import fs from "fs"
|
|
import path from "path"
|
|
|
|
export async function GET(request: NextRequest) {
|
|
const searchParams = request.nextUrl.searchParams
|
|
const filePath = searchParams.get("path")
|
|
|
|
if (!filePath) {
|
|
return NextResponse.json({ error: "Path is required" }, { status: 400 })
|
|
}
|
|
|
|
if (filePath.startsWith("custom/")) {
|
|
return NextResponse.json({ content: "", isCustom: true })
|
|
}
|
|
|
|
try {
|
|
const normalizedPath = filePath.replace(/^\/+/, "")
|
|
const fullPath = path.join(process.cwd(), normalizedPath)
|
|
|
|
if (!fs.existsSync(fullPath)) {
|
|
return NextResponse.json({ error: "File not found" }, { status: 404 })
|
|
}
|
|
|
|
const stats = fs.statSync(fullPath)
|
|
if (stats.isDirectory()) {
|
|
return NextResponse.json({ error: "Path is a directory" }, { status: 400 })
|
|
}
|
|
|
|
const content = fs.readFileSync(fullPath, "utf-8")
|
|
return NextResponse.json({ content, isCustom: false })
|
|
} catch (error) {
|
|
console.error("[Karuo] Error reading file:", error)
|
|
return NextResponse.json({ error: "Failed to read file" }, { status: 500 })
|
|
}
|
|
}
|