mirror of
https://github.com/huqi-pr/trending-in-one.git
synced 2024-11-17 13:58:28 +08:00
60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
|
#!/usr/bin/env -S deno run --unstable --allow-net --allow-read --allow-write --import-map=import_map.json
|
||
|
// Copyright 2020 justjavac(迷渡). All rights reserved. MIT license.
|
||
|
import { format } from "std/datetime/mod.ts";
|
||
|
import { join } from "std/path/mod.ts";
|
||
|
import { exists } from "std/fs/mod.ts";
|
||
|
|
||
|
import type { Word } from "./types.ts";
|
||
|
import { createArchive4Weibo, createReadme4Weibo, mergeWords4Weibo } from "./utils.ts";
|
||
|
|
||
|
const regexp = /<a href="(\/weibo\?q=[^"]+)".*?>(.+)<\/a>/g;
|
||
|
|
||
|
const response = await fetch("https://s.weibo.com/top/summary");
|
||
|
|
||
|
if (!response.ok) {
|
||
|
console.error(response.statusText);
|
||
|
Deno.exit(-1);
|
||
|
}
|
||
|
|
||
|
const result: string = await response.text();
|
||
|
|
||
|
const matches = result.matchAll(regexp);
|
||
|
|
||
|
const words: Word[] = Array.from(matches).map((x) => ({
|
||
|
url: x[1],
|
||
|
title: x[2],
|
||
|
}));
|
||
|
|
||
|
const yyyyMMdd = format(new Date(), "yyyy-MM-dd");
|
||
|
const fullPath = join("raw/weibo-search", `${yyyyMMdd}.json`);
|
||
|
|
||
|
let wordsAlreadyDownload: Word[] = [];
|
||
|
if (await exists(fullPath)) {
|
||
|
const content = await Deno.readTextFile(fullPath);
|
||
|
wordsAlreadyDownload = JSON.parse(content);
|
||
|
}
|
||
|
|
||
|
const queswordsAll = mergeWords4Weibo(words, wordsAlreadyDownload);
|
||
|
|
||
|
export const weiboSearchData = queswordsAll.map(x=> {
|
||
|
x.realurl = `https://s.weibo.com/${x.url}`;
|
||
|
return x;
|
||
|
});
|
||
|
|
||
|
|
||
|
export async function weiboSearch() {
|
||
|
// 保存原始数据
|
||
|
await Deno.writeTextFile(fullPath, JSON.stringify(queswordsAll));
|
||
|
|
||
|
// 更新 README.md
|
||
|
const readme = await createReadme4Weibo(queswordsAll);
|
||
|
await Deno.writeTextFile("./README.md", readme);
|
||
|
|
||
|
// 更新 archives
|
||
|
const archiveText = createArchive4Weibo(queswordsAll, yyyyMMdd);
|
||
|
const archivePath = join("archives/weibo-search", `${yyyyMMdd}.md`);
|
||
|
await Deno.writeTextFile(archivePath, archiveText);
|
||
|
|
||
|
}
|
||
|
|