mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-16 17:05:04 +02:00
split base_url into dashboard_url and base_domain
This commit is contained in:
parent
26a165ab71
commit
e1f0834af4
17 changed files with 100 additions and 37 deletions
14
Makefile
14
Makefile
|
@ -1,18 +1,20 @@
|
||||||
|
build-all:
|
||||||
all: build push
|
@if [ -z "$(tag)" ]; then \
|
||||||
|
echo "Error: tag is required. Usage: make build-all tag=<tag>"; \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
docker buildx build --platform linux/arm64,linux/amd64 -t fosrl/pangolin:latest -f Dockerfile --push .
|
||||||
|
docker buildx build --platform linux/arm64,linux/amd64 -t fosrl/pangolin:$(tag) -f Dockerfile --push .
|
||||||
|
|
||||||
build-arm:
|
build-arm:
|
||||||
docker buildx build --platform linux/arm64 -t fosrl/pangolin:latest .
|
docker buildx build --platform linux/arm64 -t fosrl/pangolin:latest .
|
||||||
|
|
||||||
build-x86:
|
build-x86:
|
||||||
docker buildx build --platform linux/amd64 -t fosrl/pangolin:latest .
|
docker buildx build --platform linux/amd64 -t fosrl/pangolin:latest .
|
||||||
|
|
||||||
build:
|
build:
|
||||||
docker build -t fosrl/pangolin:latest .
|
docker build -t fosrl/pangolin:latest .
|
||||||
|
|
||||||
push:
|
|
||||||
docker push fosrl/pangolin:latest
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
docker run -it -p 3000:3000 -p 3001:3001 -p 3002:3002 -v ./config:/app/config fosrl/pangolin:latest
|
docker run -it -p 3000:3000 -p 3001:3001 -p 3002:3002 -v ./config:/app/config fosrl/pangolin:latest
|
||||||
|
|
||||||
|
|
|
@ -123,4 +123,7 @@ Pangolin is dual licensed under the AGPLv3 and the Fossorial Commercial license.
|
||||||
|
|
||||||
## Contributions
|
## Contributions
|
||||||
|
|
||||||
Please see [CONTRIBUTIONS](./CONTRIBUTING.md) in the repository for guidelines and best practices.
|
Please see [CONTRIBUTING](./CONTRIBUTING.md) in the repository for guidelines and best practices.
|
||||||
|
|
||||||
|
Please post bug reports and other functional issues in the [Issues](https://github.com/fosrl/pangolin/issues) section of the repository.
|
||||||
|
For all feature requests, or other ideas, please use the [Discussions](https://github.com/orgs/fosrl/discussions) section.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
app:
|
app:
|
||||||
base_url: http://localhost
|
dashboard_url: http://localhost
|
||||||
|
base_domain: localhost
|
||||||
log_level: debug
|
log_level: debug
|
||||||
save_logs: false
|
save_logs: false
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
app:
|
app:
|
||||||
base_url: https://{{.Domain}}
|
dashboard_url: https://{{.Domain}}
|
||||||
|
base_domain: {{.Domain}}
|
||||||
log_level: info
|
log_level: info
|
||||||
save_logs: false
|
save_logs: false
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@fosrl/pangolin",
|
"name": "@fosrl/pangolin",
|
||||||
"version": "1.0.0-beta.1",
|
"version": "1.0.0-beta.2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "Tunneled Reverse Proxy Management Server with Identity and Access Control and Dashboard UI",
|
"description": "Tunneled Reverse Proxy Management Server with Identity and Access Control and Dashboard UI",
|
||||||
|
|
|
@ -31,7 +31,7 @@ export function createApiServer() {
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
const corsOptions = {
|
const corsOptions = {
|
||||||
origin: config.getRawConfig().app.base_url,
|
origin: config.getRawConfig().app.dashboard_url,
|
||||||
methods: ["GET", "POST", "PUT", "DELETE", "PATCH"],
|
methods: ["GET", "POST", "PUT", "DELETE", "PATCH"],
|
||||||
allowedHeaders: ["Content-Type", "X-CSRF-Token"]
|
allowedHeaders: ["Content-Type", "X-CSRF-Token"]
|
||||||
};
|
};
|
||||||
|
|
|
@ -17,7 +17,7 @@ export async function sendEmailVerificationCode(
|
||||||
VerifyEmail({
|
VerifyEmail({
|
||||||
username: email,
|
username: email,
|
||||||
verificationCode: code,
|
verificationCode: code,
|
||||||
verifyLink: `${config.getRawConfig().app.base_url}/auth/verify-email`
|
verifyLink: `${config.getRawConfig().app.dashboard_url}/auth/verify-email`
|
||||||
}),
|
}),
|
||||||
{
|
{
|
||||||
to: email,
|
to: email,
|
||||||
|
|
|
@ -3,18 +3,25 @@ import yaml from "js-yaml";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import { z } from "zod";
|
import { z } from "zod";
|
||||||
import { fromError } from "zod-validation-error";
|
import { fromError } from "zod-validation-error";
|
||||||
import { __DIRNAME, APP_PATH } from "@server/lib/consts";
|
import { __DIRNAME, APP_PATH, configFilePath1, configFilePath2 } from "@server/lib/consts";
|
||||||
import { loadAppVersion } from "@server/lib/loadAppVersion";
|
import { loadAppVersion } from "@server/lib/loadAppVersion";
|
||||||
import { passwordSchema } from "@server/auth/passwordSchema";
|
import { passwordSchema } from "@server/auth/passwordSchema";
|
||||||
|
|
||||||
const portSchema = z.number().positive().gt(0).lte(65535);
|
const portSchema = z.number().positive().gt(0).lte(65535);
|
||||||
|
const hostnameSchema = z
|
||||||
|
.string()
|
||||||
|
.regex(
|
||||||
|
/^(?!-)[a-zA-Z0-9-]{1,63}(?<!-)(\.[a-zA-Z]{2,})*$/,
|
||||||
|
"Invalid hostname. Must be a valid hostname like 'localhost' or 'test.example.com'."
|
||||||
|
);
|
||||||
|
|
||||||
const environmentSchema = z.object({
|
const environmentSchema = z.object({
|
||||||
app: z.object({
|
app: z.object({
|
||||||
base_url: z
|
dashboard_url: z
|
||||||
.string()
|
.string()
|
||||||
.url()
|
.url()
|
||||||
.transform((url) => url.toLowerCase()),
|
.transform((url) => url.toLowerCase()),
|
||||||
|
base_domain: hostnameSchema,
|
||||||
log_level: z.enum(["debug", "info", "warn", "error"]),
|
log_level: z.enum(["debug", "info", "warn", "error"]),
|
||||||
save_logs: z.boolean()
|
save_logs: z.boolean()
|
||||||
}),
|
}),
|
||||||
|
@ -58,7 +65,7 @@ const environmentSchema = z.object({
|
||||||
smtp_port: portSchema,
|
smtp_port: portSchema,
|
||||||
smtp_user: z.string(),
|
smtp_user: z.string(),
|
||||||
smtp_pass: z.string(),
|
smtp_pass: z.string(),
|
||||||
no_reply: z.string().email(),
|
no_reply: z.string().email()
|
||||||
})
|
})
|
||||||
.optional(),
|
.optional(),
|
||||||
users: z.object({
|
users: z.object({
|
||||||
|
@ -99,9 +106,6 @@ export class Config {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const configFilePath1 = path.join(APP_PATH, "config.yml");
|
|
||||||
const configFilePath2 = path.join(APP_PATH, "config.yaml");
|
|
||||||
|
|
||||||
let environment: any;
|
let environment: any;
|
||||||
if (fs.existsSync(configFilePath1)) {
|
if (fs.existsSync(configFilePath1)) {
|
||||||
environment = loadConfig(configFilePath1);
|
environment = loadConfig(configFilePath1);
|
||||||
|
@ -190,15 +194,7 @@ export class Config {
|
||||||
}
|
}
|
||||||
|
|
||||||
public getBaseDomain(): string {
|
public getBaseDomain(): string {
|
||||||
const newUrl = new URL(this.rawConfig.app.base_url);
|
return this.rawConfig.app.base_domain;
|
||||||
const hostname = newUrl.hostname;
|
|
||||||
const parts = hostname.split(".");
|
|
||||||
|
|
||||||
if (parts.length <= 2) {
|
|
||||||
return parts.join(".");
|
|
||||||
}
|
|
||||||
|
|
||||||
return parts.slice(1).join(".");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,3 +6,6 @@ export const __FILENAME = fileURLToPath(import.meta.url);
|
||||||
export const __DIRNAME = path.dirname(__FILENAME);
|
export const __DIRNAME = path.dirname(__FILENAME);
|
||||||
|
|
||||||
export const APP_PATH = path.join("config");
|
export const APP_PATH = path.join("config");
|
||||||
|
|
||||||
|
export const configFilePath1 = path.join(APP_PATH, "config.yml");
|
||||||
|
export const configFilePath2 = path.join(APP_PATH, "config.yaml");
|
||||||
|
|
|
@ -82,7 +82,7 @@ export async function requestPasswordReset(
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
const url = `${config.getRawConfig().app.base_url}/auth/reset-password?email=${email}&token=${token}`;
|
const url = `${config.getRawConfig().app.dashboard_url}/auth/reset-password?email=${email}&token=${token}`;
|
||||||
|
|
||||||
await sendEmail(
|
await sendEmail(
|
||||||
ResetPasswordCode({
|
ResetPasswordCode({
|
||||||
|
|
|
@ -101,7 +101,7 @@ export async function verifyResourceSession(
|
||||||
return allowed(res);
|
return allowed(res);
|
||||||
}
|
}
|
||||||
|
|
||||||
const redirectUrl = `${config.getRawConfig().app.base_url}/auth/resource/${encodeURIComponent(resource.resourceId)}?redirect=${encodeURIComponent(originalRequestURL)}`;
|
const redirectUrl = `${config.getRawConfig().app.dashboard_url}/auth/resource/${encodeURIComponent(resource.resourceId)}?redirect=${encodeURIComponent(originalRequestURL)}`;
|
||||||
|
|
||||||
if (!sessions) {
|
if (!sessions) {
|
||||||
return notAllowed(res);
|
return notAllowed(res);
|
||||||
|
|
|
@ -82,7 +82,6 @@ export async function createOrg(
|
||||||
let org: Org | null = null;
|
let org: Org | null = null;
|
||||||
|
|
||||||
await db.transaction(async (trx) => {
|
await db.transaction(async (trx) => {
|
||||||
// create a url from config.getRawConfig().app.base_url and get the hostname
|
|
||||||
const domain = config.getBaseDomain();
|
const domain = config.getBaseDomain();
|
||||||
|
|
||||||
const newOrg = await trx
|
const newOrg = await trx
|
||||||
|
|
|
@ -152,7 +152,7 @@ export async function inviteUser(
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
const inviteLink = `${config.getRawConfig().app.base_url}/invite?token=${inviteId}-${token}`;
|
const inviteLink = `${config.getRawConfig().app.dashboard_url}/invite?token=${inviteId}-${token}`;
|
||||||
|
|
||||||
if (doEmail) {
|
if (doEmail) {
|
||||||
await sendEmail(
|
await sendEmail(
|
||||||
|
|
|
@ -5,7 +5,6 @@ import { eq, ne } from "drizzle-orm";
|
||||||
import logger from "@server/logger";
|
import logger from "@server/logger";
|
||||||
|
|
||||||
export async function copyInConfig() {
|
export async function copyInConfig() {
|
||||||
// create a url from config.getRawConfig().app.base_url and get the hostname
|
|
||||||
const domain = config.getBaseDomain();
|
const domain = config.getBaseDomain();
|
||||||
const endpoint = config.getRawConfig().gerbil.base_endpoint;
|
const endpoint = config.getRawConfig().gerbil.base_endpoint;
|
||||||
|
|
||||||
|
|
|
@ -7,13 +7,15 @@ import { desc } from "drizzle-orm";
|
||||||
import { __DIRNAME } from "@server/lib/consts";
|
import { __DIRNAME } from "@server/lib/consts";
|
||||||
import { loadAppVersion } from "@server/lib/loadAppVersion";
|
import { loadAppVersion } from "@server/lib/loadAppVersion";
|
||||||
import m1 from "./scripts/1.0.0-beta1";
|
import m1 from "./scripts/1.0.0-beta1";
|
||||||
|
import m2 from "./scripts/1.0.0-beta2";
|
||||||
|
|
||||||
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
|
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
|
||||||
// EXCEPT FOR THE DATABASE AND THE SCHEMA
|
// EXCEPT FOR THE DATABASE AND THE SCHEMA
|
||||||
|
|
||||||
// Define the migration list with versions and their corresponding functions
|
// Define the migration list with versions and their corresponding functions
|
||||||
const migrations = [
|
const migrations = [
|
||||||
{ version: "1.0.0-beta.1", run: m1 }
|
{ version: "1.0.0-beta.1", run: m1 },
|
||||||
|
{ version: "1.0.0-beta.2", run: m2 }
|
||||||
// Add new migrations here as they are created
|
// Add new migrations here as they are created
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
import logger from "@server/logger";
|
|
||||||
|
|
||||||
export default async function migration() {
|
export default async function migration() {
|
||||||
console.log("Running setup script 1.0.0-beta.1");
|
console.log("Running setup script 1.0.0-beta.1...");
|
||||||
// SQL operations would go here in ts format
|
// SQL operations would go here in ts format
|
||||||
console.log("Done...");
|
console.log("Done.");
|
||||||
}
|
}
|
||||||
|
|
59
server/setup/scripts/1.0.0-beta2.ts
Normal file
59
server/setup/scripts/1.0.0-beta2.ts
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
import { configFilePath1, configFilePath2 } from "@server/lib/consts";
|
||||||
|
import fs from "fs";
|
||||||
|
import yaml from "js-yaml";
|
||||||
|
|
||||||
|
export default async function migration() {
|
||||||
|
console.log("Running setup script 1.0.0-beta.2...");
|
||||||
|
|
||||||
|
// Determine which config file exists
|
||||||
|
const filePaths = [configFilePath1, configFilePath2];
|
||||||
|
let filePath = "";
|
||||||
|
for (const path of filePaths) {
|
||||||
|
if (fs.existsSync(path)) {
|
||||||
|
filePath = path;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!filePath) {
|
||||||
|
throw new Error(
|
||||||
|
`No config file found (expected config.yml or config.yaml).`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read and parse the YAML file
|
||||||
|
let rawConfig: any;
|
||||||
|
const fileContents = fs.readFileSync(filePath, "utf8");
|
||||||
|
rawConfig = yaml.load(fileContents);
|
||||||
|
|
||||||
|
// Validate the structure
|
||||||
|
if (!rawConfig.app || !rawConfig.app.base_url) {
|
||||||
|
throw new Error(`Invalid config file: app.base_url is missing.`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Move base_url to dashboard_url and calculate base_domain
|
||||||
|
const baseUrl = rawConfig.app.base_url;
|
||||||
|
rawConfig.app.dashboard_url = baseUrl;
|
||||||
|
rawConfig.app.base_domain = getBaseDomain(baseUrl);
|
||||||
|
|
||||||
|
// Remove the old base_url
|
||||||
|
delete rawConfig.app.base_url;
|
||||||
|
|
||||||
|
// Write the updated YAML back to the file
|
||||||
|
const updatedYaml = yaml.dump(rawConfig);
|
||||||
|
fs.writeFileSync(filePath, updatedYaml, "utf8");
|
||||||
|
|
||||||
|
console.log("Done.");
|
||||||
|
}
|
||||||
|
|
||||||
|
function getBaseDomain(url: string): string {
|
||||||
|
const newUrl = new URL(url);
|
||||||
|
const hostname = newUrl.hostname;
|
||||||
|
const parts = hostname.split(".");
|
||||||
|
|
||||||
|
if (parts.length <= 2) {
|
||||||
|
return parts.join(".");
|
||||||
|
}
|
||||||
|
|
||||||
|
return parts.slice(-2).join(".");
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue