mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-28 22:00:51 +00:00
Merge pull request #1580 from Pallavikumarimdb/feature/path-rewriting-rules
Rules for rewriting requests to another path
This commit is contained in:
@@ -1522,5 +1522,7 @@
|
|||||||
"resourceAddEntrypointsEditFile": "Edit file: config/traefik/traefik_config.yml",
|
"resourceAddEntrypointsEditFile": "Edit file: config/traefik/traefik_config.yml",
|
||||||
"resourceExposePortsEditFile": "Edit file: docker-compose.yml",
|
"resourceExposePortsEditFile": "Edit file: docker-compose.yml",
|
||||||
"emailVerificationRequired": "Email verification is required. Please log in again via {dashboardUrl}/auth/login complete this step. Then, come back here.",
|
"emailVerificationRequired": "Email verification is required. Please log in again via {dashboardUrl}/auth/login complete this step. Then, come back here.",
|
||||||
"twoFactorSetupRequired": "Two-factor authentication setup is required. Please log in again via {dashboardUrl}/auth/login complete this step. Then, come back here."
|
"twoFactorSetupRequired": "Two-factor authentication setup is required. Please log in again via {dashboardUrl}/auth/login complete this step. Then, come back here.",
|
||||||
|
"rewritePath": "Rewrite Path",
|
||||||
|
"rewritePathDescription": "Optionally rewrite the path before forwarding to the target."
|
||||||
}
|
}
|
||||||
@@ -123,7 +123,9 @@ export const targets = pgTable("targets", {
|
|||||||
internalPort: integer("internalPort"),
|
internalPort: integer("internalPort"),
|
||||||
enabled: boolean("enabled").notNull().default(true),
|
enabled: boolean("enabled").notNull().default(true),
|
||||||
path: text("path"),
|
path: text("path"),
|
||||||
pathMatchType: text("pathMatchType") // exact, prefix, regex
|
pathMatchType: text("pathMatchType"), // exact, prefix, regex
|
||||||
|
rewritePath: text("rewritePath"), // if set, rewrites the path to this value before sending to the target
|
||||||
|
rewritePathType: text("rewritePathType") // exact, prefix, regex, stripPrefix
|
||||||
});
|
});
|
||||||
|
|
||||||
export const exitNodes = pgTable("exitNodes", {
|
export const exitNodes = pgTable("exitNodes", {
|
||||||
|
|||||||
@@ -135,7 +135,9 @@ export const targets = sqliteTable("targets", {
|
|||||||
internalPort: integer("internalPort"),
|
internalPort: integer("internalPort"),
|
||||||
enabled: integer("enabled", { mode: "boolean" }).notNull().default(true),
|
enabled: integer("enabled", { mode: "boolean" }).notNull().default(true),
|
||||||
path: text("path"),
|
path: text("path"),
|
||||||
pathMatchType: text("pathMatchType") // exact, prefix, regex
|
pathMatchType: text("pathMatchType"), // exact, prefix, regex
|
||||||
|
rewritePath: text("rewritePath"), // if set, rewrites the path to this value before sending to the target
|
||||||
|
rewritePathType: text("rewritePathType") // exact, prefix, regex, stripPrefix
|
||||||
});
|
});
|
||||||
|
|
||||||
export const exitNodes = sqliteTable("exitNodes", {
|
export const exitNodes = sqliteTable("exitNodes", {
|
||||||
|
|||||||
@@ -107,7 +107,9 @@ export async function updateProxyResources(
|
|||||||
enabled: targetData.enabled,
|
enabled: targetData.enabled,
|
||||||
internalPort: internalPortToCreate,
|
internalPort: internalPortToCreate,
|
||||||
path: targetData.path,
|
path: targetData.path,
|
||||||
pathMatchType: targetData["path-match"]
|
pathMatchType: targetData["path-match"],
|
||||||
|
rewritePath: targetData.rewritePath,
|
||||||
|
rewritePathType: targetData["rewrite-match"]
|
||||||
})
|
})
|
||||||
.returning();
|
.returning();
|
||||||
|
|
||||||
@@ -327,7 +329,9 @@ export async function updateProxyResources(
|
|||||||
port: targetData.port,
|
port: targetData.port,
|
||||||
enabled: targetData.enabled,
|
enabled: targetData.enabled,
|
||||||
path: targetData.path,
|
path: targetData.path,
|
||||||
pathMatchType: targetData["path-match"]
|
pathMatchType: targetData["path-match"],
|
||||||
|
rewritePath: targetData.rewritePath,
|
||||||
|
rewritePathType: targetData["rewrite-match"]
|
||||||
})
|
})
|
||||||
.where(eq(targets.targetId, existingTarget.targetId))
|
.where(eq(targets.targetId, existingTarget.targetId))
|
||||||
.returning();
|
.returning();
|
||||||
|
|||||||
@@ -14,7 +14,9 @@ export const TargetSchema = z.object({
|
|||||||
enabled: z.boolean().optional().default(true),
|
enabled: z.boolean().optional().default(true),
|
||||||
"internal-port": z.number().int().min(1).max(65535).optional(),
|
"internal-port": z.number().int().min(1).max(65535).optional(),
|
||||||
path: z.string().optional(),
|
path: z.string().optional(),
|
||||||
"path-match": z.enum(["exact", "prefix", "regex"]).optional().nullable()
|
"path-match": z.enum(["exact", "prefix", "regex"]).optional().nullable(),
|
||||||
|
rewritePath: z.string().optional(),
|
||||||
|
"rewrite-match": z.enum(["exact", "prefix", "regex", "stripPrefix"]).optional().nullable()
|
||||||
});
|
});
|
||||||
export type TargetData = z.infer<typeof TargetSchema>;
|
export type TargetData = z.infer<typeof TargetSchema>;
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,9 @@ const createTargetSchema = z
|
|||||||
port: z.number().int().min(1).max(65535),
|
port: z.number().int().min(1).max(65535),
|
||||||
enabled: z.boolean().default(true),
|
enabled: z.boolean().default(true),
|
||||||
path: z.string().optional().nullable(),
|
path: z.string().optional().nullable(),
|
||||||
pathMatchType: z.enum(["exact", "prefix", "regex"]).optional().nullable()
|
pathMatchType: z.enum(["exact", "prefix", "regex"]).optional().nullable(),
|
||||||
|
rewritePath: z.string().optional().nullable(),
|
||||||
|
rewritePathType: z.enum(["exact", "prefix", "regex", "stripPrefix"]).optional().nullable()
|
||||||
})
|
})
|
||||||
.strict();
|
.strict();
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,9 @@ function queryTargets(resourceId: number) {
|
|||||||
siteId: targets.siteId,
|
siteId: targets.siteId,
|
||||||
siteType: sites.type,
|
siteType: sites.type,
|
||||||
path: targets.path,
|
path: targets.path,
|
||||||
pathMatchType: targets.pathMatchType
|
pathMatchType: targets.pathMatchType,
|
||||||
|
rewritePath: targets.rewritePath,
|
||||||
|
rewritePathType: targets.rewritePathType
|
||||||
})
|
})
|
||||||
.from(targets)
|
.from(targets)
|
||||||
.leftJoin(sites, eq(sites.siteId, targets.siteId))
|
.leftJoin(sites, eq(sites.siteId, targets.siteId))
|
||||||
|
|||||||
@@ -28,7 +28,9 @@ const updateTargetBodySchema = z
|
|||||||
port: z.number().int().min(1).max(65535).optional(),
|
port: z.number().int().min(1).max(65535).optional(),
|
||||||
enabled: z.boolean().optional(),
|
enabled: z.boolean().optional(),
|
||||||
path: z.string().optional().nullable(),
|
path: z.string().optional().nullable(),
|
||||||
pathMatchType: z.enum(["exact", "prefix", "regex"]).optional().nullable()
|
pathMatchType: z.enum(["exact", "prefix", "regex"]).optional().nullable(),
|
||||||
|
rewritePath: z.string().optional().nullable(),
|
||||||
|
rewritePathType: z.enum(["exact", "prefix", "regex", "stripPrefix"]).optional().nullable()
|
||||||
})
|
})
|
||||||
.strict()
|
.strict()
|
||||||
.refine((data) => Object.keys(data).length > 0, {
|
.refine((data) => Object.keys(data).length > 0, {
|
||||||
|
|||||||
@@ -90,6 +90,204 @@ export async function traefikConfigProvider(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function validatePathRewriteConfig(
|
||||||
|
path: string | null,
|
||||||
|
pathMatchType: string | null,
|
||||||
|
rewritePath: string | null,
|
||||||
|
rewritePathType: string | null
|
||||||
|
): { isValid: boolean; error?: string } {
|
||||||
|
// If no path matching is configured, no rewriting is possible
|
||||||
|
if (!path || !pathMatchType) {
|
||||||
|
if (rewritePath || rewritePathType) {
|
||||||
|
return {
|
||||||
|
isValid: false,
|
||||||
|
error: "Path rewriting requires path matching to be configured"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return { isValid: true };
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rewritePathType !== "stripPrefix") {
|
||||||
|
if ((rewritePath && !rewritePathType) || (!rewritePath && rewritePathType)) {
|
||||||
|
return { isValid: false, error: "Both rewritePath and rewritePathType must be specified together" };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!rewritePath || !rewritePathType) {
|
||||||
|
return { isValid: true };
|
||||||
|
}
|
||||||
|
|
||||||
|
const validPathMatchTypes = ["exact", "prefix", "regex"];
|
||||||
|
if (!validPathMatchTypes.includes(pathMatchType)) {
|
||||||
|
return {
|
||||||
|
isValid: false,
|
||||||
|
error: `Invalid pathMatchType: ${pathMatchType}. Must be one of: ${validPathMatchTypes.join(", ")}`
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const validRewritePathTypes = ["exact", "prefix", "regex", "stripPrefix"];
|
||||||
|
if (!validRewritePathTypes.includes(rewritePathType)) {
|
||||||
|
return {
|
||||||
|
isValid: false,
|
||||||
|
error: `Invalid rewritePathType: ${rewritePathType}. Must be one of: ${validRewritePathTypes.join(", ")}`
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pathMatchType === "regex") {
|
||||||
|
try {
|
||||||
|
new RegExp(path);
|
||||||
|
} catch (e) {
|
||||||
|
return {
|
||||||
|
isValid: false,
|
||||||
|
error: `Invalid regex pattern in path: ${path}`
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Additional validation for stripPrefix
|
||||||
|
if (rewritePathType === "stripPrefix") {
|
||||||
|
if (pathMatchType !== "prefix") {
|
||||||
|
logger.warn(`stripPrefix rewrite type is most effective with prefix path matching. Current match type: ${pathMatchType}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return { isValid: true };
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function createPathRewriteMiddleware(
|
||||||
|
middlewareName: string,
|
||||||
|
path: string,
|
||||||
|
pathMatchType: string,
|
||||||
|
rewritePath: string,
|
||||||
|
rewritePathType: string
|
||||||
|
): { middlewares: { [key: string]: any }; chain?: string[] } {
|
||||||
|
const middlewares: { [key: string]: any } = {};
|
||||||
|
|
||||||
|
if (pathMatchType !== "regex" && !path.startsWith("/")) {
|
||||||
|
path = `/${path}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rewritePathType !== "regex" && rewritePath !== "" && !rewritePath.startsWith("/")) {
|
||||||
|
rewritePath = `/${rewritePath}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (rewritePathType) {
|
||||||
|
case "exact":
|
||||||
|
// Replace the path with the exact rewrite path
|
||||||
|
let exactPattern = `^${escapeRegex(path)}$`;
|
||||||
|
middlewares[middlewareName] = {
|
||||||
|
replacePathRegex: {
|
||||||
|
regex: exactPattern,
|
||||||
|
replacement: rewritePath
|
||||||
|
}
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "prefix":
|
||||||
|
// Replace matched prefix with new prefix, preserve the rest
|
||||||
|
switch (pathMatchType) {
|
||||||
|
case "prefix":
|
||||||
|
middlewares[middlewareName] = {
|
||||||
|
replacePathRegex: {
|
||||||
|
regex: `^${escapeRegex(path)}(.*)`,
|
||||||
|
replacement: `${rewritePath}$1`
|
||||||
|
}
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
case "exact":
|
||||||
|
middlewares[middlewareName] = {
|
||||||
|
replacePathRegex: {
|
||||||
|
regex: `^${escapeRegex(path)}$`,
|
||||||
|
replacement: rewritePath
|
||||||
|
}
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
case "regex":
|
||||||
|
// For regex path matching with prefix rewrite, we assume the regex has capture groups
|
||||||
|
middlewares[middlewareName] = {
|
||||||
|
replacePathRegex: {
|
||||||
|
regex: path,
|
||||||
|
replacement: rewritePath
|
||||||
|
}
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "regex":
|
||||||
|
// Use advanced regex replacement - works with any match type
|
||||||
|
let regexPattern: string;
|
||||||
|
if (pathMatchType === "regex") {
|
||||||
|
regexPattern = path;
|
||||||
|
} else if (pathMatchType === "prefix") {
|
||||||
|
regexPattern = `^${escapeRegex(path)}(.*)`;
|
||||||
|
} else { // exact
|
||||||
|
regexPattern = `^${escapeRegex(path)}$`;
|
||||||
|
}
|
||||||
|
|
||||||
|
middlewares[middlewareName] = {
|
||||||
|
replacePathRegex: {
|
||||||
|
regex: regexPattern,
|
||||||
|
replacement: rewritePath
|
||||||
|
}
|
||||||
|
};
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "stripPrefix":
|
||||||
|
// Strip the matched prefix and optionally add new path
|
||||||
|
if (pathMatchType === "prefix") {
|
||||||
|
middlewares[middlewareName] = {
|
||||||
|
stripPrefix: {
|
||||||
|
prefixes: [path]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// If rewritePath is provided and not empty, add it as a prefix after stripping
|
||||||
|
if (rewritePath && rewritePath !== "" && rewritePath !== "/") {
|
||||||
|
const addPrefixMiddlewareName = `addprefix-${middlewareName.replace('rewrite-', '')}`;
|
||||||
|
middlewares[addPrefixMiddlewareName] = {
|
||||||
|
addPrefix: {
|
||||||
|
prefix: rewritePath
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return {
|
||||||
|
middlewares,
|
||||||
|
chain: [middlewareName, addPrefixMiddlewareName]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// For exact and regex matches, use replacePathRegex to strip
|
||||||
|
let regexPattern: string;
|
||||||
|
if (pathMatchType === "exact") {
|
||||||
|
regexPattern = `^${escapeRegex(path)}$`;
|
||||||
|
} else if (pathMatchType === "regex") {
|
||||||
|
regexPattern = path;
|
||||||
|
} else {
|
||||||
|
regexPattern = `^${escapeRegex(path)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const replacement = rewritePath || "/";
|
||||||
|
middlewares[middlewareName] = {
|
||||||
|
replacePathRegex: {
|
||||||
|
regex: regexPattern,
|
||||||
|
replacement: replacement
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
logger.error(`Unknown rewritePathType: ${rewritePathType}`);
|
||||||
|
throw new Error(`Unknown rewritePathType: ${rewritePathType}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return { middlewares };
|
||||||
|
}
|
||||||
|
|
||||||
export async function getTraefikConfig(
|
export async function getTraefikConfig(
|
||||||
exitNodeId: number,
|
exitNodeId: number,
|
||||||
siteTypes: string[]
|
siteTypes: string[]
|
||||||
@@ -133,7 +331,8 @@ export async function getTraefikConfig(
|
|||||||
internalPort: targets.internalPort,
|
internalPort: targets.internalPort,
|
||||||
path: targets.path,
|
path: targets.path,
|
||||||
pathMatchType: targets.pathMatchType,
|
pathMatchType: targets.pathMatchType,
|
||||||
|
rewritePath: targets.rewritePath,
|
||||||
|
rewritePathType: targets.rewritePathType,
|
||||||
// Site fields
|
// Site fields
|
||||||
siteId: sites.siteId,
|
siteId: sites.siteId,
|
||||||
siteType: sites.type,
|
siteType: sites.type,
|
||||||
@@ -163,12 +362,28 @@ export async function getTraefikConfig(
|
|||||||
const resourceId = row.resourceId;
|
const resourceId = row.resourceId;
|
||||||
const targetPath = sanitizePath(row.path) || ""; // Handle null/undefined paths
|
const targetPath = sanitizePath(row.path) || ""; // Handle null/undefined paths
|
||||||
const pathMatchType = row.pathMatchType || "";
|
const pathMatchType = row.pathMatchType || "";
|
||||||
|
const rewritePath = row.rewritePath || "";
|
||||||
|
const rewritePathType = row.rewritePathType || "";
|
||||||
|
|
||||||
// Create a unique key combining resourceId and path+pathMatchType
|
// Create a unique key combining resourceId, path config, and rewrite config
|
||||||
const pathKey = [targetPath, pathMatchType].filter(Boolean).join("-");
|
const pathKey = [targetPath, pathMatchType, rewritePath, rewritePathType]
|
||||||
|
.filter(Boolean)
|
||||||
|
.join("-");
|
||||||
const mapKey = [resourceId, pathKey].filter(Boolean).join("-");
|
const mapKey = [resourceId, pathKey].filter(Boolean).join("-");
|
||||||
|
|
||||||
if (!resourcesMap.has(mapKey)) {
|
if (!resourcesMap.has(mapKey)) {
|
||||||
|
const validation = validatePathRewriteConfig(
|
||||||
|
row.path,
|
||||||
|
row.pathMatchType,
|
||||||
|
row.rewritePath,
|
||||||
|
row.rewritePathType
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!validation.isValid) {
|
||||||
|
logger.error(`Invalid path rewrite configuration for resource ${resourceId}: ${validation.error}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
resourcesMap.set(mapKey, {
|
resourcesMap.set(mapKey, {
|
||||||
resourceId: row.resourceId,
|
resourceId: row.resourceId,
|
||||||
fullDomain: row.fullDomain,
|
fullDomain: row.fullDomain,
|
||||||
@@ -186,7 +401,9 @@ export async function getTraefikConfig(
|
|||||||
targets: [],
|
targets: [],
|
||||||
headers: row.headers,
|
headers: row.headers,
|
||||||
path: row.path, // the targets will all have the same path
|
path: row.path, // the targets will all have the same path
|
||||||
pathMatchType: row.pathMatchType // the targets will all have the same pathMatchType
|
pathMatchType: row.pathMatchType, // the targets will all have the same pathMatchType
|
||||||
|
rewritePath: row.rewritePath,
|
||||||
|
rewritePathType: row.rewritePathType
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -199,6 +416,8 @@ export async function getTraefikConfig(
|
|||||||
port: row.port,
|
port: row.port,
|
||||||
internalPort: row.internalPort,
|
internalPort: row.internalPort,
|
||||||
enabled: row.targetEnabled,
|
enabled: row.targetEnabled,
|
||||||
|
rewritePath: row.rewritePath,
|
||||||
|
rewritePathType: row.rewritePathType,
|
||||||
site: {
|
site: {
|
||||||
siteId: row.siteId,
|
siteId: row.siteId,
|
||||||
type: row.siteType,
|
type: row.siteType,
|
||||||
@@ -230,30 +449,27 @@ export async function getTraefikConfig(
|
|||||||
for (const [key, resource] of resourcesMap.entries()) {
|
for (const [key, resource] of resourcesMap.entries()) {
|
||||||
const targets = resource.targets;
|
const targets = resource.targets;
|
||||||
|
|
||||||
const routerName = `${key}-router`;
|
const sanatizedKey = sanitizeForMiddlewareName(key);
|
||||||
const serviceName = `${key}-service`;
|
|
||||||
|
const routerName = `${sanatizedKey}-router`;
|
||||||
|
const serviceName = `${sanatizedKey}-service`;
|
||||||
const fullDomain = `${resource.fullDomain}`;
|
const fullDomain = `${resource.fullDomain}`;
|
||||||
const transportName = `${key}-transport`;
|
const transportName = `${sanatizedKey}-transport`;
|
||||||
const headersMiddlewareName = `${key}-headers-middleware`;
|
const headersMiddlewareName = `${sanatizedKey}-headers-middleware`;
|
||||||
|
|
||||||
if (!resource.enabled) {
|
if (!resource.enabled) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (resource.http) {
|
if (resource.http) {
|
||||||
if (!resource.domainId) {
|
if (!resource.domainId || !resource.fullDomain) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!resource.fullDomain) {
|
// Initialize routers and services if they don't exist
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// add routers and services empty objects if they don't exist
|
|
||||||
if (!config_output.http.routers) {
|
if (!config_output.http.routers) {
|
||||||
config_output.http.routers = {};
|
config_output.http.routers = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!config_output.http.services) {
|
if (!config_output.http.services) {
|
||||||
config_output.http.services = {};
|
config_output.http.services = {};
|
||||||
}
|
}
|
||||||
@@ -306,9 +522,51 @@ export async function getTraefikConfig(
|
|||||||
...additionalMiddlewares
|
...additionalMiddlewares
|
||||||
];
|
];
|
||||||
|
|
||||||
|
// Handle path rewriting middleware
|
||||||
|
if (resource.rewritePath &&
|
||||||
|
resource.path &&
|
||||||
|
resource.pathMatchType &&
|
||||||
|
resource.rewritePathType) {
|
||||||
|
|
||||||
|
// Create a unique middleware name
|
||||||
|
const rewriteMiddlewareName = `rewrite-r${resource.resourceId}-${sanitizeForMiddlewareName(key)}`;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const rewriteResult = createPathRewriteMiddleware(
|
||||||
|
rewriteMiddlewareName,
|
||||||
|
resource.path,
|
||||||
|
resource.pathMatchType,
|
||||||
|
resource.rewritePath,
|
||||||
|
resource.rewritePathType
|
||||||
|
);
|
||||||
|
|
||||||
|
// Initialize middlewares object if it doesn't exist
|
||||||
|
if (!config_output.http.middlewares) {
|
||||||
|
config_output.http.middlewares = {};
|
||||||
|
}
|
||||||
|
|
||||||
|
// the middleware to the config
|
||||||
|
Object.assign(config_output.http.middlewares, rewriteResult.middlewares);
|
||||||
|
|
||||||
|
// middlewares to the router middleware chain
|
||||||
|
if (rewriteResult.chain) {
|
||||||
|
// For chained middlewares (like stripPrefix + addPrefix)
|
||||||
|
routerMiddlewares.push(...rewriteResult.chain);
|
||||||
|
} else {
|
||||||
|
// Single middleware
|
||||||
|
routerMiddlewares.push(rewriteMiddlewareName);
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.debug(`Created path rewrite middleware ${rewriteMiddlewareName}: ${resource.pathMatchType}(${resource.path}) -> ${resource.rewritePathType}(${resource.rewritePath})`);
|
||||||
|
} catch (error) {
|
||||||
|
logger.error(`Failed to create path rewrite middleware for resource ${resource.resourceId}: ${error}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle custom headers middleware
|
||||||
if (resource.headers || resource.setHostHeader) {
|
if (resource.headers || resource.setHostHeader) {
|
||||||
// if there are headers, parse them into an object
|
|
||||||
const headersObj: { [key: string]: string } = {};
|
const headersObj: { [key: string]: string } = {};
|
||||||
|
|
||||||
if (resource.headers) {
|
if (resource.headers) {
|
||||||
let headersArr: { name: string; value: string }[] = [];
|
let headersArr: { name: string; value: string }[] = [];
|
||||||
try {
|
try {
|
||||||
@@ -317,9 +575,7 @@ export async function getTraefikConfig(
|
|||||||
value: string;
|
value: string;
|
||||||
}[];
|
}[];
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
logger.warn(
|
logger.warn(`Failed to parse headers for resource ${resource.resourceId}: ${e}`);
|
||||||
`Failed to parse headers for resource ${resource.resourceId}: ${e}`
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
headersArr.forEach((header) => {
|
headersArr.forEach((header) => {
|
||||||
@@ -331,9 +587,7 @@ export async function getTraefikConfig(
|
|||||||
headersObj["Host"] = resource.setHostHeader;
|
headersObj["Host"] = resource.setHostHeader;
|
||||||
}
|
}
|
||||||
|
|
||||||
// check if the object is not empty
|
|
||||||
if (Object.keys(headersObj).length > 0) {
|
if (Object.keys(headersObj).length > 0) {
|
||||||
// Add the headers middleware
|
|
||||||
if (!config_output.http.middlewares) {
|
if (!config_output.http.middlewares) {
|
||||||
config_output.http.middlewares = {};
|
config_output.http.middlewares = {};
|
||||||
}
|
}
|
||||||
@@ -347,8 +601,10 @@ export async function getTraefikConfig(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Build routing rules
|
||||||
let rule = `Host(\`${fullDomain}\`)`;
|
let rule = `Host(\`${fullDomain}\`)`;
|
||||||
let priority = 100;
|
let priority = 100;
|
||||||
|
|
||||||
if (resource.path && resource.pathMatchType) {
|
if (resource.path && resource.pathMatchType) {
|
||||||
priority += 1;
|
priority += 1;
|
||||||
// add path to rule based on match type
|
// add path to rule based on match type
|
||||||
@@ -494,7 +750,7 @@ export async function getTraefikConfig(
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Non-HTTP (TCP/UDP) configuration
|
// Non-HTTP (TCP/UDP) configuration
|
||||||
if (!resource.enableProxy) {
|
if (!resource.enableProxy || !resource.proxyPort) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -590,10 +846,25 @@ export async function getTraefikConfig(
|
|||||||
|
|
||||||
function sanitizePath(path: string | null | undefined): string | undefined {
|
function sanitizePath(path: string | null | undefined): string | undefined {
|
||||||
if (!path) return undefined;
|
if (!path) return undefined;
|
||||||
// clean any non alphanumeric characters from the path and replace with dashes
|
|
||||||
// the path cant be too long either, so limit to 50 characters
|
const trimmed = path.trim();
|
||||||
if (path.length > 50) {
|
if (!trimmed) return undefined;
|
||||||
path = path.substring(0, 50);
|
|
||||||
|
// Preserve path structure for rewriting, only warn if very long
|
||||||
|
if (trimmed.length > 1000) {
|
||||||
|
logger.warn(`Path exceeds 1000 characters: ${trimmed.substring(0, 100)}...`);
|
||||||
|
return trimmed.substring(0, 1000);
|
||||||
}
|
}
|
||||||
return path.replace(/[^a-zA-Z0-9]/g, "");
|
|
||||||
|
return trimmed;
|
||||||
|
}
|
||||||
|
|
||||||
|
function sanitizeForMiddlewareName(str: string): string {
|
||||||
|
// Replace any characters that aren't alphanumeric or dash with dash
|
||||||
|
// and remove consecutive dashes
|
||||||
|
return str.replace(/[^a-zA-Z0-9-]/g, '-').replace(/-+/g, '-').replace(/^-|-$/g, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
function escapeRegex(string: string): string {
|
||||||
|
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
||||||
}
|
}
|
||||||
@@ -73,6 +73,7 @@ import {
|
|||||||
CircleCheck,
|
CircleCheck,
|
||||||
CircleX,
|
CircleX,
|
||||||
ArrowRight,
|
ArrowRight,
|
||||||
|
Plus,
|
||||||
MoveRight
|
MoveRight
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import { ContainersSelector } from "@app/components/ContainersSelector";
|
import { ContainersSelector } from "@app/components/ContainersSelector";
|
||||||
@@ -95,9 +96,9 @@ import {
|
|||||||
CommandItem,
|
CommandItem,
|
||||||
CommandList
|
CommandList
|
||||||
} from "@app/components/ui/command";
|
} from "@app/components/ui/command";
|
||||||
import { Badge } from "@app/components/ui/badge";
|
|
||||||
import { parseHostTarget } from "@app/lib/parseHostTarget";
|
import { parseHostTarget } from "@app/lib/parseHostTarget";
|
||||||
import { HeadersInput } from "@app/components/HeadersInput";
|
import { HeadersInput } from "@app/components/HeadersInput";
|
||||||
|
import { PathMatchDisplay, PathMatchModal, PathRewriteDisplay, PathRewriteModal } from "@app/components/PathMatchRenameModal";
|
||||||
|
|
||||||
const addTargetSchema = z.object({
|
const addTargetSchema = z.object({
|
||||||
ip: z.string().refine(isTargetValid),
|
ip: z.string().refine(isTargetValid),
|
||||||
@@ -105,7 +106,9 @@ const addTargetSchema = z.object({
|
|||||||
port: z.coerce.number().int().positive(),
|
port: z.coerce.number().int().positive(),
|
||||||
siteId: z.number().int().positive(),
|
siteId: z.number().int().positive(),
|
||||||
path: z.string().optional().nullable(),
|
path: z.string().optional().nullable(),
|
||||||
pathMatchType: z.enum(["exact", "prefix", "regex"]).optional().nullable()
|
pathMatchType: z.enum(["exact", "prefix", "regex"]).optional().nullable(),
|
||||||
|
rewritePath: z.string().optional().nullable(),
|
||||||
|
rewritePathType: z.enum(["exact", "prefix", "regex", "stripPrefix"]).optional().nullable()
|
||||||
}).refine(
|
}).refine(
|
||||||
(data) => {
|
(data) => {
|
||||||
// If path is provided, pathMatchType must be provided
|
// If path is provided, pathMatchType must be provided
|
||||||
@@ -138,6 +141,22 @@ const addTargetSchema = z.object({
|
|||||||
{
|
{
|
||||||
message: "Invalid path configuration"
|
message: "Invalid path configuration"
|
||||||
}
|
}
|
||||||
|
)
|
||||||
|
.refine(
|
||||||
|
(data) => {
|
||||||
|
// If rewritePath is provided, rewritePathType must be provided
|
||||||
|
if (data.rewritePath && !data.rewritePathType) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// If rewritePathType is provided, rewritePath must be provided
|
||||||
|
if (data.rewritePathType && !data.rewritePath) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
{
|
||||||
|
message: "Invalid rewrite path configuration"
|
||||||
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
const targetsSettingsSchema = z.object({
|
const targetsSettingsSchema = z.object({
|
||||||
@@ -259,8 +278,10 @@ export default function ReverseProxyTargets(props: {
|
|||||||
method: resource.http ? "http" : null,
|
method: resource.http ? "http" : null,
|
||||||
port: "" as any as number,
|
port: "" as any as number,
|
||||||
path: null,
|
path: null,
|
||||||
pathMatchType: null
|
pathMatchType: null,
|
||||||
}
|
rewritePath: null,
|
||||||
|
rewritePathType: null,
|
||||||
|
} as z.infer<typeof addTargetSchema>
|
||||||
});
|
});
|
||||||
|
|
||||||
const watchedIp = addTargetForm.watch("ip");
|
const watchedIp = addTargetForm.watch("ip");
|
||||||
@@ -436,6 +457,8 @@ export default function ReverseProxyTargets(props: {
|
|||||||
...data,
|
...data,
|
||||||
path: data.path || null,
|
path: data.path || null,
|
||||||
pathMatchType: data.pathMatchType || null,
|
pathMatchType: data.pathMatchType || null,
|
||||||
|
rewritePath: data.rewritePath || null,
|
||||||
|
rewritePathType: data.rewritePathType || null,
|
||||||
siteType: site?.type || null,
|
siteType: site?.type || null,
|
||||||
enabled: true,
|
enabled: true,
|
||||||
targetId: new Date().getTime(),
|
targetId: new Date().getTime(),
|
||||||
@@ -449,7 +472,9 @@ export default function ReverseProxyTargets(props: {
|
|||||||
method: resource.http ? "http" : null,
|
method: resource.http ? "http" : null,
|
||||||
port: "" as any as number,
|
port: "" as any as number,
|
||||||
path: null,
|
path: null,
|
||||||
pathMatchType: null
|
pathMatchType: null,
|
||||||
|
rewritePath: null,
|
||||||
|
rewritePathType: null,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -494,7 +519,9 @@ export default function ReverseProxyTargets(props: {
|
|||||||
enabled: target.enabled,
|
enabled: target.enabled,
|
||||||
siteId: target.siteId,
|
siteId: target.siteId,
|
||||||
path: target.path,
|
path: target.path,
|
||||||
pathMatchType: target.pathMatchType
|
pathMatchType: target.pathMatchType,
|
||||||
|
rewritePath: target.rewritePath,
|
||||||
|
rewritePathType: target.rewritePathType
|
||||||
};
|
};
|
||||||
|
|
||||||
if (target.new) {
|
if (target.new) {
|
||||||
@@ -571,93 +598,66 @@ export default function ReverseProxyTargets(props: {
|
|||||||
accessorKey: "path",
|
accessorKey: "path",
|
||||||
header: t("matchPath"),
|
header: t("matchPath"),
|
||||||
cell: ({ row }) => {
|
cell: ({ row }) => {
|
||||||
const [showPathInput, setShowPathInput] = useState(
|
const hasPathMatch = !!(row.original.path || row.original.pathMatchType);
|
||||||
!!(row.original.path || row.original.pathMatchType)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!showPathInput) {
|
return hasPathMatch ? (
|
||||||
return (
|
<div className="flex items-center gap-1">
|
||||||
|
<PathMatchModal
|
||||||
|
value={{
|
||||||
|
path: row.original.path,
|
||||||
|
pathMatchType: row.original.pathMatchType,
|
||||||
|
}}
|
||||||
|
onChange={(config) => updateTarget(row.original.targetId, config)}
|
||||||
|
trigger={
|
||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
onClick={() => {
|
className="flex items-center gap-2 p-2 max-w-md w-full text-left cursor-pointer"
|
||||||
setShowPathInput(true);
|
|
||||||
// Set default pathMatchType when first showing path input
|
|
||||||
if (!row.original.pathMatchType) {
|
|
||||||
updateTarget(row.original.targetId, {
|
|
||||||
...row.original,
|
|
||||||
pathMatchType: "prefix"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
+ {t("matchPath")}
|
<PathMatchDisplay
|
||||||
</Button>
|
value={{
|
||||||
);
|
path: row.original.path,
|
||||||
}
|
pathMatchType: row.original.pathMatchType,
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="flex gap-2 min-w-[200px] items-center">
|
|
||||||
<Select
|
|
||||||
defaultValue={row.original.pathMatchType || "prefix"}
|
|
||||||
onValueChange={(value) =>
|
|
||||||
updateTarget(row.original.targetId, {
|
|
||||||
...row.original,
|
|
||||||
pathMatchType: value as "exact" | "prefix" | "regex"
|
|
||||||
})
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<SelectTrigger className="w-25">
|
|
||||||
<SelectValue />
|
|
||||||
</SelectTrigger>
|
|
||||||
<SelectContent>
|
|
||||||
<SelectItem value="prefix">Prefix</SelectItem>
|
|
||||||
<SelectItem value="exact">Exact</SelectItem>
|
|
||||||
<SelectItem value="regex">Regex</SelectItem>
|
|
||||||
</SelectContent>
|
|
||||||
</Select>
|
|
||||||
<Input
|
|
||||||
placeholder={
|
|
||||||
row.original.pathMatchType === "regex"
|
|
||||||
? "^/api/.*"
|
|
||||||
: "/path"
|
|
||||||
}
|
|
||||||
defaultValue={row.original.path || ""}
|
|
||||||
className="flex-1 min-w-[150px]"
|
|
||||||
onBlur={(e) => {
|
|
||||||
const value = e.target.value.trim();
|
|
||||||
if (!value) {
|
|
||||||
setShowPathInput(false);
|
|
||||||
updateTarget(row.original.targetId, {
|
|
||||||
...row.original,
|
|
||||||
path: null,
|
|
||||||
pathMatchType: null
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
updateTarget(row.original.targetId, {
|
|
||||||
...row.original,
|
|
||||||
path: value
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</Button>
|
||||||
|
}
|
||||||
|
/>
|
||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="text"
|
||||||
onClick={() => {
|
size="sm"
|
||||||
setShowPathInput(false);
|
className="px-1"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
updateTarget(row.original.targetId, {
|
updateTarget(row.original.targetId, {
|
||||||
...row.original,
|
...row.original,
|
||||||
path: null,
|
path: null,
|
||||||
pathMatchType: null
|
pathMatchType: null,
|
||||||
|
rewritePath: null,
|
||||||
|
rewritePathType: null
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
×
|
×
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<MoveRight className="ml-4 h-4 w-4" />
|
{/* <MoveRight className="ml-1 h-4 w-4" /> */}
|
||||||
</div>
|
</div>
|
||||||
);
|
) : (
|
||||||
|
<PathMatchModal
|
||||||
|
value={{
|
||||||
|
path: row.original.path,
|
||||||
|
pathMatchType: row.original.pathMatchType,
|
||||||
|
}}
|
||||||
|
onChange={(config) => updateTarget(row.original.targetId, config)}
|
||||||
|
trigger={
|
||||||
|
<Button variant="outline">
|
||||||
|
<Plus className="h-4 w-4 mr-2" />
|
||||||
|
{t("matchPath")}
|
||||||
|
</Button>
|
||||||
}
|
}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
accessorKey: "siteId",
|
accessorKey: "siteId",
|
||||||
@@ -856,6 +856,72 @@ export default function ReverseProxyTargets(props: {
|
|||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "rewritePath",
|
||||||
|
header: t("rewritePath"),
|
||||||
|
cell: ({ row }) => {
|
||||||
|
const hasRewritePath = !!(row.original.rewritePath || row.original.rewritePathType);
|
||||||
|
const noPathMatch = !row.original.path && !row.original.pathMatchType;
|
||||||
|
|
||||||
|
return hasRewritePath && !noPathMatch ? (
|
||||||
|
<div className="flex items-center gap-1">
|
||||||
|
{/* <MoveRight className="mr-2 h-4 w-4" /> */}
|
||||||
|
<PathRewriteModal
|
||||||
|
value={{
|
||||||
|
rewritePath: row.original.rewritePath,
|
||||||
|
rewritePathType: row.original.rewritePathType,
|
||||||
|
}}
|
||||||
|
onChange={(config) => updateTarget(row.original.targetId, config)}
|
||||||
|
trigger={
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="flex items-center gap-2 p-2 max-w-md w-full text-left cursor-pointer"
|
||||||
|
disabled={noPathMatch}
|
||||||
|
>
|
||||||
|
<PathRewriteDisplay
|
||||||
|
value={{
|
||||||
|
rewritePath: row.original.rewritePath,
|
||||||
|
rewritePathType: row.original.rewritePathType,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Button>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
size="sm"
|
||||||
|
variant="text"
|
||||||
|
className="px-1"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
updateTarget(row.original.targetId, {
|
||||||
|
...row.original,
|
||||||
|
rewritePath: null,
|
||||||
|
rewritePathType: null,
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
×
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<PathRewriteModal
|
||||||
|
value={{
|
||||||
|
rewritePath: row.original.rewritePath,
|
||||||
|
rewritePathType: row.original.rewritePathType,
|
||||||
|
}}
|
||||||
|
onChange={(config) => updateTarget(row.original.targetId, config)}
|
||||||
|
trigger={
|
||||||
|
<Button variant="outline" disabled={noPathMatch}>
|
||||||
|
<Plus className="h-4 w-4 mr-2" />
|
||||||
|
{t("rewritePath")}
|
||||||
|
</Button>
|
||||||
|
}
|
||||||
|
disabled={noPathMatch}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
// {
|
// {
|
||||||
// accessorKey: "protocol",
|
// accessorKey: "protocol",
|
||||||
// header: t('targetProtocol'),
|
// header: t('targetProtocol'),
|
||||||
@@ -1527,7 +1593,6 @@ export default function ReverseProxyTargets(props: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function isIPInSubnet(subnet: string, ip: string): boolean {
|
function isIPInSubnet(subnet: string, ip: string): boolean {
|
||||||
// Split subnet into IP and mask parts
|
|
||||||
const [subnetIP, maskBits] = subnet.split("/");
|
const [subnetIP, maskBits] = subnet.split("/");
|
||||||
const mask = parseInt(maskBits);
|
const mask = parseInt(maskBits);
|
||||||
|
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ import {
|
|||||||
} from "@app/components/ui/popover";
|
} from "@app/components/ui/popover";
|
||||||
import { CaretSortIcon, CheckIcon } from "@radix-ui/react-icons";
|
import { CaretSortIcon, CheckIcon } from "@radix-ui/react-icons";
|
||||||
import { cn } from "@app/lib/cn";
|
import { cn } from "@app/lib/cn";
|
||||||
import { ArrowRight, MoveRight, SquareArrowOutUpRight } from "lucide-react";
|
import { ArrowRight, MoveRight, Plus, SquareArrowOutUpRight } from "lucide-react";
|
||||||
import CopyTextBox from "@app/components/CopyTextBox";
|
import CopyTextBox from "@app/components/CopyTextBox";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { useTranslations } from "next-intl";
|
import { useTranslations } from "next-intl";
|
||||||
@@ -92,6 +92,7 @@ import { parseHostTarget } from "@app/lib/parseHostTarget";
|
|||||||
import { toASCII, toUnicode } from 'punycode';
|
import { toASCII, toUnicode } from 'punycode';
|
||||||
import { DomainRow } from "../../../../../components/DomainsTable";
|
import { DomainRow } from "../../../../../components/DomainsTable";
|
||||||
import { finalizeSubdomainSanitize } from "@app/lib/subdomain-utils";
|
import { finalizeSubdomainSanitize } from "@app/lib/subdomain-utils";
|
||||||
|
import { PathMatchDisplay, PathMatchModal, PathRewriteDisplay, PathRewriteModal } from "@app/components/PathMatchRenameModal";
|
||||||
|
|
||||||
|
|
||||||
const baseResourceFormSchema = z.object({
|
const baseResourceFormSchema = z.object({
|
||||||
@@ -116,7 +117,9 @@ const addTargetSchema = z.object({
|
|||||||
port: z.coerce.number().int().positive(),
|
port: z.coerce.number().int().positive(),
|
||||||
siteId: z.number().int().positive(),
|
siteId: z.number().int().positive(),
|
||||||
path: z.string().optional().nullable(),
|
path: z.string().optional().nullable(),
|
||||||
pathMatchType: z.enum(["exact", "prefix", "regex"]).optional().nullable()
|
pathMatchType: z.enum(["exact", "prefix", "regex"]).optional().nullable(),
|
||||||
|
rewritePath: z.string().optional().nullable(),
|
||||||
|
rewritePathType: z.enum(["exact", "prefix", "regex", "stripPrefix"]).optional().nullable()
|
||||||
}).refine(
|
}).refine(
|
||||||
(data) => {
|
(data) => {
|
||||||
// If path is provided, pathMatchType must be provided
|
// If path is provided, pathMatchType must be provided
|
||||||
@@ -149,6 +152,22 @@ const addTargetSchema = z.object({
|
|||||||
{
|
{
|
||||||
message: "Invalid path configuration"
|
message: "Invalid path configuration"
|
||||||
}
|
}
|
||||||
|
)
|
||||||
|
.refine(
|
||||||
|
(data) => {
|
||||||
|
// If rewritePath is provided, rewritePathType must be provided
|
||||||
|
if (data.rewritePath && !data.rewritePathType) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// If rewritePathType is provided, rewritePath must be provided
|
||||||
|
if (data.rewritePathType && !data.rewritePath) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
},
|
||||||
|
{
|
||||||
|
message: "Invalid rewrite path configuration"
|
||||||
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
type BaseResourceFormValues = z.infer<typeof baseResourceFormSchema>;
|
type BaseResourceFormValues = z.infer<typeof baseResourceFormSchema>;
|
||||||
@@ -240,8 +259,10 @@ export default function Page() {
|
|||||||
method: baseForm.watch("http") ? "http" : null,
|
method: baseForm.watch("http") ? "http" : null,
|
||||||
port: "" as any as number,
|
port: "" as any as number,
|
||||||
path: null,
|
path: null,
|
||||||
pathMatchType: null
|
pathMatchType: null,
|
||||||
}
|
rewritePath: null,
|
||||||
|
rewritePathType: null,
|
||||||
|
} as z.infer<typeof addTargetSchema>
|
||||||
});
|
});
|
||||||
|
|
||||||
const watchedIp = addTargetForm.watch("ip");
|
const watchedIp = addTargetForm.watch("ip");
|
||||||
@@ -313,6 +334,8 @@ export default function Page() {
|
|||||||
...data,
|
...data,
|
||||||
path: data.path || null,
|
path: data.path || null,
|
||||||
pathMatchType: data.pathMatchType || null,
|
pathMatchType: data.pathMatchType || null,
|
||||||
|
rewritePath: data.rewritePath || null,
|
||||||
|
rewritePathType: data.rewritePathType || null,
|
||||||
siteType: site?.type || null,
|
siteType: site?.type || null,
|
||||||
enabled: true,
|
enabled: true,
|
||||||
targetId: new Date().getTime(),
|
targetId: new Date().getTime(),
|
||||||
@@ -326,7 +349,9 @@ export default function Page() {
|
|||||||
method: baseForm.watch("http") ? "http" : null,
|
method: baseForm.watch("http") ? "http" : null,
|
||||||
port: "" as any as number,
|
port: "" as any as number,
|
||||||
path: null,
|
path: null,
|
||||||
pathMatchType: null
|
pathMatchType: null,
|
||||||
|
rewritePath: null,
|
||||||
|
rewritePathType: null,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -422,7 +447,9 @@ export default function Page() {
|
|||||||
enabled: target.enabled,
|
enabled: target.enabled,
|
||||||
siteId: target.siteId,
|
siteId: target.siteId,
|
||||||
path: target.path,
|
path: target.path,
|
||||||
pathMatchType: target.pathMatchType
|
pathMatchType: target.pathMatchType,
|
||||||
|
rewritePath: target.rewritePath,
|
||||||
|
rewritePathType: target.rewritePathType
|
||||||
};
|
};
|
||||||
|
|
||||||
await api.put(`/resource/${id}/target`, data);
|
await api.put(`/resource/${id}/target`, data);
|
||||||
@@ -549,93 +576,66 @@ export default function Page() {
|
|||||||
accessorKey: "path",
|
accessorKey: "path",
|
||||||
header: t("matchPath"),
|
header: t("matchPath"),
|
||||||
cell: ({ row }) => {
|
cell: ({ row }) => {
|
||||||
const [showPathInput, setShowPathInput] = useState(
|
const hasPathMatch = !!(row.original.path || row.original.pathMatchType);
|
||||||
!!(row.original.path || row.original.pathMatchType)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!showPathInput) {
|
return hasPathMatch ? (
|
||||||
return (
|
<div className="flex items-center gap-1">
|
||||||
|
<PathMatchModal
|
||||||
|
value={{
|
||||||
|
path: row.original.path,
|
||||||
|
pathMatchType: row.original.pathMatchType,
|
||||||
|
}}
|
||||||
|
onChange={(config) => updateTarget(row.original.targetId, config)}
|
||||||
|
trigger={
|
||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
onClick={() => {
|
className="flex items-center gap-2 p-2 max-w-md w-full text-left cursor-pointer"
|
||||||
setShowPathInput(true);
|
|
||||||
// Set default pathMatchType when first showing path input
|
|
||||||
if (!row.original.pathMatchType) {
|
|
||||||
updateTarget(row.original.targetId, {
|
|
||||||
...row.original,
|
|
||||||
pathMatchType: "prefix"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
+ {t("matchPath")}
|
<PathMatchDisplay
|
||||||
</Button>
|
value={{
|
||||||
);
|
path: row.original.path,
|
||||||
}
|
pathMatchType: row.original.pathMatchType,
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="flex gap-2 min-w-[200px] items-center">
|
|
||||||
<Select
|
|
||||||
defaultValue={row.original.pathMatchType || "prefix"}
|
|
||||||
onValueChange={(value) =>
|
|
||||||
updateTarget(row.original.targetId, {
|
|
||||||
...row.original,
|
|
||||||
pathMatchType: value as "exact" | "prefix" | "regex"
|
|
||||||
})
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<SelectTrigger className="w-25">
|
|
||||||
<SelectValue />
|
|
||||||
</SelectTrigger>
|
|
||||||
<SelectContent>
|
|
||||||
<SelectItem value="prefix">Prefix</SelectItem>
|
|
||||||
<SelectItem value="exact">Exact</SelectItem>
|
|
||||||
<SelectItem value="regex">Regex</SelectItem>
|
|
||||||
</SelectContent>
|
|
||||||
</Select>
|
|
||||||
<Input
|
|
||||||
placeholder={
|
|
||||||
row.original.pathMatchType === "regex"
|
|
||||||
? "^/api/.*"
|
|
||||||
: "/path"
|
|
||||||
}
|
|
||||||
defaultValue={row.original.path || ""}
|
|
||||||
className="flex-1 min-w-[150px]"
|
|
||||||
onBlur={(e) => {
|
|
||||||
const value = e.target.value.trim();
|
|
||||||
if (!value) {
|
|
||||||
setShowPathInput(false);
|
|
||||||
updateTarget(row.original.targetId, {
|
|
||||||
...row.original,
|
|
||||||
path: null,
|
|
||||||
pathMatchType: null
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
updateTarget(row.original.targetId, {
|
|
||||||
...row.original,
|
|
||||||
path: value
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</Button>
|
||||||
|
}
|
||||||
|
/>
|
||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="text"
|
||||||
onClick={() => {
|
size="sm"
|
||||||
setShowPathInput(false);
|
className="px-1"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
updateTarget(row.original.targetId, {
|
updateTarget(row.original.targetId, {
|
||||||
...row.original,
|
...row.original,
|
||||||
path: null,
|
path: null,
|
||||||
pathMatchType: null
|
pathMatchType: null,
|
||||||
|
rewritePath: null,
|
||||||
|
rewritePathType: null
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
×
|
×
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<MoveRight className="ml-4 h-4 w-4" />
|
{/* <MoveRight className="ml-1 h-4 w-4" /> */}
|
||||||
</div>
|
</div>
|
||||||
);
|
) : (
|
||||||
|
<PathMatchModal
|
||||||
|
value={{
|
||||||
|
path: row.original.path,
|
||||||
|
pathMatchType: row.original.pathMatchType,
|
||||||
|
}}
|
||||||
|
onChange={(config) => updateTarget(row.original.targetId, config)}
|
||||||
|
trigger={
|
||||||
|
<Button variant="outline">
|
||||||
|
<Plus className="h-4 w-4 mr-2" />
|
||||||
|
{t("matchPath")}
|
||||||
|
</Button>
|
||||||
}
|
}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
accessorKey: "siteId",
|
accessorKey: "siteId",
|
||||||
@@ -820,6 +820,71 @@ export default function Page() {
|
|||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
accessorKey: "rewritePath",
|
||||||
|
header: t("rewritePath"),
|
||||||
|
cell: ({ row }) => {
|
||||||
|
const hasRewritePath = !!(row.original.rewritePath || row.original.rewritePathType);
|
||||||
|
const noPathMatch = !row.original.path && !row.original.pathMatchType;
|
||||||
|
|
||||||
|
return hasRewritePath && !noPathMatch ? (
|
||||||
|
<div className="flex items-center gap-1">
|
||||||
|
{/* <MoveRight className="mr-2 h-4 w-4" /> */}
|
||||||
|
<PathRewriteModal
|
||||||
|
value={{
|
||||||
|
rewritePath: row.original.rewritePath,
|
||||||
|
rewritePathType: row.original.rewritePathType,
|
||||||
|
}}
|
||||||
|
onChange={(config) => updateTarget(row.original.targetId, config)}
|
||||||
|
trigger={
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="flex items-center gap-2 p-2 max-w-md w-full text-left cursor-pointer"
|
||||||
|
disabled={noPathMatch}
|
||||||
|
>
|
||||||
|
<PathRewriteDisplay
|
||||||
|
value={{
|
||||||
|
rewritePath: row.original.rewritePath,
|
||||||
|
rewritePathType: row.original.rewritePathType,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Button>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
size="sm"
|
||||||
|
variant="text"
|
||||||
|
className="px-1"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
updateTarget(row.original.targetId, {
|
||||||
|
...row.original,
|
||||||
|
rewritePath: null,
|
||||||
|
rewritePathType: null,
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
×
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<PathRewriteModal
|
||||||
|
value={{
|
||||||
|
rewritePath: row.original.rewritePath,
|
||||||
|
rewritePathType: row.original.rewritePathType,
|
||||||
|
}}
|
||||||
|
onChange={(config) => updateTarget(row.original.targetId, config)}
|
||||||
|
trigger={
|
||||||
|
<Button variant="outline" disabled={noPathMatch}>
|
||||||
|
<Plus className="h-4 w-4 mr-2" />
|
||||||
|
{t("rewritePath")}
|
||||||
|
</Button>
|
||||||
|
}
|
||||||
|
disabled={noPathMatch}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
accessorKey: "enabled",
|
accessorKey: "enabled",
|
||||||
header: t("enabled"),
|
header: t("enabled"),
|
||||||
|
|||||||
293
src/components/PathMatchRenameModal.tsx
Normal file
293
src/components/PathMatchRenameModal.tsx
Normal file
@@ -0,0 +1,293 @@
|
|||||||
|
import { Pencil } from "lucide-react";
|
||||||
|
import {
|
||||||
|
Select,
|
||||||
|
SelectContent,
|
||||||
|
SelectItem,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectValue,
|
||||||
|
} from "@/components/ui/select";
|
||||||
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogFooter,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
DialogTrigger,
|
||||||
|
} from "@app/components/ui/dialog";
|
||||||
|
import { Badge } from "@app/components/ui/badge";
|
||||||
|
import { Label } from "@app/components/ui/label";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { Input } from "./ui/input";
|
||||||
|
import { Button } from "./ui/button";
|
||||||
|
|
||||||
|
|
||||||
|
export function PathMatchModal({
|
||||||
|
value,
|
||||||
|
onChange,
|
||||||
|
trigger,
|
||||||
|
}: {
|
||||||
|
value: { path: string | null; pathMatchType: string | null };
|
||||||
|
onChange: (config: { path: string | null; pathMatchType: string | null }) => void;
|
||||||
|
trigger: React.ReactNode;
|
||||||
|
}) {
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const [matchType, setMatchType] = useState(value?.pathMatchType || "prefix");
|
||||||
|
const [path, setPath] = useState(value?.path || "");
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (open) {
|
||||||
|
setMatchType(value?.pathMatchType || "prefix");
|
||||||
|
setPath(value?.path || "");
|
||||||
|
}
|
||||||
|
}, [open, value]);
|
||||||
|
|
||||||
|
const handleSave = () => {
|
||||||
|
onChange({ pathMatchType: matchType as any, path: path.trim() });
|
||||||
|
setOpen(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClear = () => {
|
||||||
|
onChange({ pathMatchType: null, path: null });
|
||||||
|
setOpen(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const getPlaceholder = () => (matchType === "regex" ? "^/api/.*" : "/path");
|
||||||
|
|
||||||
|
const getHelpText = () => {
|
||||||
|
switch (matchType) {
|
||||||
|
case "prefix":
|
||||||
|
return "Example: /api matches /api, /api/users, etc.";
|
||||||
|
case "exact":
|
||||||
|
return "Example: /api matches only /api";
|
||||||
|
case "regex":
|
||||||
|
return "Example: ^/api/.* matches /api/anything";
|
||||||
|
default:
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={setOpen}>
|
||||||
|
<DialogTrigger asChild>{trigger}</DialogTrigger>
|
||||||
|
<DialogContent className="sm:max-w-[500px]">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Configure Path Matching</DialogTitle>
|
||||||
|
<DialogDescription>
|
||||||
|
Set up how incoming requests should be matched based on their path.
|
||||||
|
</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
|
<div className="grid gap-4 py-4">
|
||||||
|
<div className="grid gap-2">
|
||||||
|
<Label htmlFor="match-type">Match Type</Label>
|
||||||
|
<Select value={matchType} onValueChange={setMatchType}>
|
||||||
|
<SelectTrigger id="match-type">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="prefix">Prefix</SelectItem>
|
||||||
|
<SelectItem value="exact">Exact</SelectItem>
|
||||||
|
<SelectItem value="regex">Regex</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
<div className="grid gap-2">
|
||||||
|
<Label htmlFor="path-value">Path Value</Label>
|
||||||
|
<Input
|
||||||
|
id="path-value"
|
||||||
|
placeholder={getPlaceholder()}
|
||||||
|
value={path}
|
||||||
|
onChange={(e) => setPath(e.target.value)}
|
||||||
|
/>
|
||||||
|
<p className="text-sm text-muted-foreground">{getHelpText()}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<DialogFooter className="gap-2">
|
||||||
|
{value?.path && (
|
||||||
|
<Button variant="outline" onClick={handleClear}>
|
||||||
|
Clear
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
<Button onClick={handleSave} disabled={!path.trim()}>
|
||||||
|
Save Changes
|
||||||
|
</Button>
|
||||||
|
</DialogFooter>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function PathRewriteModal({
|
||||||
|
value,
|
||||||
|
onChange,
|
||||||
|
trigger,
|
||||||
|
disabled,
|
||||||
|
}: {
|
||||||
|
value: { rewritePath: string | null; rewritePathType: string | null };
|
||||||
|
onChange: (config: { rewritePath: string | null; rewritePathType: string | null }) => void;
|
||||||
|
trigger: React.ReactNode;
|
||||||
|
disabled?: boolean;
|
||||||
|
}) {
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const [rewriteType, setRewriteType] = useState(value?.rewritePathType || "prefix");
|
||||||
|
const [rewritePath, setRewritePath] = useState(value?.rewritePath || "");
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (open) {
|
||||||
|
setRewriteType(value?.rewritePathType || "prefix");
|
||||||
|
setRewritePath(value?.rewritePath || "");
|
||||||
|
}
|
||||||
|
}, [open, value]);
|
||||||
|
|
||||||
|
const handleSave = () => {
|
||||||
|
onChange({ rewritePathType: rewriteType as any, rewritePath: rewritePath.trim() });
|
||||||
|
setOpen(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClear = () => {
|
||||||
|
onChange({ rewritePathType: null, rewritePath: null });
|
||||||
|
setOpen(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const getPlaceholder = () => {
|
||||||
|
switch (rewriteType) {
|
||||||
|
case "regex":
|
||||||
|
return "/new/$1";
|
||||||
|
case "stripPrefix":
|
||||||
|
return "";
|
||||||
|
default:
|
||||||
|
return "/new-path";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const getHelpText = () => {
|
||||||
|
switch (rewriteType) {
|
||||||
|
case "prefix":
|
||||||
|
return "Replace the matched prefix with this value";
|
||||||
|
case "exact":
|
||||||
|
return "Replace the entire path with this value";
|
||||||
|
case "regex":
|
||||||
|
return "Use capture groups like $1, $2 for replacement";
|
||||||
|
case "stripPrefix":
|
||||||
|
return "Leave empty to strip prefix or provide new prefix";
|
||||||
|
default:
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={setOpen}>
|
||||||
|
<DialogTrigger asChild disabled={disabled}>
|
||||||
|
{trigger}
|
||||||
|
</DialogTrigger>
|
||||||
|
<DialogContent className="sm:max-w-[500px]">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Configure Path Rewriting</DialogTitle>
|
||||||
|
<DialogDescription>
|
||||||
|
Transform the matched path before forwarding to the target.
|
||||||
|
</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
|
<div className="grid gap-4 py-4">
|
||||||
|
<div className="grid gap-2">
|
||||||
|
<Label htmlFor="rewrite-type">Rewrite Type</Label>
|
||||||
|
<Select value={rewriteType} onValueChange={setRewriteType}>
|
||||||
|
<SelectTrigger id="rewrite-type">
|
||||||
|
<SelectValue />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectItem value="prefix">Prefix - Replace prefix</SelectItem>
|
||||||
|
<SelectItem value="exact">Exact - Replace entire path</SelectItem>
|
||||||
|
<SelectItem value="regex">Regex - Pattern replacement</SelectItem>
|
||||||
|
<SelectItem value="stripPrefix">Strip Prefix - Remove prefix</SelectItem>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
<div className="grid gap-2">
|
||||||
|
<Label htmlFor="rewrite-value">Rewrite Value</Label>
|
||||||
|
<Input
|
||||||
|
id="rewrite-value"
|
||||||
|
placeholder={getPlaceholder()}
|
||||||
|
value={rewritePath}
|
||||||
|
onChange={(e) => setRewritePath(e.target.value)}
|
||||||
|
/>
|
||||||
|
<p className="text-sm text-muted-foreground">{getHelpText()}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<DialogFooter className="gap-2">
|
||||||
|
{value?.rewritePath && (
|
||||||
|
<Button variant="outline" onClick={handleClear}>
|
||||||
|
Clear
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
<Button
|
||||||
|
onClick={handleSave}
|
||||||
|
disabled={rewriteType !== "stripPrefix" && !rewritePath.trim()}
|
||||||
|
>
|
||||||
|
Save Changes
|
||||||
|
</Button>
|
||||||
|
</DialogFooter>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function PathMatchDisplay({
|
||||||
|
value,
|
||||||
|
}: {
|
||||||
|
value: { path: string | null; pathMatchType: string | null };
|
||||||
|
}) {
|
||||||
|
if (!value?.path) return null;
|
||||||
|
|
||||||
|
const getTypeLabel = (type: string | null) => {
|
||||||
|
const labels: Record<string, string> = {
|
||||||
|
prefix: "Prefix",
|
||||||
|
exact: "Exact",
|
||||||
|
regex: "Regex",
|
||||||
|
};
|
||||||
|
return labels[type || ""] || type;
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex items-center gap-2 w-full text-left">
|
||||||
|
<Badge variant="secondary" className="font-mono text-xs shrink-0">
|
||||||
|
{getTypeLabel(value.pathMatchType)}
|
||||||
|
</Badge>
|
||||||
|
<code className="text-sm flex-1 truncate" title={value.path}>
|
||||||
|
{value.path}
|
||||||
|
</code>
|
||||||
|
<Pencil className="h-3 w-3 shrink-0 opacity-70" />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export function PathRewriteDisplay({
|
||||||
|
value,
|
||||||
|
}: {
|
||||||
|
value: { rewritePath: string | null; rewritePathType: string | null };
|
||||||
|
}) {
|
||||||
|
if (!value?.rewritePath && value?.rewritePathType !== "stripPrefix") return null;
|
||||||
|
|
||||||
|
const getTypeLabel = (type: string | null) => {
|
||||||
|
const labels: Record<string, string> = {
|
||||||
|
prefix: "Prefix",
|
||||||
|
exact: "Exact",
|
||||||
|
regex: "Regex",
|
||||||
|
stripPrefix: "Strip",
|
||||||
|
};
|
||||||
|
return labels[type || ""] || type;
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex items-center gap-2 w-full text-left">
|
||||||
|
<Badge variant="secondary" className="font-mono text-xs shrink-0">
|
||||||
|
{getTypeLabel(value.rewritePathType)}
|
||||||
|
</Badge>
|
||||||
|
<code className="text-sm flex-1 truncate" title={value.rewritePath || ""}>
|
||||||
|
{value.rewritePath || <span className="text-muted-foreground italic">(strip)</span>}
|
||||||
|
</code>
|
||||||
|
<Pencil className="h-3 w-3 shrink-0 opacity-70" />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user