3 Commits

Author SHA1 Message Date
imsyy
d5217c3dff 🔧 build: 修正类型错误 2024-06-12 17:37:37 +08:00
imsyy
e1beb5b534 🐞 fix: 修复 hellogithub #60 2024-06-11 09:19:41 +08:00
imsyy
14bc5a1dce feat: 支持 Vercel 部署 2024-06-07 16:03:22 +08:00
12 changed files with 84 additions and 39 deletions

View File

@@ -1,11 +1,14 @@
FROM node:20-alpine AS base FROM node:20-alpine AS base
ENV NODE_ENV=docker
# 安装 Puppeteer 所需的依赖库 # 安装 Puppeteer 所需的依赖库
RUN apk add --no-cache chromium nss freetype harfbuzz ca-certificates libc6-compat RUN apk add libc6-compat
# RUN apk add chromium nss freetype harfbuzz ca-certificates
# 配置 Chromium # 配置 Chromium
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true # ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser # ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
FROM base AS builder FROM base AS builder

View File

@@ -52,8 +52,8 @@
| 稀土掘金 | 热榜 | juejin | 🟢 | | 稀土掘金 | 热榜 | juejin | 🟢 |
| 腾讯新闻 | 热点榜 | qq-news | 🟢 | | 腾讯新闻 | 热点榜 | qq-news | 🟢 |
| 网易新闻 | 热点榜 | netease-news | 🟢 | | 网易新闻 | 热点榜 | netease-news | 🟢 |
| 吾爱破解 | 榜单 | 52pojie | 🟢 | | 吾爱破解 | 榜单 | 52pojie | |
| 全球主机交流 | 榜单 | hostloc | 🟢 | | 全球主机交流 | 榜单 | hostloc | |
| 虎嗅 | 24小时 | huxiu | 🟢 | | 虎嗅 | 24小时 | huxiu | 🟢 |
| 爱范儿 | 快讯 | ifanr | 🟢 | | 爱范儿 | 快讯 | ifanr | 🟢 |
| 英雄联盟 | 更新公告 | lol | 🟢 | | 英雄联盟 | 更新公告 | lol | 🟢 |
@@ -148,6 +148,12 @@ npm run start
成功启动后程序会在控制台输出可访问的地址 成功启动后程序会在控制台输出可访问的地址
### Vercel 部署
本项目支持通过 `Vercel` 进行一键部署,点击下方按钮或前往 [项目仓库](https://github.com/imsyy/DailyHotApi-Vercel) 进行手动部署
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/imsyys-projects/clone?repository-url=https%3A%2F%2Fgithub.com%2Fimsyy%2FDailyHotApi-Vercel)
### Railway 部署 ### Railway 部署
本项目支持使用 [Railway](https://railway.app/) 一键部署,请先将本项目 fork 到您的仓库中,即可使用一键部署。 本项目支持使用 [Railway](https://railway.app/) 一键部署,请先将本项目 fork 到您的仓库中,即可使用一键部署。
@@ -156,12 +162,6 @@ npm run start
本项目支持使用 [Zeabur](https://zeabur.com/) 一键部署,请先将本项目 fork 到您的仓库中,即可使用一键部署。 本项目支持使用 [Zeabur](https://zeabur.com/) 一键部署,请先将本项目 fork 到您的仓库中,即可使用一键部署。
### Vercel 部署
> 🚧 Vercel 部署支持正在修复中
若您目前仅能通过 `Vercel` 进行部署,那么请暂时不要使用最新版本
## ⚠️ 须知 ## ⚠️ 须知
- 本项目为了避免频繁请求官方数据,默认对数据做了缓存处理,默认为 `60` 分钟,如需更改,请自行修改配置 - 本项目为了避免频繁请求官方数据,默认对数据做了缓存处理,默认为 `60` 分钟,如需更改,请自行修改配置

View File

@@ -1,6 +1,6 @@
{ {
"name": "dailyhot-api", "name": "dailyhot-api",
"version": "2.0.0-rc.5", "version": "2.0.1",
"description": "An Api on Today's Hot list", "description": "An Api on Today's Hot list",
"keywords": [ "keywords": [
"API", "API",
@@ -31,8 +31,8 @@
"scripts": { "scripts": {
"format": "prettier --write .", "format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix", "lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"dev": "tsx watch --no-cache src/index.ts", "dev": "cross-env NODE_ENV=development tsx watch --no-cache src/index.ts",
"dev:cache": "tsx watch src/index.ts", "dev:cache": "cross-env NODE_ENV=development tsx watch src/index.ts",
"build": "tsc --project tsconfig.json", "build": "tsc --project tsconfig.json",
"start": "tsx src/index.ts" "start": "tsx src/index.ts"
}, },
@@ -56,6 +56,7 @@
"@types/node": "^20.14.1", "@types/node": "^20.14.1",
"@typescript-eslint/eslint-plugin": "^7.12.0", "@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0", "@typescript-eslint/parser": "^7.12.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"prettier": "^3.3.0", "prettier": "^3.3.0",
"tsx": "^3.14.0", "tsx": "^3.14.0",

12
pnpm-lock.yaml generated
View File

@@ -57,6 +57,9 @@ importers:
'@typescript-eslint/parser': '@typescript-eslint/parser':
specifier: ^7.12.0 specifier: ^7.12.0
version: 7.12.0(eslint@8.57.0)(typescript@5.4.5) version: 7.12.0(eslint@8.57.0)(typescript@5.4.5)
cross-env:
specifier: ^7.0.3
version: 7.0.3
eslint: eslint:
specifier: ^8.57.0 specifier: ^8.57.0
version: 8.57.0 version: 8.57.0
@@ -518,6 +521,11 @@ packages:
typescript: typescript:
optional: true optional: true
cross-env@7.0.3:
resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==}
engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
hasBin: true
cross-spawn@7.0.3: cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'} engines: {node: '>= 8'}
@@ -1808,6 +1816,10 @@ snapshots:
optionalDependencies: optionalDependencies:
typescript: 5.4.5 typescript: 5.4.5
cross-env@7.0.3:
dependencies:
cross-spawn: 7.0.3
cross-spawn@7.0.3: cross-spawn@7.0.3:
dependencies: dependencies:
path-key: 3.1.1 path-key: 3.1.1

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -4,7 +4,7 @@ import logger from "./utils/logger.js";
import app from "./app.js"; import app from "./app.js";
// 启动服务器 // 启动服务器
const serveHotApi = (port: number = config.PORT) => { const serveHotApi: (port?: number) => void = (port: number = config.PORT) => {
try { try {
const apiServer = serve({ const apiServer = serve({
fetch: app.fetch, fetch: app.fetch,
@@ -18,6 +18,8 @@ const serveHotApi = (port: number = config.PORT) => {
} }
}; };
serveHotApi(); if (process.env.NODE_ENV === "development" || process.env.NODE_ENV === "docker") {
serveHotApi(config.PORT);
}
export default serveHotApi; export default serveHotApi;

View File

@@ -14,6 +14,9 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url));
let allRoutePath: Array<string> = []; let allRoutePath: Array<string> = [];
const routersDirName: string = "routes"; const routersDirName: string = "routes";
// 排除路由
const excludeRoutes: Array<string> = ["52pojie", "hostloc"];
// 建立完整目录路径 // 建立完整目录路径
const routersDirPath = path.join(__dirname, routersDirName); const routersDirPath = path.join(__dirname, routersDirName);
@@ -47,6 +50,10 @@ if (fs.existsSync(routersDirPath) && fs.statSync(routersDirPath).isDirectory())
// 注册全部路由 // 注册全部路由
for (let index = 0; index < allRoutePath.length; index++) { for (let index = 0; index < allRoutePath.length; index++) {
const router = allRoutePath[index]; const router = allRoutePath[index];
// 是否处于排除名单
if (excludeRoutes.includes(router)) {
continue;
}
const listApp = app.basePath(`/${router}`); const listApp = app.basePath(`/${router}`);
// 返回榜单 // 返回榜单
listApp.get("/", async (c) => { listApp.get("/", async (c) => {
@@ -85,6 +92,16 @@ for (let index = 0; index < allRoutePath.length; index++) {
...listData, ...listData,
}); });
}); });
// 请求方式错误
listApp.all("*", (c) =>
c.json(
{
code: 405,
message: "Method Not Allowed",
},
405,
),
);
} }
// 获取全部路由 // 获取全部路由
@@ -93,10 +110,20 @@ app.get("/all", (c) =>
{ {
code: 200, code: 200,
count: allRoutePath.length, count: allRoutePath.length,
routes: allRoutePath.map((path) => ({ routes: allRoutePath.map((path) => {
name: path, // 是否处于排除名单
path: `/${path}`, if (excludeRoutes.includes(path)) {
})), return {
name: path,
path: null,
message: "该接口暂时下线",
};
}
return {
name: path,
path: `/${path}`,
};
}),
}, },
200, 200,
), ),

View File

@@ -4,7 +4,7 @@ import { get } from "../utils/getData.js";
import getTime from "../utils/getTime.js"; import getTime from "../utils/getTime.js";
export const handleRoute = async (c: ListContext, noCache: boolean) => { export const handleRoute = async (c: ListContext, noCache: boolean) => {
const sort = c.req.query("sort") || "hot"; const sort = c.req.query("sort") || "featured";
const { fromCache, data, updateTime } = await getList({ sort }, noCache); const { fromCache, data, updateTime } = await getList({ sort }, noCache);
const routeData: RouterData = { const routeData: RouterData = {
name: "hellogithub", name: "hellogithub",
@@ -15,8 +15,8 @@ export const handleRoute = async (c: ListContext, noCache: boolean) => {
sort: { sort: {
name: "排行榜分区", name: "排行榜分区",
type: { type: {
hot: "热门", featured: "精选",
last: "最新", all: "全部",
}, },
}, },
}, },

5
src/types.d.ts vendored
View File

@@ -62,7 +62,4 @@ export type Web = {
// 参数类型 // 参数类型
export type Options = { export type Options = {
[key: string]: string | undefined; [key: string]: string | undefined;
}; };
// serveHotApi
export default function serveHotApi(port?: number): unknown;

View File

@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import crypto from "crypto"; import crypto from "crypto";
/** /**
@@ -13,7 +14,7 @@ const getWereadID = (bookId: string) => {
// 取哈希结果的前三个字符作为初始值 // 取哈希结果的前三个字符作为初始值
let strSub = str.substring(0, 3); let strSub = str.substring(0, 3);
// 判断书籍 ID 的类型并进行转换 // 判断书籍 ID 的类型并进行转换
let fa; let fa: (string | any[])[];
if (/^\d*$/.test(bookId)) { if (/^\d*$/.test(bookId)) {
// 如果书籍 ID 只包含数字,则将其拆分成长度为 9 的子字符串,并转换为十六进制表示 // 如果书籍 ID 只包含数字,则将其拆分成长度为 9 的子字符串,并转换为十六进制表示
const chunks = []; const chunks = [];

File diff suppressed because one or more lines are too long

View File

@@ -3,11 +3,13 @@
"target": "ESNext", "target": "ESNext",
"module": "ESNext", "module": "ESNext",
"moduleResolution": "Bundler", "moduleResolution": "Bundler",
"declaration": true,
"declarationMap": true,
"strict": false, "strict": false,
"types": ["node"], "types": ["node"],
"jsx": "react-jsx", "jsx": "react-jsx",
"jsxImportSource": "hono/jsx", "jsxImportSource": "hono/jsx",
"outDir": "./dist" "outDir": "./dist"
}, },
"exclude": ["node_modules", "*.test.*"] "exclude": ["node_modules", "*.test.*", "./dist/**/*"]
} }