2023-03-27 16:30:12 +00:00
|
|
|
import fetch from "node-fetch";
|
|
|
|
import fs from "fs/promises";
|
|
|
|
|
2023-04-09 12:35:42 +00:00
|
|
|
const RAW_FILE_URL = "https://raw.githubusercontent.com/";
|
2023-05-17 16:30:04 +00:00
|
|
|
const MIRRORF_FILE_URL = "http://raw.fgit.ml/";
|
2023-04-09 12:35:42 +00:00
|
|
|
|
|
|
|
const RAW_CN_URL = "PlexPt/awesome-chatgpt-prompts-zh/main/prompts-zh.json";
|
|
|
|
const CN_URL = MIRRORF_FILE_URL + RAW_CN_URL;
|
|
|
|
const RAW_EN_URL = "f/awesome-chatgpt-prompts/main/prompts.csv";
|
|
|
|
const EN_URL = MIRRORF_FILE_URL + RAW_EN_URL;
|
2023-03-27 16:30:12 +00:00
|
|
|
const FILE = "./public/prompts.json";
|
|
|
|
|
2023-05-17 16:30:04 +00:00
|
|
|
const ignoreWords = ["涩涩", "魅魔"];
|
|
|
|
|
2023-04-22 16:17:00 +00:00
|
|
|
const timeoutPromise = (timeout) => {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
setTimeout(() => {
|
2023-05-17 16:30:04 +00:00
|
|
|
reject(new Error("Request timeout"));
|
2023-04-22 16:17:00 +00:00
|
|
|
}, timeout);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2023-03-27 16:30:12 +00:00
|
|
|
async function fetchCN() {
|
|
|
|
console.log("[Fetch] fetching cn prompts...");
|
|
|
|
try {
|
2023-04-22 16:17:00 +00:00
|
|
|
const response = await Promise.race([fetch(CN_URL), timeoutPromise(5000)]);
|
|
|
|
const raw = await response.json();
|
2023-05-17 16:30:04 +00:00
|
|
|
return raw
|
|
|
|
.map((v) => [v.act, v.prompt])
|
|
|
|
.filter(
|
|
|
|
(v) =>
|
|
|
|
v[0] &&
|
|
|
|
v[1] &&
|
|
|
|
ignoreWords.every((w) => !v[0].includes(w) && !v[1].includes(w)),
|
|
|
|
);
|
2023-03-27 16:30:12 +00:00
|
|
|
} catch (error) {
|
|
|
|
console.error("[Fetch] failed to fetch cn prompts", error);
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function fetchEN() {
|
|
|
|
console.log("[Fetch] fetching en prompts...");
|
|
|
|
try {
|
2023-04-22 16:17:00 +00:00
|
|
|
// const raw = await (await fetch(EN_URL)).text();
|
|
|
|
const response = await Promise.race([fetch(EN_URL), timeoutPromise(5000)]);
|
2023-04-23 02:51:34 +00:00
|
|
|
const raw = await response.text();
|
2023-03-27 16:30:12 +00:00
|
|
|
return raw
|
|
|
|
.split("\n")
|
|
|
|
.slice(1)
|
2023-05-17 16:30:04 +00:00
|
|
|
.map((v) =>
|
|
|
|
v
|
|
|
|
.split('","')
|
|
|
|
.map((v) => v.replace(/^"|"$/g, "").replaceAll('""', '"'))
|
|
|
|
.filter((v) => v[0] && v[1]),
|
|
|
|
);
|
2023-03-27 16:30:12 +00:00
|
|
|
} catch (error) {
|
2023-04-22 15:53:58 +00:00
|
|
|
console.error("[Fetch] failed to fetch en prompts", error);
|
2023-03-27 16:30:12 +00:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function main() {
|
|
|
|
Promise.all([fetchCN(), fetchEN()])
|
|
|
|
.then(([cn, en]) => {
|
|
|
|
fs.writeFile(FILE, JSON.stringify({ cn, en }));
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
console.error("[Fetch] failed to fetch prompts");
|
|
|
|
fs.writeFile(FILE, JSON.stringify({ cn: [], en: [] }));
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
console.log("[Fetch] saved to " + FILE);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
main();
|