From 752a80da08ea0f92c45c5c7d8102b0668130dcd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Tue, 9 Jan 2024 20:10:19 -0500 Subject: [PATCH] fetch script improvements :D --- scripts/fetchLatest.js | 39 +++++++++++++++++++++++++++++++-------- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/scripts/fetchLatest.js b/scripts/fetchLatest.js index d53960c..44d9334 100644 --- a/scripts/fetchLatest.js +++ b/scripts/fetchLatest.js @@ -2,20 +2,43 @@ import axios from "axios"; import {writeFileSync, mkdirSync} from "fs"; import {resolve} from "path"; -const freeKey = "qagffr3pkuv17a8on1afax661irst1hbr4e6tbv888sz91jc" -const dirWhitelist = ["scripts", ".vscode"]; +const freeKey = "qagffr3pkuv17a8on1afax661irst1hbr4e6tbv888sz91jc"; +const skins = ["dark", "default", "document", "tinymce-5", "tinymce-5-dark", "writer"]; +const uis = ["oxide", "oxide-dark", "tinymce-5", "tinymce-5-dark"]; const pluginList = 'ai tinycomments mentions anchor autolink charmap codesample emoticons image link lists media searchreplace table visualblocks wordcount checklist mediaembed casechange export formatpainter pageembed permanentpen footnotes advtemplate advtable advcode editimage tableofcontents mergetags powerpaste tinymcespellchecker autocorrect a11ychecker typography inlinecss'; +const base = `https://cdn.tiny.cloud/1/${freeKey}/tinymce/6` + +let headers = { + Referer: "http://tiny.cloud" +} + +async function fetchAux(path) { + const wpath = resolve(`..${path}`) + let {data: d} = await axios.get(`${base}${path}`, {headers}) + writeFileSync(wpath, d); +} async function main() { try { - let headers = { - Referer: "http://tiny.cloud" - } - let base = `https://cdn.tiny.cloud/1/${freeKey}/tinymce/6` let {data: mainScript} = await axios.get(`${base}/tinymce.min.js`, {headers}) + // writeFileSync(resolve("../models/dom/model.min.js"), (await axios.get(`${base}/models/dom/model.min.js`, {headers})).data) writeFileSync(resolve("../tinymce.min.js"), mainScript); - let {data: ts} = await axios.get(`${base}/tinymce.min.js`, {headers}) - writeFileSync(resolve("../tinymce.d.ts"), ts); + await fetchAux("/tinymce.d.ts"); + await fetchAux("/models/dom/model.min.js"); + await fetchAux("/icons/default/icons.min.js"); + for(let t of skins) { + await fetchAux(`/skins/content/${t}/content.min.css`) + } + for(let u of uis) { + for(let c of [ + "content.inline.min.css", + "content.min.css", + "skin.min.css", + "skin.shadowdom.min.css" + ]) { + await fetchAux(`/skins/ui/${u}/${c}`) + } + } for(let p of pluginList.split(" ")) { let {data} = await axios.get(`${base}/plugins/${p}/plugin.min.js`, {headers}); mkdirSync(resolve(`../plugins/${p}`), {recursive: true})