feat: 新增接口 & 更新说明
This commit is contained in:
parent
e079e2efb5
commit
8cffc6c701
38
README.md
38
README.md
@ -16,24 +16,26 @@
|
|||||||
> 🟠 可能失效
|
> 🟠 可能失效
|
||||||
> 🔴 无法使用
|
> 🔴 无法使用
|
||||||
|
|
||||||
| **站点** | **类别** | **调用名称** | **状态** |
|
| **站点** | **类别** | **调用名称** | **状态** |
|
||||||
| ------------ | -------- | ------------ | -------- |
|
| ------------ | -------- | ------------------- | -------- |
|
||||||
| 哔哩哔哩 | 热门榜 | bilibili | 🟢 |
|
| 哔哩哔哩 | 热门榜 | bilibili | 🟢 |
|
||||||
| 知乎 | 热榜 | zhihu | 🟢 |
|
| 微博 | 热搜榜 | weibo | 🟢 |
|
||||||
| 百度 | 热搜榜 | baidu | 🟢 |
|
| 知乎 | 热榜 | zhihu | 🟢 |
|
||||||
| 百度贴吧 | 热议榜 | tieba | 🟢 |
|
| 百度 | 热搜榜 | baidu | 🟢 |
|
||||||
| 少数派 | 热榜 | sspai | 🟢 |
|
| 抖音 | 热点榜 | douyin / douyin_new | 🟢 |
|
||||||
| IT 之家 | 热榜 | ithome | 🟠 |
|
| 抖音 | 热歌榜 | douyin_music | 🟢 |
|
||||||
| 澎湃新闻 | 热榜 | thepaper | 🟢 |
|
| 百度贴吧 | 热议榜 | tieba | 🟢 |
|
||||||
| 今日头条 | 热榜 | toutiao | 🟢 |
|
| 少数派 | 热榜 | sspai | 🟢 |
|
||||||
| 微博热搜 | 热搜榜 | weibo | 🟢 |
|
| IT 之家 | 热榜 | ithome | 🟠 |
|
||||||
| 36 氪 | 热榜 | 36kr | 🟢 |
|
| 澎湃新闻 | 热榜 | thepaper | 🟢 |
|
||||||
| 稀土掘金 | 热榜 | juejin | 🟢 |
|
| 今日头条 | 热榜 | toutiao | 🟢 |
|
||||||
| 腾讯新闻 | 热点榜 | newsqq | 🟢 |
|
| 36 氪 | 热榜 | 36kr | 🟢 |
|
||||||
| 抖音热榜 | 热点榜 | douyin | 🟢 |
|
| 稀土掘金 | 热榜 | juejin | 🟢 |
|
||||||
| 英雄联盟 | 更新公告 | lol | 🟢 |
|
| 腾讯新闻 | 热点榜 | newsqq | 🟢 |
|
||||||
| 微信读书 | 飙升榜 | weread | 🟢 |
|
| 英雄联盟 | 更新公告 | lol | 🟢 |
|
||||||
| 历史上的今天 | 指定日期 | calendar | 🟢 |
|
| 原神 | 最新消息 | genshin | 🟢 |
|
||||||
|
| 微信读书 | 飙升榜 | weread | 🟢 |
|
||||||
|
| 历史上的今天 | 指定日期 | calendar | 🟢 |
|
||||||
|
|
||||||
### 特殊接口说明
|
### 特殊接口说明
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dailyhot_api",
|
"name": "dailyhot_api",
|
||||||
"version": "1.0.0",
|
"version": "1.0.2",
|
||||||
"description": "一个今日热榜",
|
"description": "一个今日热榜",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
122
routes/genshin.js
Normal file
122
routes/genshin.js
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
const Router = require("koa-router");
|
||||||
|
const genshinRouter = new Router();
|
||||||
|
const axios = require("axios");
|
||||||
|
const { get, set, del } = require("../utils/cacheData");
|
||||||
|
|
||||||
|
// 接口信息
|
||||||
|
const routerInfo = {
|
||||||
|
title: "原神",
|
||||||
|
subtitle: "最新信息",
|
||||||
|
};
|
||||||
|
|
||||||
|
// 缓存键名
|
||||||
|
const cacheKey = "genshinData";
|
||||||
|
|
||||||
|
// 调用时间
|
||||||
|
let updateTime = new Date().toISOString();
|
||||||
|
|
||||||
|
// 调用路径
|
||||||
|
const url =
|
||||||
|
"https://content-static.mihoyo.com/content/ysCn/getContentList?pageSize=50&pageNum=1&channelId=10";
|
||||||
|
|
||||||
|
// 数据处理
|
||||||
|
const getData = (data) => {
|
||||||
|
if (!data) return [];
|
||||||
|
return data.map((v) => {
|
||||||
|
return {
|
||||||
|
id: v.id,
|
||||||
|
title: v.title,
|
||||||
|
pic: v.ext[1]?.value[0]?.url,
|
||||||
|
start_time: v?.start_time,
|
||||||
|
url: `https://ys.mihoyo.com/main/news/detail/${v.id}`,
|
||||||
|
mobileUrl: `https://ys.mihoyo.com/main/m/news/detail/${v.id}`,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
// 原神最新信息
|
||||||
|
genshinRouter.get("/genshin", async (ctx) => {
|
||||||
|
console.log("获取原神最新信息");
|
||||||
|
try {
|
||||||
|
// 从缓存中获取数据
|
||||||
|
let data = await get(cacheKey);
|
||||||
|
const from = data ? "cache" : "server";
|
||||||
|
if (!data) {
|
||||||
|
// 如果缓存中不存在数据
|
||||||
|
console.log("从服务端重新获取原神最新信息");
|
||||||
|
// 从服务器拉取数据
|
||||||
|
const response = await axios.get(url);
|
||||||
|
data = getData(response.data.data.list);
|
||||||
|
updateTime = new Date().toISOString();
|
||||||
|
// 将数据写入缓存
|
||||||
|
await set(cacheKey, data);
|
||||||
|
}
|
||||||
|
ctx.body = {
|
||||||
|
code: 200,
|
||||||
|
message: "获取成功",
|
||||||
|
...routerInfo,
|
||||||
|
from,
|
||||||
|
total: data.length,
|
||||||
|
updateTime,
|
||||||
|
data,
|
||||||
|
};
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
ctx.body = {
|
||||||
|
code: 500,
|
||||||
|
...routerInfo,
|
||||||
|
message: "获取失败",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 原神最新信息 - 获取最新数据
|
||||||
|
genshinRouter.get("/genshin/new", async (ctx) => {
|
||||||
|
console.log("获取原神最新信息 - 最新数据");
|
||||||
|
try {
|
||||||
|
// 从服务器拉取最新数据
|
||||||
|
const response = await axios.get(url);
|
||||||
|
const newData = getData(response.data.data.list);
|
||||||
|
updateTime = new Date().toISOString();
|
||||||
|
console.log("从服务端重新获取原神最新信息");
|
||||||
|
|
||||||
|
// 返回最新数据
|
||||||
|
ctx.body = {
|
||||||
|
code: 200,
|
||||||
|
message: "获取成功",
|
||||||
|
...routerInfo,
|
||||||
|
total: newData.length,
|
||||||
|
updateTime,
|
||||||
|
data: newData,
|
||||||
|
};
|
||||||
|
|
||||||
|
// 删除旧数据
|
||||||
|
await del(cacheKey);
|
||||||
|
// 将最新数据写入缓存
|
||||||
|
await set(cacheKey, newData);
|
||||||
|
} catch (error) {
|
||||||
|
// 如果拉取最新数据失败,尝试从缓存中获取数据
|
||||||
|
console.error(error);
|
||||||
|
const cachedData = await get(cacheKey);
|
||||||
|
if (cachedData) {
|
||||||
|
ctx.body = {
|
||||||
|
code: 200,
|
||||||
|
message: "获取成功",
|
||||||
|
...routerInfo,
|
||||||
|
total: cachedData.length,
|
||||||
|
updateTime,
|
||||||
|
data: cachedData,
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
// 如果缓存中也没有数据,则返回错误信息
|
||||||
|
ctx.body = {
|
||||||
|
code: 500,
|
||||||
|
...routerInfo,
|
||||||
|
message: "获取失败",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
genshinRouter.info = routerInfo;
|
||||||
|
module.exports = genshinRouter;
|
@ -1,39 +0,0 @@
|
|||||||
{
|
|
||||||
"opts": {},
|
|
||||||
"methods": ["HEAD", "OPTIONS", "GET", "PUT", "PATCH", "POST", "DELETE"],
|
|
||||||
"exclusive": false,
|
|
||||||
"params": {},
|
|
||||||
"stack": [
|
|
||||||
{
|
|
||||||
"opts": {
|
|
||||||
"end": true,
|
|
||||||
"name": null,
|
|
||||||
"sensitive": false,
|
|
||||||
"strict": false,
|
|
||||||
"prefix": ""
|
|
||||||
},
|
|
||||||
"name": null,
|
|
||||||
"methods": ["HEAD", "GET"],
|
|
||||||
"paramNames": [],
|
|
||||||
"stack": [null],
|
|
||||||
"path": "/zhihu",
|
|
||||||
"regexp": {}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"opts": {
|
|
||||||
"end": true,
|
|
||||||
"name": null,
|
|
||||||
"sensitive": false,
|
|
||||||
"strict": false,
|
|
||||||
"prefix": ""
|
|
||||||
},
|
|
||||||
"name": null,
|
|
||||||
"methods": ["HEAD", "GET"],
|
|
||||||
"paramNames": [],
|
|
||||||
"stack": [null],
|
|
||||||
"path": "/zhihu/new",
|
|
||||||
"regexp": {}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"info": { "title": "知乎", "subtitle": "热榜" }
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user