Add semantic token highlighting for 'that' variable and comment file references in VS Code extension Add Phone_Text_Input and Currency_Input components with formatting utilities Implement client widgets, form standardization, and soft delete functionality Add modal scroll lock and update documentation Implement comprehensive modal system with form integration and validation Fix modal component instantiation using jQuery plugin API Implement modal system with responsive sizing, queuing, and validation support Implement form submission with validation, error handling, and loading states Implement country/state selectors with dynamic data loading and Bootstrap styling Revert Rsx::Route() highlighting in Blade/PHP files Target specific PHP scopes for Rsx::Route() highlighting in Blade Expand injection selector for Rsx::Route() highlighting Add custom syntax highlighting for Rsx::Route() and Rsx.Route() calls Update jqhtml packages to v2.2.165 Add bundle path validation for common mistakes (development mode only) Create Ajax_Select_Input widget and Rsx_Reference_Data controller Create Country_Select_Input widget with default country support Initialize Tom Select on Select_Input widgets Add Tom Select bundle for enhanced select dropdowns Implement ISO 3166 geographic data system for country/region selection Implement widget-based form system with disabled state support 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
181 lines
6.7 KiB
JavaScript
Executable File
181 lines
6.7 KiB
JavaScript
Executable File
"use strict";
|
|
var __create = Object.create;
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __getProtoOf = Object.getPrototypeOf;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
// file that has been converted to a CommonJS file using a Babel-
|
|
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
mod
|
|
));
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
var http_exports = {};
|
|
__export(http_exports, {
|
|
httpAddressToString: () => httpAddressToString,
|
|
installHttpTransport: () => installHttpTransport,
|
|
startHttpServer: () => startHttpServer
|
|
});
|
|
module.exports = __toCommonJS(http_exports);
|
|
var import_assert = __toESM(require("assert"));
|
|
var import_http = __toESM(require("http"));
|
|
var import_crypto = __toESM(require("crypto"));
|
|
var import_utilsBundle = require("playwright-core/lib/utilsBundle");
|
|
var mcpBundle = __toESM(require("./bundle"));
|
|
var mcpServer = __toESM(require("./server"));
|
|
const testDebug = (0, import_utilsBundle.debug)("pw:mcp:test");
|
|
async function startHttpServer(config, abortSignal) {
|
|
const { host, port } = config;
|
|
const httpServer = import_http.default.createServer();
|
|
decorateServer(httpServer);
|
|
await new Promise((resolve, reject) => {
|
|
httpServer.on("error", reject);
|
|
abortSignal?.addEventListener("abort", () => {
|
|
httpServer.close();
|
|
reject(new Error("Aborted"));
|
|
});
|
|
httpServer.listen(port, host, () => {
|
|
resolve();
|
|
httpServer.removeListener("error", reject);
|
|
});
|
|
});
|
|
return httpServer;
|
|
}
|
|
function httpAddressToString(address) {
|
|
(0, import_assert.default)(address, "Could not bind server socket");
|
|
if (typeof address === "string")
|
|
return address;
|
|
const resolvedPort = address.port;
|
|
let resolvedHost = address.family === "IPv4" ? address.address : `[${address.address}]`;
|
|
if (resolvedHost === "0.0.0.0" || resolvedHost === "[::]")
|
|
resolvedHost = "localhost";
|
|
return `http://${resolvedHost}:${resolvedPort}`;
|
|
}
|
|
async function installHttpTransport(httpServer, serverBackendFactory, allowedHosts) {
|
|
const url = httpAddressToString(httpServer.address());
|
|
const host = new URL(url).host;
|
|
allowedHosts = (allowedHosts || [host]).map((h) => h.toLowerCase());
|
|
const allowAnyHost = allowedHosts.includes("*");
|
|
const sseSessions = /* @__PURE__ */ new Map();
|
|
const streamableSessions = /* @__PURE__ */ new Map();
|
|
httpServer.on("request", async (req, res) => {
|
|
if (!allowAnyHost) {
|
|
const host2 = req.headers.host?.toLowerCase();
|
|
if (!host2) {
|
|
res.statusCode = 400;
|
|
return res.end("Missing host");
|
|
}
|
|
if (!allowedHosts.includes(host2)) {
|
|
res.statusCode = 403;
|
|
return res.end("Access is only allowed at " + allowedHosts.join(", "));
|
|
}
|
|
}
|
|
const url2 = new URL(`http://localhost${req.url}`);
|
|
if (url2.pathname === "/killkillkill" && req.method === "GET") {
|
|
res.statusCode = 200;
|
|
res.end("Killing process");
|
|
process.emit("SIGINT");
|
|
return;
|
|
}
|
|
if (url2.pathname.startsWith("/sse"))
|
|
await handleSSE(serverBackendFactory, req, res, url2, sseSessions);
|
|
else
|
|
await handleStreamable(serverBackendFactory, req, res, streamableSessions);
|
|
});
|
|
}
|
|
async function handleSSE(serverBackendFactory, req, res, url, sessions) {
|
|
if (req.method === "POST") {
|
|
const sessionId = url.searchParams.get("sessionId");
|
|
if (!sessionId) {
|
|
res.statusCode = 400;
|
|
return res.end("Missing sessionId");
|
|
}
|
|
const transport = sessions.get(sessionId);
|
|
if (!transport) {
|
|
res.statusCode = 404;
|
|
return res.end("Session not found");
|
|
}
|
|
return await transport.handlePostMessage(req, res);
|
|
} else if (req.method === "GET") {
|
|
const transport = new mcpBundle.SSEServerTransport("/sse", res);
|
|
sessions.set(transport.sessionId, transport);
|
|
testDebug(`create SSE session: ${transport.sessionId}`);
|
|
await mcpServer.connect(serverBackendFactory, transport, false);
|
|
res.on("close", () => {
|
|
testDebug(`delete SSE session: ${transport.sessionId}`);
|
|
sessions.delete(transport.sessionId);
|
|
});
|
|
return;
|
|
}
|
|
res.statusCode = 405;
|
|
res.end("Method not allowed");
|
|
}
|
|
async function handleStreamable(serverBackendFactory, req, res, sessions) {
|
|
const sessionId = req.headers["mcp-session-id"];
|
|
if (sessionId) {
|
|
const transport = sessions.get(sessionId);
|
|
if (!transport) {
|
|
res.statusCode = 404;
|
|
res.end("Session not found");
|
|
return;
|
|
}
|
|
return await transport.handleRequest(req, res);
|
|
}
|
|
if (req.method === "POST") {
|
|
const transport = new mcpBundle.StreamableHTTPServerTransport({
|
|
sessionIdGenerator: () => import_crypto.default.randomUUID(),
|
|
onsessioninitialized: async (sessionId2) => {
|
|
testDebug(`create http session: ${transport.sessionId}`);
|
|
await mcpServer.connect(serverBackendFactory, transport, true);
|
|
sessions.set(sessionId2, transport);
|
|
}
|
|
});
|
|
transport.onclose = () => {
|
|
if (!transport.sessionId)
|
|
return;
|
|
sessions.delete(transport.sessionId);
|
|
testDebug(`delete http session: ${transport.sessionId}`);
|
|
};
|
|
await transport.handleRequest(req, res);
|
|
return;
|
|
}
|
|
res.statusCode = 400;
|
|
res.end("Invalid request");
|
|
}
|
|
function decorateServer(server) {
|
|
const sockets = /* @__PURE__ */ new Set();
|
|
server.on("connection", (socket) => {
|
|
sockets.add(socket);
|
|
socket.once("close", () => sockets.delete(socket));
|
|
});
|
|
const close = server.close;
|
|
server.close = (callback) => {
|
|
for (const socket of sockets)
|
|
socket.destroy();
|
|
sockets.clear();
|
|
return close.call(server, callback);
|
|
};
|
|
}
|
|
// Annotate the CommonJS export names for ESM import in node:
|
|
0 && (module.exports = {
|
|
httpAddressToString,
|
|
installHttpTransport,
|
|
startHttpServer
|
|
});
|