2024-12-03

deno多模型API安全代理 - 资源荟萃 - LINUX DO

deno多模型API安全代理 - 资源荟萃 - LINUX DO

代码:

import { serve } from "https://deno.land/std/http/server.ts";


const apiMapping = {
'/discord': 'https://discord.com/api',
'/telegram': 'https://api.telegram.org',
'/openai': 'https://api.openai.com',
'/claude': 'https://api.anthropic.com',
'/gemini': 'https://generativelanguage.googleapis.com',
'/meta': 'https://www.meta.ai/api',
'/groq': 'https://api.groq.com/openai',
'/xai': 'https://api.x.ai',
'/cohere': 'https://api.cohere.ai',
'/huggingface': 'https://api-inference.huggingface.co',
'/together': 'https://api.together.xyz',
'/novita': 'https://api.novita.ai',
'/portkey': 'https://api.portkey.ai',
'/fireworks': 'https://api.fireworks.ai',
'/openrouter': 'https://openrouter.ai/api'
};


serve(async (request) => {
const url = new URL(request.url);
const pathname = url.pathname;


if (pathname === '/' || pathname === '/index.html') {
return new Response('Service is running!', {
status: 200,
headers: { 'Content-Type': 'text/html' }
});
}

if (pathname === '/robots.txt') {
return new Response('User-agent: *\nDisallow: /', {
status: 200,
headers: { 'Content-Type': 'text/plain' }
});
}


const [prefix, rest] = extractPrefixAndRest(pathname, Object.keys(apiMapping));
if (!prefix) {
return new Response('Not Found', { status: 404 });
}


const targetUrl = `${apiMapping[prefix]}${rest}`;


try {
const headers = new Headers();
const allowedHeaders = ['accept', 'content-type', 'authorization'];
for (const [key, value] of request.headers.entries()) {
if (allowedHeaders.includes(key.toLowerCase())) {
headers.set(key, value);
}
}


const response = await fetch(targetUrl, {
method: request.method,
headers: headers,
body: request.body
});


const responseHeaders = new Headers(response.headers);
responseHeaders.set('X-Content-Type-Options', 'nosniff');
responseHeaders.set('X-Frame-Options', 'DENY');
responseHeaders.set('Referrer-Policy', 'no-referrer');


return new Response(response.body, {
status: response.status,
headers: responseHeaders
});


} catch (error) {
console.error('Failed to fetch:', error);
return new Response('Internal Server Error', { status: 500 });
}
});


function extractPrefixAndRest(pathname, prefixes) {
for (const prefix of prefixes) {
if (pathname.startsWith(prefix)) {
return [prefix, pathname.slice(prefix.length)];
}
}
return [null, null];
}




    在 Deno Deploy 3 中,点击蓝色的“New Playground”,输入上面的代码,就可以反代常用的墙外api网址,很好用。可以保存到github,方便修改后自动推送。

按照上面的方法架设好后,通过 http://网址/telegram 就可以直接连接 ‘https://api.telegram.org’ ,这样就可以访问原来需要fq的网址了 

想法:可以利用这种方法,把多个ai的网址绑在一起
例如:
http://网址/ai_guiji 表示硅基流动的api url
http://网址/ai_zhipu 表示智谱清言的api url

精选文章

四家人天天同吃同乐,这个小集体成了一家人 | 南方周末

四家人天天同吃同乐,这个小集体成了一家人 | 南方周末 深秋的广州阳光明媚,碧空万里,适合外出走走、看看。近日,我联系上了一位久违的朋友阿乐。阿乐是地道的番禺人,家的准确位置是st街道st村,离我家不远,驱车半小时就到了。按照他发我的定位,我到了一处小山坡。 我以为这里是他家,但...