Update and rename douyin2.js to douyin_new.js
This commit is contained in:
parent
4ae8e6cfd8
commit
9e9fc713de
@ -1,18 +1,24 @@
|
|||||||
/*
|
/*
|
||||||
* @Descripttion:
|
* @version: 1.0.0
|
||||||
* @version:
|
* @author: WangPeng
|
||||||
* @Author: WangPeng
|
* @date: 2023-07-10 16:56:01
|
||||||
* @Date: 2023-07-10 16:56:01
|
* @customEditors: imsyy
|
||||||
* @LastEditors: WangPeng
|
* @lastEditTime: 2023-07-11 16:54:38
|
||||||
* @LastEditTime: 2023-07-12 15:09:39
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const Router = require("koa-router");
|
const Router = require("koa-router");
|
||||||
const douyinRouter = new Router();
|
const douyinNewRouter = new Router();
|
||||||
const axios = require("axios");
|
const axios = require("axios");
|
||||||
const { get, set, del } = require("../utils/cacheData");
|
const { get, set, del } = require("../utils/cacheData");
|
||||||
|
|
||||||
|
// 接口信息
|
||||||
|
const routerInfo = {
|
||||||
|
title: "抖音",
|
||||||
|
subtitle: "热点榜",
|
||||||
|
};
|
||||||
|
|
||||||
// 缓存键名
|
// 缓存键名
|
||||||
const cacheKey = "douyinData";
|
const cacheKey = "douyinHotNewData";
|
||||||
|
|
||||||
// 调用时间
|
// 调用时间
|
||||||
let updateTime = new Date().toISOString();
|
let updateTime = new Date().toISOString();
|
||||||
@ -20,43 +26,53 @@ let updateTime = new Date().toISOString();
|
|||||||
// 调用路径
|
// 调用路径
|
||||||
const url = "https://aweme.snssdk.com/aweme/v1/hot/search/list/";
|
const url = "https://aweme.snssdk.com/aweme/v1/hot/search/list/";
|
||||||
const HEADERS = {
|
const HEADERS = {
|
||||||
'user-agent': 'okhttp3'
|
"user-agent": "okhttp3",
|
||||||
}
|
};
|
||||||
const QUERIES = {
|
const QUERIES = {
|
||||||
'device_platform': 'android',
|
device_platform: "android",
|
||||||
'version_name': '13.2.0',
|
version_name: "13.2.0",
|
||||||
'version_code': '130200',
|
version_code: "130200",
|
||||||
'aid': '1128'
|
aid: "1128",
|
||||||
}
|
};
|
||||||
|
|
||||||
// 数据处理
|
// 数据处理
|
||||||
const getData = (data) => {
|
const getData = (data) => {
|
||||||
if (!data) return [];
|
if (!data) return [];
|
||||||
return data.map((v) => {
|
try {
|
||||||
|
const jsonObject = data.data.word_list;
|
||||||
|
return jsonObject.map((v) => {
|
||||||
return {
|
return {
|
||||||
id: v.group_id,
|
|
||||||
title: v.word,
|
title: v.word,
|
||||||
pic: v.word_cover?.url_list[0] || null,
|
pic: `${v.word_cover.url_list[0]}`,
|
||||||
hot: v.hot_value,
|
hot: Number(v.hot_value),
|
||||||
url: `https://www.douyin.com/hot/${v.sentence_id}`,
|
url: `https://www.douyin.com/hot/${encodeURIComponent(v.sentence_id)}`,
|
||||||
mobileUrl: `https://www.douyin.com/hot/${v.sentence_id}`,
|
mobileUrl: `https://www.douyin.com/hot/${encodeURIComponent(
|
||||||
|
v.sentence_id
|
||||||
|
)}`,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
} catch (error) {
|
||||||
|
console.error("数据处理出错" + error);
|
||||||
|
return [];
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// 抖音热榜
|
// 抖音热点榜
|
||||||
douyinRouter.get("/douyin2", async (ctx) => {
|
douyinNewRouter.get("/douyin_new", async (ctx) => {
|
||||||
console.log("获取抖音热榜");
|
console.log("获取抖音热点榜");
|
||||||
try {
|
try {
|
||||||
// 从缓存中获取数据
|
// 从缓存中获取数据
|
||||||
let data = await get(cacheKey);
|
let data = await get(cacheKey);
|
||||||
const from = data ? "cache" : "server";
|
const from = data ? "cache" : "server";
|
||||||
if (!data) {
|
if (!data) {
|
||||||
// 如果缓存中不存在数据
|
// 如果缓存中不存在数据
|
||||||
console.log("从服务端重新获取抖音热榜");
|
console.log("从服务端重新获取抖音热点榜");
|
||||||
// 从服务器拉取数据
|
// 从服务器拉取数据
|
||||||
const response = await axios.get(url, { headers: HEADERS, params: QUERIES });
|
const response = await axios.get(url, {
|
||||||
data = getData(response.data.data.word_list);
|
headers: HEADERS,
|
||||||
|
params: QUERIES,
|
||||||
|
});
|
||||||
|
data = getData(response.data);
|
||||||
updateTime = new Date().toISOString();
|
updateTime = new Date().toISOString();
|
||||||
// 将数据写入缓存
|
// 将数据写入缓存
|
||||||
await set(cacheKey, data);
|
await set(cacheKey, data);
|
||||||
@ -64,8 +80,7 @@ douyinRouter.get("/douyin2", async (ctx) => {
|
|||||||
ctx.body = {
|
ctx.body = {
|
||||||
code: 200,
|
code: 200,
|
||||||
message: "获取成功",
|
message: "获取成功",
|
||||||
title: "抖音",
|
...routerInfo,
|
||||||
subtitle: "热榜",
|
|
||||||
from,
|
from,
|
||||||
total: data.length,
|
total: data.length,
|
||||||
updateTime,
|
updateTime,
|
||||||
@ -75,29 +90,30 @@ douyinRouter.get("/douyin2", async (ctx) => {
|
|||||||
console.error(error);
|
console.error(error);
|
||||||
ctx.body = {
|
ctx.body = {
|
||||||
code: 500,
|
code: 500,
|
||||||
title: "抖音",
|
...routerInfo,
|
||||||
subtitle: "热榜",
|
|
||||||
message: "获取失败",
|
message: "获取失败",
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// 抖音热榜 - 获取最新数据
|
// 抖音热点榜 - 获取最新数据
|
||||||
douyinRouter.get("/douyin2/new", async (ctx) => {
|
douyinNewRouter.get("/douyin_new/new", async (ctx) => {
|
||||||
console.log("获取抖音热榜 - 最新数据");
|
console.log("获取抖音热点榜 - 最新数据");
|
||||||
try {
|
try {
|
||||||
// 从服务器拉取最新数据
|
// 从服务器拉取最新数据
|
||||||
const response = await axios.get(url, { headers: HEADERS, params: QUERIES });
|
const response = await axios.get(url, {
|
||||||
const newData = getData(response.data.word_list);
|
headers: HEADERS,
|
||||||
|
params: QUERIES,
|
||||||
|
});
|
||||||
|
const newData = getData(response.data);
|
||||||
updateTime = new Date().toISOString();
|
updateTime = new Date().toISOString();
|
||||||
console.log("从服务端重新获取抖音热榜");
|
console.log("从服务端重新获取抖音热点榜");
|
||||||
|
|
||||||
// 返回最新数据
|
// 返回最新数据
|
||||||
ctx.body = {
|
ctx.body = {
|
||||||
code: 200,
|
code: 200,
|
||||||
message: "获取成功",
|
message: "获取成功",
|
||||||
title: "抖音",
|
...routerInfo,
|
||||||
subtitle: "热榜",
|
|
||||||
total: newData.length,
|
total: newData.length,
|
||||||
updateTime,
|
updateTime,
|
||||||
data: newData,
|
data: newData,
|
||||||
@ -115,8 +131,7 @@ douyinRouter.get("/douyin2/new", async (ctx) => {
|
|||||||
ctx.body = {
|
ctx.body = {
|
||||||
code: 200,
|
code: 200,
|
||||||
message: "获取成功",
|
message: "获取成功",
|
||||||
title: "抖音",
|
...routerInfo,
|
||||||
subtitle: "热榜",
|
|
||||||
total: cachedData.length,
|
total: cachedData.length,
|
||||||
updateTime,
|
updateTime,
|
||||||
data: cachedData,
|
data: cachedData,
|
||||||
@ -125,12 +140,12 @@ douyinRouter.get("/douyin2/new", async (ctx) => {
|
|||||||
// 如果缓存中也没有数据,则返回错误信息
|
// 如果缓存中也没有数据,则返回错误信息
|
||||||
ctx.body = {
|
ctx.body = {
|
||||||
code: 500,
|
code: 500,
|
||||||
title: "抖音",
|
...routerInfo,
|
||||||
subtitle: "热榜",
|
|
||||||
message: "获取失败",
|
message: "获取失败",
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = douyinRouter;
|
douyinNewRouter.info = routerInfo;
|
||||||
|
module.exports = douyinNewRouter;
|
Loading…
Reference in New Issue
Block a user