mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-05 16:37:09 +00:00
98 lines
2.4 KiB
Go
98 lines
2.4 KiB
Go
package pkg
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"log/slog"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
|
|
"plg-mudics/display/browser"
|
|
"plg-mudics/shared"
|
|
)
|
|
|
|
func TakeScreenshot() (string, error) {
|
|
tempFilePath := filepath.Join(os.TempDir(), fmt.Sprintf("screenshot_%d.png", time.Now().Unix()))
|
|
|
|
cmds := []*exec.Cmd{
|
|
exec.Command("gnome-screenshot", "-f", tempFilePath),
|
|
exec.Command("xfce4-screenshooter", "-f", "-s", tempFilePath),
|
|
exec.Command("spectacle", "--fullscreen", "--nonotify", "--background", "--output", tempFilePath),
|
|
}
|
|
for _, cmd := range cmds {
|
|
commandOutput := shared.RunShellCommand(cmd)
|
|
if commandOutput.ExitCode == 0 {
|
|
return tempFilePath, nil
|
|
}
|
|
}
|
|
return "", errors.New("no screenshot utility found or all failed")
|
|
}
|
|
|
|
func GetStoragePath() (string, error) {
|
|
var storagePath string
|
|
|
|
home, err := os.UserHomeDir()
|
|
if err != nil {
|
|
return "", fmt.Errorf("unable to determine user home directory: %w", err)
|
|
}
|
|
storagePath = filepath.Join(home, ".local", "share", "plg-mudics", "display")
|
|
if err := os.MkdirAll(storagePath, os.ModePerm); err != nil {
|
|
return "", fmt.Errorf("failed to create local config directory: %w", err)
|
|
}
|
|
|
|
return storagePath, nil
|
|
}
|
|
|
|
// ResolveStorageFilePath validates and resolves a storage-relative file path.
|
|
// Returns the full path, whether the file exists, or an error.
|
|
func ResolveStorageFilePath(pathParam string) (string, bool, error) {
|
|
storagePath, err := GetStoragePath()
|
|
if err != nil {
|
|
return "", false, fmt.Errorf("failed to get storage path: %w", err)
|
|
}
|
|
cleanPath := filepath.Clean(pathParam)
|
|
fullPath := filepath.Join(storagePath, cleanPath)
|
|
rel, err := filepath.Rel(storagePath, fullPath)
|
|
|
|
if err != nil || strings.HasPrefix(rel, "..") {
|
|
return "", false, fmt.Errorf("invalid file path")
|
|
}
|
|
|
|
info, statErr := os.Stat(fullPath)
|
|
|
|
if statErr != nil {
|
|
if os.IsNotExist(statErr) {
|
|
return fullPath, false, nil
|
|
}
|
|
return "", false, fmt.Errorf("failed to stat path: %w", statErr)
|
|
}
|
|
|
|
if info.IsDir() {
|
|
return "", false, fmt.Errorf("path is a directory")
|
|
}
|
|
|
|
return fullPath, true, nil
|
|
}
|
|
|
|
func ShowHTML(html string) error {
|
|
ResetView()
|
|
|
|
var templateBuffer bytes.Buffer
|
|
_ = htmlTemplate(html).Render(context.Background(), &templateBuffer)
|
|
err := browser.Browser.OpenHTML(templateBuffer.String())
|
|
|
|
return err
|
|
}
|
|
|
|
func ResetView() {
|
|
err := fileHandler.closeRunningProgram()
|
|
if err != nil {
|
|
slog.Error("Failed to close running program", "error", err)
|
|
}
|
|
}
|