mirror of
https://github.com/edgebox-iot/edgeboxctl.git
synced 2026-09-24 05:41:43 +02:00
Compare commits
8
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0d01066678 | ||
|
|
7996c552f8 | ||
|
|
dbc831e972 | ||
|
|
19acbcbaad | ||
|
|
1e0a5df370 | ||
|
|
7913be080d | ||
|
|
e80aaf7d18 | ||
|
|
b11034dd17 |
@@ -13,7 +13,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v4
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: '1.20.2'
|
go-version: '1.20.2'
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
|
|||||||
Vendored
+236
@@ -0,0 +1,236 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "Build",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["build"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
|
||||||
|
},
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build All",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["build-all"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"group": "build",
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build Prod",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["build-prod"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"group": "build",
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build Cloud",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["build-cloud"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"group": "build",
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build ARM64",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["build-arm64"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"group": "build",
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build ARMHF",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["build-armhf"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"group": "build",
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build AMD64",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["build-amd64"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"group": "build",
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Clean",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["clean"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Test",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["test"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Test with Coverage",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["test-with-coverage"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Run",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["run"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Install",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["install"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Install Prod",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["install-prod"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Install Cloud",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["install-cloud"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Install ARM64",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["install-arm64"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Install ARMHF",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["install-armhf"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Install AMD64",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["install-amd64"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Start",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["start"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Stop",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["stop"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Restart",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["restart"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Status",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["status"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Logs",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make",
|
||||||
|
"args": ["log"],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
## [1.3.2] - 08-12-2024
|
||||||
|
|
||||||
|
* Fix to Browser Dev feature:
|
||||||
|
* Checking browser dev url when internet_accessible was checking the incorrect path. This is now fixed.
|
||||||
|
|
||||||
|
## [1.3.1] - 08-12-2024
|
||||||
|
|
||||||
|
* Fixes to Browser Dev feature:
|
||||||
|
* Now edgeboxctl also fetches or generates the browser dev environment url and saves it into an option both when starting, and every time the browser dev status is fetched.
|
||||||
|
|
||||||
|
## [1.3.0] - 05-12-2024
|
||||||
|
|
||||||
|
* Added Edgebox Browser Development Environment Feature Support
|
||||||
|
* Added tasks for handling browser development environment into tasks.go
|
||||||
|
* Added executable tasks to ExecuteTask and scheduled ones to ExecuteSchedules
|
||||||
|
* Other bug fixes and improvements.
|
||||||
|
|
||||||
|
### Missing Past Releases
|
||||||
|
|
||||||
|
Release notes for past versions are not available in this file. Please refer to the [GitHub releases](https://hithub.com/edgebox-iot/edgeboxctl/releases) for more information. Feel free to contribute to this file by adding missing release notes.
|
||||||
|
|
||||||
@@ -10,9 +10,14 @@ GOARCH := $(shell go env GOARCH)
|
|||||||
|
|
||||||
|
|
||||||
build-all:
|
build-all:
|
||||||
|
@echo "\n🏗️ Building all architectures for ${RELEASE} mode"
|
||||||
|
@echo "🟡 This will build all supported architectures and release combinations. It can take a while...\n"
|
||||||
|
|
||||||
GOOS=linux GOARCH=amd64 make build
|
GOOS=linux GOARCH=amd64 make build
|
||||||
GOOS=linux GOARCH=arm make build
|
GOOS=linux GOARCH=arm make build
|
||||||
|
|
||||||
|
@echo "\n🟢 All builds completed and available at ./bin/ \n"
|
||||||
|
|
||||||
build-prod:
|
build-prod:
|
||||||
GOOS=linux GOARCH=arm RELEASE=prod make build
|
GOOS=linux GOARCH=arm RELEASE=prod make build
|
||||||
|
|
||||||
@@ -30,32 +35,54 @@ build-amd64:
|
|||||||
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@echo "Building ${GOOS}-${GOARCH}"
|
@echo "\n🏗️ Building edgeboxctl (${RELEASE} release) on ${GOOS} (${GOARCH})"
|
||||||
|
@echo "📦 Binary will be saved in ./${BUILD_DIR}/edgeboxctl-${GOOS}-${GOARCH}\n"
|
||||||
|
|
||||||
GOOS=${GOOS} GOARCH=${GOARCH} go build \
|
GOOS=${GOOS} GOARCH=${GOARCH} go build \
|
||||||
-trimpath -ldflags "-s -w -X ${PROJECT}/internal/diagnostics.Version=${RELEASE} \
|
-trimpath -ldflags "-s -w -X ${PROJECT}/internal/diagnostics.Version=${RELEASE} \
|
||||||
-X ${PROJECT}/internal/diagnostics.Commit=${COMMIT} \
|
-X ${PROJECT}/internal/diagnostics.Commit=${COMMIT} \
|
||||||
-X ${PROJECT}/internal/diagnostics.BuildDate=${BUILD_DATE}" \
|
-X ${PROJECT}/internal/diagnostics.BuildDate=${BUILD_DATE}" \
|
||||||
-o bin/edgeboxctl-${GOOS}-${GOARCH} ${PROJECT}/cmd/edgeboxctl
|
-o bin/edgeboxctl-${GOOS}-${GOARCH} ${PROJECT}/cmd/edgeboxctl
|
||||||
|
|
||||||
|
@echo "\n🟢 Build task completed\n"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@echo "🧹 Cleaning build directory and go cache\n"
|
||||||
|
|
||||||
rm -rf ${BUILD_DIR}
|
rm -rf ${BUILD_DIR}
|
||||||
go clean
|
go clean
|
||||||
|
|
||||||
|
@echo "\n🟢 Clean task completed\n"
|
||||||
|
|
||||||
test:
|
test:
|
||||||
go test -tags=unit -timeout=600s -v ./...
|
go test -tags=unit -timeout=600s -v ./...
|
||||||
|
|
||||||
test-with-coverage:
|
test-with-coverage:
|
||||||
go test -tags=unit -timeout=600s -v ./... -coverprofile=coverage.out
|
go test -tags=unit -timeout=600s -v ./... -coverprofile=coverage.out
|
||||||
|
|
||||||
|
run:
|
||||||
|
@echo "\n🚀 Running edgeboxctl\n"
|
||||||
|
./bin/edgeboxctl-${GOOS}-${GOARCH}
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
@echo "📦 Installing edgeboxctl service (${RELEASE}) for ${GOOS} (${GOARCH})\n"
|
||||||
|
|
||||||
|
@echo "�🚧 Stopping edgeboxctl service if it is running"
|
||||||
sudo systemctl stop edgeboxctl || true
|
sudo systemctl stop edgeboxctl || true
|
||||||
|
|
||||||
|
@echo "\n🗑️ Removing old edgeboxctl binary and service"
|
||||||
sudo rm -rf /usr/local/bin/edgeboxctl /usr/local/sbin/edgeboctl /lib/systemd/system/edgeboxctl.service
|
sudo rm -rf /usr/local/bin/edgeboxctl /usr/local/sbin/edgeboctl /lib/systemd/system/edgeboxctl.service
|
||||||
|
|
||||||
|
@echo "\n🚚 Copying edgeboxctl binary to /usr/local/bin"
|
||||||
sudo cp ./bin/edgeboxctl-${GOOS}-${GOARCH} /usr/local/bin/edgeboxctl
|
sudo cp ./bin/edgeboxctl-${GOOS}-${GOARCH} /usr/local/bin/edgeboxctl
|
||||||
sudo cp ./bin/edgeboxctl-${GOOS}-${GOARCH} /usr/local/sbin/edgeboxctl
|
sudo cp ./bin/edgeboxctl-${GOOS}-${GOARCH} /usr/local/sbin/edgeboxctl
|
||||||
|
|
||||||
|
@echo "\n🚚 Copying edgeboxctl service to /lib/systemd/system"
|
||||||
sudo cp ./edgeboxctl.service /lib/systemd/system/edgeboxctl.service
|
sudo cp ./edgeboxctl.service /lib/systemd/system/edgeboxctl.service
|
||||||
sudo systemctl daemon-reload
|
sudo systemctl daemon-reload
|
||||||
@echo "Edgeboxctl installed successfully"
|
|
||||||
@echo "To start edgeboxctl run: systemctl start edgeboxctl"
|
@echo "\n 🚀 To start edgeboxctl run: make start"
|
||||||
|
@echo "🟢 Edgeboxctl installed successfully\n"
|
||||||
|
|
||||||
install-prod: build-prod install
|
install-prod: build-prod install
|
||||||
install-cloud: build-cloud install
|
install-cloud: build-cloud install
|
||||||
@@ -64,13 +91,24 @@ install-armhf: build-armhf install
|
|||||||
install-amd64: build-amd64 install
|
install-amd64: build-amd64 install
|
||||||
|
|
||||||
start:
|
start:
|
||||||
|
@echo "\n 🚀 Starting edgeboxctl service\n"
|
||||||
systemctl start edgeboxctl
|
systemctl start edgeboxctl
|
||||||
|
@echo "\n 🟢 Edgebox service started\n"
|
||||||
|
|
||||||
stop:
|
stop:
|
||||||
|
@echo "\n✋ Stopping edgeboxctl service\n"
|
||||||
systemctl stop edgeboxctl
|
systemctl stop edgeboxctl
|
||||||
|
@echo "\n 🟢 Edgebox service stopped\n"
|
||||||
|
|
||||||
|
restart:
|
||||||
|
@echo "\n💫 Restarting edgeboxctl service\n"
|
||||||
|
systemctl restart edgeboxctl
|
||||||
|
@echo "\n 🟢 Edgebox service restarted\n"
|
||||||
|
|
||||||
status:
|
status:
|
||||||
|
@echo "\nℹ️ edgeboxctl Service Info:\n"
|
||||||
systemctl status edgeboxctl
|
systemctl status edgeboxctl
|
||||||
|
|
||||||
log: start
|
log:
|
||||||
|
@echo "\n📰 edgeboxctl service logs:\n"
|
||||||
journalctl -fu edgeboxctl
|
journalctl -fu edgeboxctl
|
||||||
|
|||||||
@@ -59,10 +59,12 @@ To get a local copy up and running follow these simple steps.
|
|||||||
If you're running for development purposes, a docker container suffices, so make sure you have:
|
If you're running for development purposes, a docker container suffices, so make sure you have:
|
||||||
|
|
||||||
* docker
|
* docker
|
||||||
* docker compose
|
* docker compose (docker-compose-v2 package)
|
||||||
|
|
||||||
Check the following links for more info on [Docker](https://www.docker.com/) and [Docker Compose](https://docs.docker.com/compose/).
|
Check the following links for more info on [Docker](https://www.docker.com/) and [Docker Compose](https://docs.docker.com/compose/).
|
||||||
|
|
||||||
|
**Note:** If you don't have `docker compose` available, install it with: `sudo apt-get install docker-compose-v2`
|
||||||
|
|
||||||
Aditionally, `edgeboxctl` needs the following bash commands available wherever it runs:
|
Aditionally, `edgeboxctl` needs the following bash commands available wherever it runs:
|
||||||
|
|
||||||
* `arm-linux-gnueabi-gcc` (`sudo apt-get install gcc-arm*`)
|
* `arm-linux-gnueabi-gcc` (`sudo apt-get install gcc-arm*`)
|
||||||
@@ -79,10 +81,10 @@ Aditionally, `edgeboxctl` needs the following bash commands available wherever i
|
|||||||
```sh
|
```sh
|
||||||
git clone https://github.com/edgebox-iot/edgeboxctl.git
|
git clone https://github.com/edgebox-iot/edgeboxctl.git
|
||||||
```
|
```
|
||||||
2. Run Docker-Compose
|
2. Run Docker Compose
|
||||||
```sh
|
|
||||||
docker-compose up
|
|
||||||
```
|
```
|
||||||
|
docker compose up
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ require (
|
|||||||
github.com/dustin/go-humanize v1.0.0 // indirect
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
||||||
github.com/go-ole/go-ole v1.2.5 // indirect
|
github.com/go-ole/go-ole v1.2.5 // indirect
|
||||||
github.com/go-sql-driver/mysql v1.5.0
|
github.com/go-sql-driver/mysql v1.5.0
|
||||||
|
github.com/go-yaml/yaml v2.1.0+incompatible // indirect
|
||||||
github.com/joho/godotenv v1.3.0
|
github.com/joho/godotenv v1.3.0
|
||||||
github.com/mattn/go-sqlite3 v1.14.7 // indirect
|
github.com/mattn/go-sqlite3 v1.14.7 // indirect
|
||||||
github.com/shirou/gopsutil v3.21.4+incompatible // indirect
|
github.com/shirou/gopsutil v3.21.4+incompatible // indirect
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ github.com/go-ole/go-ole v1.2.5 h1:t4MGB5xEDZvXI+0rMjjsfBsD7yAgp/s9ZDkL1JndXwY=
|
|||||||
github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
|
github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
|
||||||
github.com/go-sql-driver/mysql v1.5.0 h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=
|
github.com/go-sql-driver/mysql v1.5.0 h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=
|
||||||
github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
|
github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
|
||||||
|
github.com/go-yaml/yaml v2.1.0+incompatible h1:RYi2hDdss1u4YE7GwixGzWwVo47T8UQwnTLB6vQiq+o=
|
||||||
|
github.com/go-yaml/yaml v2.1.0+incompatible/go.mod h1:w2MrLa16VYP0jy6N7M5kHaCkaLENm+P+Tv+MfurjSw0=
|
||||||
github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
|
github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
|
||||||
github.com/joho/godotenv v1.3.0 h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=
|
github.com/joho/godotenv v1.3.0 h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=
|
||||||
github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg=
|
github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg=
|
||||||
|
|||||||
@@ -489,7 +489,7 @@ func GetEdgeAppServices(ID string) []EdgeAppService {
|
|||||||
// Check if the service is actually running
|
// Check if the service is actually running
|
||||||
if shouldBeRunning {
|
if shouldBeRunning {
|
||||||
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "exec", "-T", serviceID, "echo", "'Service Check'"}
|
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "exec", "-T", serviceID, "echo", "'Service Check'"}
|
||||||
cmdResult := utils.Exec(wsPath, "docker-compose", cmdArgs)
|
cmdResult := utils.Exec(wsPath, "docker", append([]string{"compose"}, cmdArgs...))
|
||||||
if cmdResult != "" {
|
if cmdResult != "" {
|
||||||
isRunning = true
|
isRunning = true
|
||||||
}
|
}
|
||||||
@@ -511,7 +511,7 @@ func RunEdgeApp(ID string) EdgeAppStatus {
|
|||||||
for _, service := range services {
|
for _, service := range services {
|
||||||
|
|
||||||
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "start", service.ID}
|
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "start", service.ID}
|
||||||
utils.Exec(wsPath, "docker-compose", cmdArgs)
|
utils.Exec(wsPath, "docker", append([]string{"compose"}, cmdArgs...))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for it to settle up before continuing...
|
// Wait for it to settle up before continuing...
|
||||||
@@ -529,7 +529,7 @@ func StopEdgeApp(ID string) EdgeAppStatus {
|
|||||||
for _, service := range services {
|
for _, service := range services {
|
||||||
|
|
||||||
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "stop", service.ID}
|
cmdArgs = []string{"-f", wsPath + "/docker-compose.yml", "stop", service.ID}
|
||||||
utils.Exec(wsPath, "docker-compose", cmdArgs)
|
utils.Exec(wsPath, "docker", append([]string{"compose"}, cmdArgs...))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for it to settle up before continuing...
|
// Wait for it to settle up before continuing...
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"io"
|
"io"
|
||||||
|
"errors"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"bufio"
|
"bufio"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@@ -17,6 +18,7 @@ import (
|
|||||||
|
|
||||||
"github.com/joho/godotenv"
|
"github.com/joho/godotenv"
|
||||||
"github.com/shirou/gopsutil/host"
|
"github.com/shirou/gopsutil/host"
|
||||||
|
"github.com/go-yaml/yaml"
|
||||||
)
|
)
|
||||||
|
|
||||||
type cloudflaredTunnelJson struct {
|
type cloudflaredTunnelJson struct {
|
||||||
@@ -516,3 +518,83 @@ func ApplyUpdates() {
|
|||||||
utils.WriteOption("UPDATING_SYSTEM", "false")
|
utils.WriteOption("UPDATING_SYSTEM", "false")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func FetchBrowserDevPasswordFromFile() (string, error) {
|
||||||
|
fmt.Println("Executing FetchBrowserDevPasswordFromFile")
|
||||||
|
|
||||||
|
// Read the "password" entry on the yaml file
|
||||||
|
// Read the yaml file in system.GetPath(BrowserDevPasswordFileLocation)
|
||||||
|
yamlFile, err := ioutil.ReadFile(utils.GetPath(utils.BrowserDevPasswordFileLocation))
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse the yaml file and get the "password" entry
|
||||||
|
var yamlFileMap yaml.MapSlice
|
||||||
|
err = yaml.Unmarshal(yamlFile, &yamlFileMap)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, item := range yamlFileMap {
|
||||||
|
key, value := item.Key, item.Value
|
||||||
|
if key == "password" {
|
||||||
|
if pwString, ok := value.(string); ok {
|
||||||
|
return pwString, nil
|
||||||
|
} else {
|
||||||
|
return "", errors.New("password value is not a string")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "", errors.New("password key not found")
|
||||||
|
}
|
||||||
|
|
||||||
|
func SetBrowserDevPasswordFile(password string) error {
|
||||||
|
// Get current password from file
|
||||||
|
currentPassword, err := FetchBrowserDevPasswordFromFile()
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error fetching current password from file.")
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write the new password on the file using ReplaceTextInFile
|
||||||
|
err = ReplaceTextInFile(utils.GetPath(utils.BrowserDevPasswordFileLocation), currentPassword, password)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error writing new password to file.")
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ReplaceTextInFile(filePath string, oldText string, newText string) error {
|
||||||
|
// Open the file for reading
|
||||||
|
file, err := os.OpenFile(filePath, os.O_RDWR, 0644)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read the file contents
|
||||||
|
data, err := ioutil.ReadAll(file)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Close the file
|
||||||
|
err = file.Close()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Replace the text in the file
|
||||||
|
newData := strings.Replace(string(data), oldText, newText, -1)
|
||||||
|
|
||||||
|
// Write the new data back to the file
|
||||||
|
err = ioutil.WriteFile(filePath, []byte(newData), 0644)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+281
-2
@@ -18,6 +18,8 @@ import (
|
|||||||
"github.com/edgebox-iot/edgeboxctl/internal/system"
|
"github.com/edgebox-iot/edgeboxctl/internal/system"
|
||||||
"github.com/edgebox-iot/edgeboxctl/internal/utils"
|
"github.com/edgebox-iot/edgeboxctl/internal/utils"
|
||||||
|
|
||||||
|
"github.com/joho/godotenv"
|
||||||
|
|
||||||
_ "github.com/go-sql-driver/mysql" // Mysql Driver
|
_ "github.com/go-sql-driver/mysql" // Mysql Driver
|
||||||
_ "github.com/mattn/go-sqlite3" // SQlite Driver
|
_ "github.com/mattn/go-sqlite3" // SQlite Driver
|
||||||
)
|
)
|
||||||
@@ -108,6 +110,10 @@ type taskStartShellArgs struct {
|
|||||||
Timeout int `json:"timeout"`
|
Timeout int `json:"timeout"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type taskSetBrowserDevPasswordArgs struct {
|
||||||
|
Password string `json:"password"`
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
const STATUS_CREATED int = 0
|
const STATUS_CREATED int = 0
|
||||||
const STATUS_EXECUTING int = 1
|
const STATUS_EXECUTING int = 1
|
||||||
@@ -291,6 +297,26 @@ func ExecuteTask(task Task) Task {
|
|||||||
taskResult := taskStopShell()
|
taskResult := taskStopShell()
|
||||||
task.Result = sql.NullString{String: taskResult, Valid: true}
|
task.Result = sql.NullString{String: taskResult, Valid: true}
|
||||||
|
|
||||||
|
case "generate_ssh_key":
|
||||||
|
log.Println("Generating SSH Key...")
|
||||||
|
taskResult := taskGenerateSshKey()
|
||||||
|
task.Result = sql.NullString{String: taskResult, Valid: true}
|
||||||
|
|
||||||
|
case "get_ssh_key":
|
||||||
|
log.Println("Getting SSH Key...")
|
||||||
|
taskResult := taskGetSshKey()
|
||||||
|
task.Result = sql.NullString{String: taskResult, Valid: true}
|
||||||
|
|
||||||
|
case "revoke_ssh_key":
|
||||||
|
log.Println("Revoking SSH Key...")
|
||||||
|
taskResult := taskRevokeSshKey()
|
||||||
|
task.Result = sql.NullString{String: taskResult, Valid: true}
|
||||||
|
|
||||||
|
case "activate_browser_dev":
|
||||||
|
log.Println("Activating Browser Dev Environment")
|
||||||
|
taskResult := taskActivateBrowserDev()
|
||||||
|
task.Result = sql.NullString{String: taskResult, Valid: true}
|
||||||
|
|
||||||
case "install_edgeapp":
|
case "install_edgeapp":
|
||||||
|
|
||||||
log.Println("Installing EdgeApp...")
|
log.Println("Installing EdgeApp...")
|
||||||
@@ -449,6 +475,30 @@ func ExecuteTask(task Task) Task {
|
|||||||
task.Result = sql.NullString{String: taskResult, Valid: true}
|
task.Result = sql.NullString{String: taskResult, Valid: true}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case "set_browserdev_password":
|
||||||
|
|
||||||
|
log.Println("Setting BrowserDev Password...")
|
||||||
|
var args taskSetBrowserDevPasswordArgs
|
||||||
|
err := json.Unmarshal([]byte(task.Args.String), &args)
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Error reading arguments of set_browserdev_password task: %s", err)
|
||||||
|
} else {
|
||||||
|
taskResult := taskSetBrowserDevPassword(args)
|
||||||
|
task.Result = sql.NullString{String: taskResult, Valid: true}
|
||||||
|
}
|
||||||
|
|
||||||
|
case "activate_browserdev":
|
||||||
|
|
||||||
|
log.Println("Activating BrowserDev Environment...")
|
||||||
|
taskResult := taskActivateBrowserDev()
|
||||||
|
task.Result = sql.NullString{String: taskResult, Valid: true}
|
||||||
|
|
||||||
|
case "deactivate_browserdev":
|
||||||
|
|
||||||
|
log.Println("Deactivating BrowserDev Environment...")
|
||||||
|
taskResult := taskDeactivateBrowserDev()
|
||||||
|
task.Result = sql.NullString{String: taskResult, Valid: true}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -495,6 +545,12 @@ func ExecuteSchedules(tick int) {
|
|||||||
|
|
||||||
if tick == 1 {
|
if tick == 1 {
|
||||||
|
|
||||||
|
log.Println("Fetching Browser Dev Environment Information")
|
||||||
|
taskGetBrowserDevPassword()
|
||||||
|
taskGetBrowserDevStatus()
|
||||||
|
|
||||||
|
taskCheckSystemUpdates()
|
||||||
|
|
||||||
ip := taskGetSystemIP()
|
ip := taskGetSystemIP()
|
||||||
log.Println("System IP is: " + ip)
|
log.Println("System IP is: " + ip)
|
||||||
|
|
||||||
@@ -524,8 +580,6 @@ func ExecuteSchedules(tick int) {
|
|||||||
log.Println(taskGetEdgeApps())
|
log.Println(taskGetEdgeApps())
|
||||||
taskUpdateSystemLoggerServices()
|
taskUpdateSystemLoggerServices()
|
||||||
taskRecoverFromUpdate()
|
taskRecoverFromUpdate()
|
||||||
taskCheckSystemUpdates()
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if tick%5 == 0 {
|
if tick%5 == 0 {
|
||||||
@@ -534,6 +588,10 @@ func ExecuteSchedules(tick int) {
|
|||||||
log.Println(taskGetStorageDevices())
|
log.Println(taskGetStorageDevices())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if tick%15 == 0 {
|
||||||
|
taskGetBrowserDevStatus()
|
||||||
|
}
|
||||||
|
|
||||||
if tick%30 == 0 {
|
if tick%30 == 0 {
|
||||||
// Executing every 30 ticks
|
// Executing every 30 ticks
|
||||||
log.Println(taskGetEdgeApps())
|
log.Println(taskGetEdgeApps())
|
||||||
@@ -572,7 +630,9 @@ func ExecuteSchedules(tick int) {
|
|||||||
|
|
||||||
if tick%3600 == 0 {
|
if tick%3600 == 0 {
|
||||||
// Executing every 3600 ticks (1 hour)
|
// Executing every 3600 ticks (1 hour)
|
||||||
|
taskGetBrowserDevStatus()
|
||||||
taskCheckSystemUpdates()
|
taskCheckSystemUpdates()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if tick%86400 == 0 {
|
if tick%86400 == 0 {
|
||||||
@@ -1077,7 +1137,9 @@ func taskStartShell(args taskStartShellArgs) string {
|
|||||||
utils.WriteOption("SHELL_STATUS", "not_running")
|
utils.WriteOption("SHELL_STATUS", "not_running")
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
if timeout%10 == 0 {
|
||||||
fmt.Println("Active Shell Timeout is " + fmt.Sprint(timeout) + " seconds")
|
fmt.Println("Active Shell Timeout is " + fmt.Sprint(timeout) + " seconds")
|
||||||
|
}
|
||||||
time.Sleep(1 * time.Second)
|
time.Sleep(1 * time.Second)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
@@ -1097,6 +1159,108 @@ func taskStopShell() string {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func taskGetBrowserDevStatus() string {
|
||||||
|
fmt.Println("Executing taskGetBrowserDevStatus")
|
||||||
|
|
||||||
|
// Read status from systemctl status code-server@root
|
||||||
|
browserDevStatus := utils.Exec(
|
||||||
|
utils.GetPath(utils.WsPath),
|
||||||
|
"sh",
|
||||||
|
[]string{"-c", "systemctl --quiet is-active code-server@root && echo 'active' || echo 'inactive'"},
|
||||||
|
)
|
||||||
|
if browserDevStatus == "active" {
|
||||||
|
fmt.Println("Browser Dev Environment is running")
|
||||||
|
utils.WriteOption("BROWSERDEV_STATUS", "running")
|
||||||
|
taskGetBrowserDevUrl()
|
||||||
|
|
||||||
|
return "{\"status\": \"running\"}"
|
||||||
|
|
||||||
|
} else {
|
||||||
|
fmt.Println("Browser Dev Environment is not running")
|
||||||
|
utils.WriteOption("BROWSERDEV_STATUS", "not_running")
|
||||||
|
return "{\"status\": \"not_running\"}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func taskGetBrowserDevUrl() string {
|
||||||
|
url := ""
|
||||||
|
myEdgeAppServiceEnv, err := godotenv.Read(utils.GetPath(utils.BrowserDevPath) + "myedgeapp.env")
|
||||||
|
if err != nil {
|
||||||
|
log.Println("No myedge.app environment file found. Status is Network-Only")
|
||||||
|
url = "http://dev." + system.GetHostname() + ".local"
|
||||||
|
} else {
|
||||||
|
if myEdgeAppServiceEnv["INTERNET_URL"] != "" {
|
||||||
|
url = "https://" + myEdgeAppServiceEnv["INTERNET_URL"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Println("Browser Dev Url: " + url)
|
||||||
|
|
||||||
|
utils.WriteOption("BROWSERDEV_URL", url)
|
||||||
|
return url
|
||||||
|
}
|
||||||
|
|
||||||
|
func taskActivateBrowserDev() string {
|
||||||
|
fmt.Println("Executing taskActivateBrowserDev")
|
||||||
|
wsPath := utils.GetPath(utils.WsPath)
|
||||||
|
|
||||||
|
// Start the service
|
||||||
|
utils.Exec(wsPath, "systemctl", []string{"start", "code-server@root"})
|
||||||
|
// Write run file to /home/system/components/dev/.run
|
||||||
|
utils.Exec(wsPath, "touch", []string{utils.GetPath(utils.BrowserDevProxyPath) + ".run"})
|
||||||
|
// Rebuild WS (necessary to start the proxy)
|
||||||
|
system.StartWs()
|
||||||
|
// Write control option for API
|
||||||
|
utils.WriteOption("BROWSERDEV_STATUS", "running")
|
||||||
|
|
||||||
|
// Write and refresh the dev environment password option
|
||||||
|
taskGetBrowserDevPassword()
|
||||||
|
|
||||||
|
return "{\"status\": \"ok\"}"
|
||||||
|
}
|
||||||
|
|
||||||
|
func taskDeactivateBrowserDev() string {
|
||||||
|
fmt.Println("Executing taskDeactivateBrowserDev")
|
||||||
|
wsPath := utils.GetPath(utils.WsPath)
|
||||||
|
|
||||||
|
// Remove the run file
|
||||||
|
os.Remove(utils.GetPath(utils.BrowserDevProxyPath) + ".run")
|
||||||
|
system.StartWs()
|
||||||
|
|
||||||
|
utils.Exec(wsPath, "systemctl", []string{"stop", "code-server@root"})
|
||||||
|
utils.WriteOption("BROWSERDEV_STATUS", "not_running")
|
||||||
|
|
||||||
|
return "{\"status\": \"ok\"}"
|
||||||
|
}
|
||||||
|
|
||||||
|
func taskGetBrowserDevPassword() string {
|
||||||
|
fmt.Println("Executing taskGetBrowserDevPassword")
|
||||||
|
|
||||||
|
password, err := system.FetchBrowserDevPasswordFromFile()
|
||||||
|
if err == nil {
|
||||||
|
utils.WriteOption("BROWSERDEV_PASSWORD", password)
|
||||||
|
} else {
|
||||||
|
fmt.Println("Error fetching browser dev password from file: " + err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
return password
|
||||||
|
}
|
||||||
|
|
||||||
|
func taskSetBrowserDevPassword(args taskSetBrowserDevPasswordArgs) string {
|
||||||
|
fmt.Println("Executing taskSetBrowserDevPassword")
|
||||||
|
wsPath := utils.GetPath(utils.WsPath)
|
||||||
|
|
||||||
|
system.SetBrowserDevPasswordFile(args.Password)
|
||||||
|
utils.WriteOption("BROWSERDEV_PASSWORD", args.Password)
|
||||||
|
|
||||||
|
// Check if BROWSERDEV_STATUS is "running", if so, restart the service
|
||||||
|
if utils.ReadOption("BROWSERDEV_STATUS") == "running" {
|
||||||
|
utils.Exec(wsPath, "systemctl", []string{"restart", "code-server@root"})
|
||||||
|
}
|
||||||
|
|
||||||
|
return "{\"status\": \"ok\"}"
|
||||||
|
}
|
||||||
|
|
||||||
func taskInstallEdgeApp(args taskInstallEdgeAppArgs) string {
|
func taskInstallEdgeApp(args taskInstallEdgeAppArgs) string {
|
||||||
fmt.Println("Executing taskInstallEdgeApp for " + args.ID)
|
fmt.Println("Executing taskInstallEdgeApp for " + args.ID)
|
||||||
|
|
||||||
@@ -1436,3 +1600,118 @@ func taskStartWs() {
|
|||||||
fmt.Println("Executing taskStartWs")
|
fmt.Println("Executing taskStartWs")
|
||||||
system.StartWs()
|
system.StartWs()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func taskGenerateSshKey() string {
|
||||||
|
fmt.Println("Executing taskGenerateSshKey")
|
||||||
|
|
||||||
|
keyPath := "/root/.ssh/id_ed25519"
|
||||||
|
pubKeyPath := keyPath + ".pub"
|
||||||
|
|
||||||
|
// Check if key already exists
|
||||||
|
if _, err := os.Stat(keyPath); os.IsNotExist(err) {
|
||||||
|
fmt.Println("SSH key not found, generating new ED25519 key pair...")
|
||||||
|
utils.Exec("/", "ssh-keygen", []string{"-t", "ed25519", "-f", keyPath, "-N", "", "-q"})
|
||||||
|
} else {
|
||||||
|
fmt.Println("SSH key already exists at " + keyPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read public key
|
||||||
|
pubKeyBytes, err := os.ReadFile(pubKeyPath)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error reading public key: " + err.Error())
|
||||||
|
return "{\"status\": \"error\", \"message\": \"" + err.Error() + "\"}"
|
||||||
|
}
|
||||||
|
pubKey := string(pubKeyBytes)
|
||||||
|
|
||||||
|
// Read private key
|
||||||
|
privKeyBytes, err := os.ReadFile(keyPath)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("Error reading private key: " + err.Error())
|
||||||
|
return "{\"status\": \"error\", \"message\": \"" + err.Error() + "\"}"
|
||||||
|
}
|
||||||
|
privKey := string(privKeyBytes)
|
||||||
|
|
||||||
|
// Also add public key to authorized_keys for root
|
||||||
|
utils.Exec("/", "sh", []string{"-c", "mkdir -p /root/.ssh && chmod 700 /root/.ssh"})
|
||||||
|
authorizedFile := "/root/.ssh/authorized_keys"
|
||||||
|
authorizedBytes, _ := os.ReadFile(authorizedFile)
|
||||||
|
authorizedContent := string(authorizedBytes)
|
||||||
|
|
||||||
|
// Only add if not already present
|
||||||
|
if !strings.Contains(authorizedContent, strings.TrimSpace(pubKey)) {
|
||||||
|
f, err := os.OpenFile(authorizedFile, os.O_APPEND|os.O_WRONLY, 0600)
|
||||||
|
if err == nil {
|
||||||
|
defer f.Close()
|
||||||
|
f.WriteString("\n" + pubKey)
|
||||||
|
fmt.Println("Added SSH public key to authorized_keys")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Store in options for the API to read
|
||||||
|
utils.WriteOption("SSH_PUBLIC_KEY", strings.TrimSpace(pubKey))
|
||||||
|
utils.WriteOption("SSH_PRIVATE_KEY", privKey)
|
||||||
|
utils.WriteOption("SSH_KEY_FINGERPRINT", strings.TrimSpace(utils.Exec("/", "ssh-keygen", []string{"-lf", pubKeyPath, "-E", "sha256"})))
|
||||||
|
|
||||||
|
fmt.Println("SSH key stored in options")
|
||||||
|
|
||||||
|
return "{\"status\": \"ok\", \"public_key\": \"" + strings.TrimSpace(pubKey) + "\"}"
|
||||||
|
}
|
||||||
|
|
||||||
|
func taskGetSshKey() string {
|
||||||
|
fmt.Println("Executing taskGetSshKey")
|
||||||
|
|
||||||
|
pubKey := utils.ReadOption("SSH_PUBLIC_KEY")
|
||||||
|
fingerprint := utils.ReadOption("SSH_KEY_FINGERPRINT")
|
||||||
|
|
||||||
|
if pubKey == "" {
|
||||||
|
// Try to read from filesystem directly
|
||||||
|
return taskGenerateSshKey()
|
||||||
|
}
|
||||||
|
|
||||||
|
return "{\"status\": \"ok\", \"public_key\": \"" + pubKey + "\", \"fingerprint\": \"" + fingerprint + "\"}"
|
||||||
|
}
|
||||||
|
|
||||||
|
func taskRevokeSshKey() string {
|
||||||
|
fmt.Println("Executing taskRevokeSshKey")
|
||||||
|
|
||||||
|
keyPath := "/root/.ssh/id_ed25519"
|
||||||
|
pubKeyPath := keyPath + ".pub"
|
||||||
|
|
||||||
|
// Read current public key before deletion
|
||||||
|
var pubKeyForRemoval string
|
||||||
|
if bytes, err := os.ReadFile(pubKeyPath); err == nil {
|
||||||
|
pubKeyForRemoval = strings.TrimSpace(string(bytes))
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove SSH key pair from filesystem
|
||||||
|
if err := os.Remove(keyPath); err != nil {
|
||||||
|
fmt.Println("Warning: could not remove private key: " + err.Error())
|
||||||
|
}
|
||||||
|
if err := os.Remove(pubKeyPath); err != nil {
|
||||||
|
fmt.Println("Warning: could not remove public key: " + err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove the public key from authorized_keys if present
|
||||||
|
if pubKeyForRemoval != "" {
|
||||||
|
authorizedFile := "/root/.ssh/authorized_keys"
|
||||||
|
if bytes, err := os.ReadFile(authorizedFile); err == nil {
|
||||||
|
lines := strings.Split(string(bytes), "\n")
|
||||||
|
newLines := []string{}
|
||||||
|
for _, line := range lines {
|
||||||
|
if strings.TrimSpace(line) != pubKeyForRemoval {
|
||||||
|
newLines = append(newLines, line)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ = os.WriteFile(authorizedFile, []byte(strings.Join(newLines, "\n")), 0600)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove SSH options from DB
|
||||||
|
utils.WriteOption("SSH_PUBLIC_KEY", "")
|
||||||
|
utils.WriteOption("SSH_PRIVATE_KEY", "")
|
||||||
|
utils.WriteOption("SSH_KEY_FINGERPRINT", "")
|
||||||
|
|
||||||
|
fmt.Println("SSH key pair revoked")
|
||||||
|
|
||||||
|
return "{\"status\": \"ok\", \"message\": \"SSH key pair revoked\"}"
|
||||||
|
}
|
||||||
|
|||||||
@@ -111,7 +111,10 @@ const ApiPath string = "apiPath"
|
|||||||
const EdgeAppsPath string = "edgeAppsPath"
|
const EdgeAppsPath string = "edgeAppsPath"
|
||||||
const EdgeAppsBackupPath string = "edgeAppsBackupPath"
|
const EdgeAppsBackupPath string = "edgeAppsBackupPath"
|
||||||
const WsPath string = "wsPath"
|
const WsPath string = "wsPath"
|
||||||
|
const BrowserDevPath string = "browserDevPath"
|
||||||
const LoggerPath string = "loggerPath"
|
const LoggerPath string = "loggerPath"
|
||||||
|
const BrowserDevPasswordFileLocation string = "browserDevPasswordFileLocation"
|
||||||
|
const BrowserDevProxyPath string = "browserDevProxyPath"
|
||||||
|
|
||||||
|
|
||||||
// GetPath : Returns either the hardcoded path, or a overwritten value via .env file at project root. Register paths here for seamless working code between dev and prod environments ;)
|
// GetPath : Returns either the hardcoded path, or a overwritten value via .env file at project root. Register paths here for seamless working code between dev and prod environments ;)
|
||||||
@@ -174,6 +177,14 @@ func GetPath(pathKey string) string {
|
|||||||
targetPath = "/home/system/components/ws/"
|
targetPath = "/home/system/components/ws/"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case BrowserDevPath:
|
||||||
|
|
||||||
|
if env["BROWSERDEV_PATH"] != "" {
|
||||||
|
targetPath = env["BROWSERDEV_PATH"]
|
||||||
|
} else {
|
||||||
|
targetPath = "/home/system/components/dev/"
|
||||||
|
}
|
||||||
|
|
||||||
case LoggerPath:
|
case LoggerPath:
|
||||||
if env["LOGGER_PATH"] != "" {
|
if env["LOGGER_PATH"] != "" {
|
||||||
targetPath = env["LOGGER_PATH"]
|
targetPath = env["LOGGER_PATH"]
|
||||||
@@ -189,6 +200,20 @@ func GetPath(pathKey string) string {
|
|||||||
targetPath = "/home/system/components/backups/pw.txt"
|
targetPath = "/home/system/components/backups/pw.txt"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case BrowserDevPasswordFileLocation:
|
||||||
|
if env["BROWSERDEV_PASSWORD_FILE_LOCATION"] != "" {
|
||||||
|
targetPath = env["BROWSERDEV_PASSWORD_FILE_LOCATION"]
|
||||||
|
} else {
|
||||||
|
targetPath = "/root/.config/code-server/config.yaml"
|
||||||
|
}
|
||||||
|
|
||||||
|
case BrowserDevProxyPath:
|
||||||
|
if env["BROWSERDEV_PROXY_PATH"] != "" {
|
||||||
|
targetPath = env["BROWSERDEV_PROXY_PATH"]
|
||||||
|
} else {
|
||||||
|
targetPath = "/home/system/components/dev/"
|
||||||
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
||||||
log.Printf("path_key %s nonexistant in GetPath().\n", pathKey)
|
log.Printf("path_key %s nonexistant in GetPath().\n", pathKey)
|
||||||
|
|||||||
Reference in New Issue
Block a user