1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
export default { async fetch(request, _env) { return await handleRequest(request); } }
const config = { dropReferer: true, blockList: [], typeList: ["image", "video", "audio", "application", "font", "model", "html", "text", "zip"] };
async function handleRequest(request) { let reqHeaders = new Headers(request.headers), outBody, outStatus = 200, outStatusText = 'OK', outCt = null, outHeaders = new Headers({ "Access-Control-Allow-Origin": "*", "Access-Control-Allow-Methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS", "Access-Control-Allow-Headers": reqHeaders.get('Access-Control-Allow-Headers') || "Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive, Origin, User-Agent, X-Requested-With, Token, x-access-token" });
try { let url = request.url.substr(8); url = decodeURIComponent(url.substr(url.indexOf('/') + 1));
if (request.method == "OPTIONS" || url.length < 3 || url.indexOf('.') == -1 || url == "favicon.ico" || url == "robots.txt") { const invalid = !(request.method == "OPTIONS" || url.length === 0) outBody = JSON.stringify({ code: invalid ? 400 : 0, usage: 'Add https://rss.sakisakura.moe/ before the RSS URL you want to proxy.', }); outCt = "application/json"; outStatus = invalid ? 400 : 200; } else if (blockUrl(url)) { outBody = JSON.stringify({ code: 403, msg: 'The keyword "' + config.blockList.join(' , ') + '" was block-listed by the operator of this proxy.' }); outCt = "application/json"; outStatus = 403; } else { url = fixUrl(url);
let fp = { method: request.method, headers: {} } let fr = (await fetch(url, fp)); outCt = fr.headers.get('content-type');
const dropHeaders = ['content-length', 'content-type', 'host']; if (config.dropReferer) dropHeaders.push('referer'); let he = reqHeaders.entries(); for (let h of he) { const key = h[0], value = h[1]; if (!dropHeaders.includes(key)) { fp.headers[key] = value; } } if (config.dropReferer && url.includes('.sinaimg.cn/')) fp.headers['referer'] = 'https://weibo.com/';
if (url.includes('mikanani.me/RSS')) { const response = await fetch(url, fp); const text = await response.text(); outBody = text.replace(/mikanani.me\/Download\//g, 'rss.sakisakura.moe/https://mikanani.me/Download/'); outCt = response.headers.get('content-type'); outStatus = response.status; outStatusText = response.statusText; } else if (url.includes('acg.rip/.xml')) { const response = await fetch(url, fp); const text = await response.text(); outBody = text.replace(/acg.rip\/t\//g, 'rss.sakisakura.moe/https://acg.rip/t/'); outCt = response.headers.get('content-type'); outStatus = response.status; outStatusText = response.statusText; } else if (url.includes('bangumi.moe/rss')) { const response = await fetch(url, fp); const text = await response.text(); outBody = text.replace(/bangumi.moe\/download\//g, 'rss.sakisakura.moe/https://bangumi.moe/download/'); outCt = response.headers.get('content-type'); outStatus = response.status; outStatusText = response.statusText; } else if (url.includes('share.dmhy.org/topics/rss/rss.xml') || url.includes('blog.davidwang.org/atom.xml') || url.includes('acgnx.se/rss.xml')) { outBody = fr.body; outStatus = fr.status; outStatusText = fr.statusText; } else if (url.includes('https://mikanani.me/Download/') || url.includes('https://acg.rip/t/') || url.includes('https://bangumi.moe/download/')) { outBody = fr.body; outStatus = fr.status; outStatusText = fr.statusText; } else { outBody = JSON.stringify({ code: 403, msg: 'Forbidden' }); outCt = "application/json"; outStatus = 403; };
if (["POST", "PUT", "PATCH", "DELETE"].indexOf(request.method) >= 0) { const ct = (reqHeaders.get('content-type') || "").toLowerCase(); fp.headers['content-type'] = ct if (ct.includes('application/json')) { fp.body = JSON.stringify(await request.json()); } else if (ct.includes('application/text') || ct.includes('text/html')) { fp.body = await request.text(); } else if (ct.includes('form')) { fp.body = await request.formData(); } else { fp.body = await request.blob(); } };
if (blockType(outCt)) { outBody = JSON.stringify({ code: 415, msg: 'The keyword "' + config.typeList.join(' , ') + '" was whitelisted by the operator of this proxy, but got "' + outCt + '".' }); outCt = "application/json"; outStatus = 415; } } } catch (err) { outBody = err.stack; outCt = "text/plain;charset=UTF-8"; outStatus = 500; outStatusText = "Internal Server Error"; }
if (outCt && outCt != "") { outHeaders.set("content-type", outCt); } let response = new Response(outBody, { status: outStatus, statusText: outStatusText, headers: outHeaders })
return response; }
function fixUrl(url) { if (url.startsWith('http://') || url.startsWith('https://')) { return url; } else { return 'http://' + url; } }
function blockUrl(url) { url = url.toLowerCase(); return config.blockList.some(x => url.includes(x)); }
function blockType(type) { type = type.toLowerCase(); return !config.typeList.some(x => type.includes(x)); }
|