2023-11-11 15:18:37 +01:00
|
|
|
import { DockgeServer } from "./dockge-server";
|
|
|
|
import fs from "fs";
|
|
|
|
import { log } from "./log";
|
|
|
|
import yaml from "yaml";
|
|
|
|
import { DockgeSocket, ValidationError } from "./util-server";
|
|
|
|
import path from "path";
|
|
|
|
import {
|
|
|
|
COMBINED_TERMINAL_COLS,
|
|
|
|
COMBINED_TERMINAL_ROWS,
|
|
|
|
CREATED_FILE,
|
|
|
|
CREATED_STACK,
|
|
|
|
EXITED, getCombinedTerminalName,
|
|
|
|
getComposeTerminalName, getContainerExecTerminalName,
|
|
|
|
PROGRESS_TERMINAL_ROWS,
|
|
|
|
RUNNING, TERMINAL_ROWS,
|
|
|
|
UNKNOWN
|
|
|
|
} from "./util-common";
|
|
|
|
import { InteractiveTerminal, Terminal } from "./terminal";
|
|
|
|
import childProcess from "child_process";
|
|
|
|
|
|
|
|
export class Stack {
|
|
|
|
|
|
|
|
name: string;
|
|
|
|
protected _status: number = UNKNOWN;
|
|
|
|
protected _composeYAML?: string;
|
|
|
|
protected _configFilePath?: string;
|
2023-11-18 06:36:57 +01:00
|
|
|
protected _composeFileName: string = "compose.yaml";
|
2023-11-11 15:18:37 +01:00
|
|
|
protected server: DockgeServer;
|
|
|
|
|
|
|
|
protected combinedTerminal? : Terminal;
|
|
|
|
|
|
|
|
protected static managedStackList: Map<string, Stack> = new Map();
|
|
|
|
|
2023-11-21 11:51:38 +01:00
|
|
|
constructor(server : DockgeServer, name : string, composeYAML? : string, skipFSOperations = false) {
|
2023-11-11 15:18:37 +01:00
|
|
|
this.name = name;
|
|
|
|
this.server = server;
|
|
|
|
this._composeYAML = composeYAML;
|
2023-11-18 06:36:57 +01:00
|
|
|
|
2023-11-21 11:51:38 +01:00
|
|
|
if (!skipFSOperations) {
|
|
|
|
// Check if compose file name is different from compose.yaml
|
|
|
|
const supportedFileNames = [ "compose.yaml", "compose.yml", "docker-compose.yml", "docker-compose.yaml" ];
|
|
|
|
for (const filename of supportedFileNames) {
|
|
|
|
if (fs.existsSync(path.join(this.path, filename))) {
|
|
|
|
this._composeFileName = filename;
|
|
|
|
break;
|
|
|
|
}
|
2023-11-18 06:36:57 +01:00
|
|
|
}
|
|
|
|
}
|
2023-11-11 15:18:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
toJSON() : object {
|
|
|
|
let obj = this.toSimpleJSON();
|
|
|
|
return {
|
|
|
|
...obj,
|
|
|
|
composeYAML: this.composeYAML,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
toSimpleJSON() : object {
|
|
|
|
return {
|
|
|
|
name: this.name,
|
|
|
|
status: this._status,
|
|
|
|
tags: [],
|
|
|
|
isManagedByDockge: this.isManagedByDockge,
|
2023-11-18 06:36:57 +01:00
|
|
|
composeFileName: this._composeFileName,
|
2023-11-11 15:18:37 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the status of the stack from `docker compose ps --format json`
|
|
|
|
*/
|
|
|
|
ps() : object {
|
|
|
|
let res = childProcess.execSync("docker compose ps --format json", {
|
|
|
|
cwd: this.path
|
|
|
|
});
|
|
|
|
return JSON.parse(res.toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
get isManagedByDockge() : boolean {
|
|
|
|
return fs.existsSync(this.path) && fs.statSync(this.path).isDirectory();
|
|
|
|
}
|
|
|
|
|
|
|
|
get status() : number {
|
|
|
|
return this._status;
|
|
|
|
}
|
|
|
|
|
|
|
|
validate() {
|
2023-11-13 11:09:36 +01:00
|
|
|
// Check name, allows [a-z][0-9] _ - only
|
|
|
|
if (!this.name.match(/^[a-z0-9_-]+$/)) {
|
|
|
|
throw new ValidationError("Stack name can only contain [a-z][0-9] _ - only");
|
2023-11-11 15:18:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check YAML format
|
|
|
|
yaml.parse(this.composeYAML);
|
|
|
|
}
|
|
|
|
|
|
|
|
get composeYAML() : string {
|
|
|
|
if (this._composeYAML === undefined) {
|
|
|
|
try {
|
2023-11-18 06:36:57 +01:00
|
|
|
this._composeYAML = fs.readFileSync(path.join(this.path, this._composeFileName), "utf-8");
|
2023-11-11 15:18:37 +01:00
|
|
|
} catch (e) {
|
|
|
|
this._composeYAML = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this._composeYAML;
|
|
|
|
}
|
|
|
|
|
|
|
|
get path() : string {
|
|
|
|
return path.join(this.server.stacksDir, this.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
get fullPath() : string {
|
|
|
|
let dir = this.path;
|
|
|
|
|
|
|
|
// Compose up via node-pty
|
|
|
|
let fullPathDir;
|
|
|
|
|
|
|
|
// if dir is relative, make it absolute
|
|
|
|
if (!path.isAbsolute(dir)) {
|
|
|
|
fullPathDir = path.join(process.cwd(), dir);
|
|
|
|
} else {
|
|
|
|
fullPathDir = dir;
|
|
|
|
}
|
|
|
|
return fullPathDir;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save the stack to the disk
|
|
|
|
* @param isAdd
|
|
|
|
*/
|
|
|
|
save(isAdd : boolean) {
|
|
|
|
this.validate();
|
|
|
|
|
|
|
|
let dir = this.path;
|
|
|
|
|
|
|
|
// Check if the name is used if isAdd
|
|
|
|
if (isAdd) {
|
|
|
|
if (fs.existsSync(dir)) {
|
|
|
|
throw new ValidationError("Stack name already exists");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the stack folder
|
|
|
|
fs.mkdirSync(dir);
|
|
|
|
} else {
|
|
|
|
if (!fs.existsSync(dir)) {
|
|
|
|
throw new ValidationError("Stack not found");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write or overwrite the compose.yaml
|
2023-11-18 06:36:57 +01:00
|
|
|
fs.writeFileSync(path.join(dir, this._composeFileName), this.composeYAML);
|
2023-11-11 15:18:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
async deploy(socket? : DockgeSocket) : Promise<number> {
|
|
|
|
const terminalName = getComposeTerminalName(this.name);
|
|
|
|
let exitCode = await Terminal.exec(this.server, socket, terminalName, "docker", [ "compose", "up", "-d", "--remove-orphans" ], this.path);
|
|
|
|
if (exitCode !== 0) {
|
|
|
|
throw new Error("Failed to deploy, please check the terminal output for more information.");
|
|
|
|
}
|
|
|
|
return exitCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
async delete(socket?: DockgeSocket) : Promise<number> {
|
|
|
|
const terminalName = getComposeTerminalName(this.name);
|
2023-11-16 18:02:20 +01:00
|
|
|
let exitCode = await Terminal.exec(this.server, socket, terminalName, "docker", [ "compose", "down", "--remove-orphans" ], this.path);
|
2023-11-11 15:18:37 +01:00
|
|
|
if (exitCode !== 0) {
|
|
|
|
throw new Error("Failed to delete, please check the terminal output for more information.");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the stack folder
|
|
|
|
fs.rmSync(this.path, {
|
|
|
|
recursive: true,
|
|
|
|
force: true
|
|
|
|
});
|
|
|
|
|
|
|
|
return exitCode;
|
|
|
|
}
|
|
|
|
|
2023-11-19 17:15:37 +01:00
|
|
|
updateStatus() {
|
|
|
|
let statusList = Stack.getStatusList();
|
|
|
|
let status = statusList.get(this.name);
|
|
|
|
|
|
|
|
if (status) {
|
|
|
|
this._status = status;
|
|
|
|
} else {
|
|
|
|
this._status = UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-11 15:18:37 +01:00
|
|
|
static getStackList(server : DockgeServer, useCacheForManaged = false) : Map<string, Stack> {
|
|
|
|
let stacksDir = server.stacksDir;
|
|
|
|
let stackList : Map<string, Stack>;
|
|
|
|
|
2023-11-24 18:02:04 +01:00
|
|
|
// Use cached stack list?
|
2023-11-11 15:18:37 +01:00
|
|
|
if (useCacheForManaged && this.managedStackList.size > 0) {
|
|
|
|
stackList = this.managedStackList;
|
|
|
|
} else {
|
|
|
|
stackList = new Map<string, Stack>();
|
|
|
|
|
|
|
|
// Scan the stacks directory, and get the stack list
|
|
|
|
let filenameList = fs.readdirSync(stacksDir);
|
|
|
|
|
|
|
|
for (let filename of filenameList) {
|
|
|
|
try {
|
2023-11-12 16:09:31 +01:00
|
|
|
// Check if it is a directory
|
|
|
|
let stat = fs.statSync(path.join(stacksDir, filename));
|
|
|
|
if (!stat.isDirectory()) {
|
|
|
|
continue;
|
|
|
|
}
|
2023-11-11 15:18:37 +01:00
|
|
|
let stack = this.getStack(server, filename);
|
|
|
|
stack._status = CREATED_FILE;
|
|
|
|
stackList.set(filename, stack);
|
|
|
|
} catch (e) {
|
2023-11-18 08:54:43 +01:00
|
|
|
if (e instanceof Error) {
|
|
|
|
log.warn("getStackList", `Failed to get stack ${filename}, error: ${e.message}`);
|
|
|
|
}
|
2023-11-11 15:18:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cache by copying
|
|
|
|
this.managedStackList = new Map(stackList);
|
|
|
|
}
|
|
|
|
|
2023-11-24 18:02:04 +01:00
|
|
|
// Get status from docker compose ls
|
2023-11-11 15:18:37 +01:00
|
|
|
let res = childProcess.execSync("docker compose ls --all --format json");
|
|
|
|
let composeList = JSON.parse(res.toString());
|
|
|
|
|
|
|
|
for (let composeStack of composeList) {
|
|
|
|
let stack = stackList.get(composeStack.Name);
|
|
|
|
|
|
|
|
// This stack probably is not managed by Dockge, but we still want to show it
|
|
|
|
if (!stack) {
|
2023-11-24 18:02:04 +01:00
|
|
|
// Skip the dockge stack if it is not managed by Dockge
|
|
|
|
if (composeStack.Name === "dockge") {
|
|
|
|
continue;
|
|
|
|
}
|
2023-11-11 15:18:37 +01:00
|
|
|
stack = new Stack(server, composeStack.Name);
|
|
|
|
stackList.set(composeStack.Name, stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
stack._status = this.statusConvert(composeStack.Status);
|
|
|
|
stack._configFilePath = composeStack.ConfigFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
return stackList;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the status list, it will be used to update the status of the stacks
|
|
|
|
* Not all status will be returned, only the stack that is deployed or created to `docker compose` will be returned
|
|
|
|
*/
|
|
|
|
static getStatusList() : Map<string, number> {
|
|
|
|
let statusList = new Map<string, number>();
|
|
|
|
|
|
|
|
let res = childProcess.execSync("docker compose ls --all --format json");
|
|
|
|
let composeList = JSON.parse(res.toString());
|
|
|
|
|
|
|
|
for (let composeStack of composeList) {
|
|
|
|
statusList.set(composeStack.Name, this.statusConvert(composeStack.Status));
|
|
|
|
}
|
|
|
|
|
|
|
|
return statusList;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert the status string from `docker compose ls` to the status number
|
2023-11-19 17:52:33 +01:00
|
|
|
* Input Example: "exited(1), running(1)"
|
2023-11-11 15:18:37 +01:00
|
|
|
* @param status
|
|
|
|
*/
|
|
|
|
static statusConvert(status : string) : number {
|
|
|
|
if (status.startsWith("created")) {
|
|
|
|
return CREATED_STACK;
|
2023-11-19 17:52:33 +01:00
|
|
|
} else if (status.includes("exited")) {
|
|
|
|
// If one of the service is exited, we consider the stack is exited
|
|
|
|
return EXITED;
|
2023-11-11 15:18:37 +01:00
|
|
|
} else if (status.startsWith("running")) {
|
2023-11-19 17:52:33 +01:00
|
|
|
// If there is no exited services, there should be only running services
|
2023-11-11 15:18:37 +01:00
|
|
|
return RUNNING;
|
|
|
|
} else {
|
|
|
|
return UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-21 11:51:38 +01:00
|
|
|
static getStack(server: DockgeServer, stackName: string, skipFSOperations = false) : Stack {
|
2023-11-11 15:18:37 +01:00
|
|
|
let dir = path.join(server.stacksDir, stackName);
|
|
|
|
|
2023-11-21 11:51:38 +01:00
|
|
|
if (!skipFSOperations) {
|
|
|
|
if (!fs.existsSync(dir) || !fs.statSync(dir).isDirectory()) {
|
|
|
|
// Maybe it is a stack managed by docker compose directly
|
|
|
|
let stackList = this.getStackList(server, true);
|
|
|
|
let stack = stackList.get(stackName);
|
2023-11-11 15:18:37 +01:00
|
|
|
|
2023-11-21 11:51:38 +01:00
|
|
|
if (stack) {
|
|
|
|
return stack;
|
|
|
|
} else {
|
|
|
|
// Really not found
|
|
|
|
throw new ValidationError("Stack not found");
|
|
|
|
}
|
2023-11-11 15:18:37 +01:00
|
|
|
}
|
2023-11-21 11:51:38 +01:00
|
|
|
} else {
|
2023-11-24 19:04:16 +01:00
|
|
|
//log.debug("getStack", "Skip FS operations");
|
2023-11-21 11:51:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
let stack : Stack;
|
|
|
|
|
|
|
|
if (!skipFSOperations) {
|
|
|
|
stack = new Stack(server, stackName);
|
|
|
|
} else {
|
|
|
|
stack = new Stack(server, stackName, undefined, true);
|
2023-11-11 15:18:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
stack._status = UNKNOWN;
|
|
|
|
stack._configFilePath = path.resolve(dir);
|
|
|
|
return stack;
|
|
|
|
}
|
|
|
|
|
|
|
|
async start(socket: DockgeSocket) {
|
|
|
|
const terminalName = getComposeTerminalName(this.name);
|
|
|
|
let exitCode = await Terminal.exec(this.server, socket, terminalName, "docker", [ "compose", "up", "-d", "--remove-orphans" ], this.path);
|
|
|
|
if (exitCode !== 0) {
|
|
|
|
throw new Error("Failed to start, please check the terminal output for more information.");
|
|
|
|
}
|
|
|
|
return exitCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
async stop(socket: DockgeSocket) : Promise<number> {
|
|
|
|
const terminalName = getComposeTerminalName(this.name);
|
|
|
|
let exitCode = await Terminal.exec(this.server, socket, terminalName, "docker", [ "compose", "stop" ], this.path);
|
|
|
|
if (exitCode !== 0) {
|
|
|
|
throw new Error("Failed to stop, please check the terminal output for more information.");
|
|
|
|
}
|
|
|
|
return exitCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
async restart(socket: DockgeSocket) : Promise<number> {
|
|
|
|
const terminalName = getComposeTerminalName(this.name);
|
|
|
|
let exitCode = await Terminal.exec(this.server, socket, terminalName, "docker", [ "compose", "restart" ], this.path);
|
|
|
|
if (exitCode !== 0) {
|
|
|
|
throw new Error("Failed to restart, please check the terminal output for more information.");
|
|
|
|
}
|
|
|
|
return exitCode;
|
|
|
|
}
|
|
|
|
|
2023-11-21 11:17:11 +01:00
|
|
|
async down(socket: DockgeSocket) : Promise<number> {
|
|
|
|
const terminalName = getComposeTerminalName(this.name);
|
|
|
|
let exitCode = await Terminal.exec(this.server, socket, terminalName, "docker", [ "compose", "down" ], this.path);
|
|
|
|
if (exitCode !== 0) {
|
|
|
|
throw new Error("Failed to down, please check the terminal output for more information.");
|
|
|
|
}
|
|
|
|
return exitCode;
|
|
|
|
}
|
|
|
|
|
2023-11-11 15:18:37 +01:00
|
|
|
async update(socket: DockgeSocket) {
|
|
|
|
const terminalName = getComposeTerminalName(this.name);
|
|
|
|
let exitCode = await Terminal.exec(this.server, socket, terminalName, "docker", [ "compose", "pull" ], this.path);
|
|
|
|
if (exitCode !== 0) {
|
|
|
|
throw new Error("Failed to pull, please check the terminal output for more information.");
|
|
|
|
}
|
2023-11-19 17:15:37 +01:00
|
|
|
|
|
|
|
// If the stack is not running, we don't need to restart it
|
|
|
|
this.updateStatus();
|
|
|
|
log.debug("update", "Status: " + this.status);
|
|
|
|
if (this.status !== RUNNING) {
|
|
|
|
return exitCode;
|
|
|
|
}
|
|
|
|
|
2023-11-11 15:18:37 +01:00
|
|
|
exitCode = await Terminal.exec(this.server, socket, terminalName, "docker", [ "compose", "up", "-d", "--remove-orphans" ], this.path);
|
|
|
|
if (exitCode !== 0) {
|
|
|
|
throw new Error("Failed to restart, please check the terminal output for more information.");
|
|
|
|
}
|
|
|
|
return exitCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
async joinCombinedTerminal(socket: DockgeSocket) {
|
|
|
|
const terminalName = getCombinedTerminalName(this.name);
|
|
|
|
const terminal = Terminal.getOrCreateTerminal(this.server, terminalName, "docker", [ "compose", "logs", "-f", "--tail", "100" ], this.path);
|
2023-11-24 19:04:16 +01:00
|
|
|
terminal.enableKeepAlive = true;
|
2023-11-11 15:18:37 +01:00
|
|
|
terminal.rows = COMBINED_TERMINAL_ROWS;
|
|
|
|
terminal.cols = COMBINED_TERMINAL_COLS;
|
|
|
|
terminal.join(socket);
|
|
|
|
terminal.start();
|
|
|
|
}
|
|
|
|
|
2023-11-24 19:04:16 +01:00
|
|
|
async leaveCombinedTerminal(socket: DockgeSocket) {
|
|
|
|
const terminalName = getCombinedTerminalName(this.name);
|
|
|
|
const terminal = Terminal.getTerminal(terminalName);
|
|
|
|
if (terminal) {
|
|
|
|
terminal.leave(socket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-11 15:18:37 +01:00
|
|
|
async joinContainerTerminal(socket: DockgeSocket, serviceName: string, shell : string = "sh", index: number = 0) {
|
|
|
|
const terminalName = getContainerExecTerminalName(this.name, serviceName, index);
|
|
|
|
let terminal = Terminal.getTerminal(terminalName);
|
|
|
|
|
|
|
|
if (!terminal) {
|
|
|
|
terminal = new InteractiveTerminal(this.server, terminalName, "docker", [ "compose", "exec", serviceName, shell ], this.path);
|
|
|
|
terminal.rows = TERMINAL_ROWS;
|
|
|
|
log.debug("joinContainerTerminal", "Terminal created");
|
|
|
|
}
|
|
|
|
|
|
|
|
terminal.join(socket);
|
|
|
|
terminal.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
async getServiceStatusList() {
|
|
|
|
let statusList = new Map<string, number>();
|
|
|
|
|
2023-11-21 11:51:38 +01:00
|
|
|
let res = childProcess.spawnSync("docker", [ "compose", "ps", "--format", "json" ], {
|
2023-11-11 15:18:37 +01:00
|
|
|
cwd: this.path,
|
|
|
|
});
|
|
|
|
|
2023-11-21 11:51:38 +01:00
|
|
|
let lines = res.stdout.toString().split("\n");
|
2023-11-11 15:18:37 +01:00
|
|
|
|
|
|
|
for (let line of lines) {
|
|
|
|
try {
|
|
|
|
let obj = JSON.parse(line);
|
2023-11-18 06:27:39 +01:00
|
|
|
if (obj.Health === "") {
|
|
|
|
statusList.set(obj.Service, obj.State);
|
|
|
|
} else {
|
|
|
|
statusList.set(obj.Service, obj.Health);
|
|
|
|
}
|
2023-11-11 15:18:37 +01:00
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return statusList;
|
|
|
|
}
|
|
|
|
}
|