1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/mirrors-serverless-dns

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
doh.js 1.8 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Murtaza Aliakbar Отправлено 13.06.2023 10:25 e2ecabc
/*
* Copyright (c) 2021 RethinkDNS and its authors.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import RethinkPlugin from "./plugin.js";
import * as pres from "../plugins/plugin-response.js";
import * as util from "../commons/util.js";
import * as dnsutil from "../commons/dnsutil.js";
import IOState from "./io-state.js";
// TODO: define FetchEventLike
/**
* @typedef {any} FetchEventLike
*/
/**
* @param {FetchEvent|FetchEventLike} event
* @returns {Promise<Response>}
*/
export function handleRequest(event) {
return proxyRequest(event);
}
/**
* @param {FetchEvent} event
* @returns {Promise<Response>}
*/
async function proxyRequest(event) {
if (optionsRequest(event.request)) return util.respond204();
const io = new IOState();
const ua = event.request.headers.get("User-Agent");
try {
const plugin = new RethinkPlugin(event);
await plugin.initIoState(io);
// if an early response has been set by plugin.initIoState, return it
if (io.httpResponse) {
return withCors(io, ua);
}
await util.timedSafeAsyncOp(
/* op*/ async () => plugin.execute(),
/* waitMs*/ dnsutil.requestTimeout(),
/* onTimeout*/ async () => errorResponse(io)
);
} catch (err) {
log.e("doh", "proxy-request error", err.stack);
errorResponse(io, err);
}
return withCors(io, ua);
}
function optionsRequest(request) {
return request.method === "OPTIONS";
}
function errorResponse(io, err = null) {
const eres = pres.errResponse("doh.js", err);
io.dnsExceptionResponse(eres);
}
function withCors(io, ua) {
if (util.fromBrowser(ua)) io.setCorsHeadersIfNeeded();
return io.httpResponse;
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/mirrors-serverless-dns.git
git@api.gitlife.ru:oschina-mirror/mirrors-serverless-dns.git
oschina-mirror
mirrors-serverless-dns
mirrors-serverless-dns
main