mirror of
https://github.com/garraflavatra/rolens.git
synced 2024-11-22 10:25:48 +01:00
169 lines
4.5 KiB
Go
169 lines
4.5 KiB
Go
package app
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"path"
|
|
"path/filepath"
|
|
"runtime"
|
|
"strings"
|
|
|
|
"github.com/garraflavatra/rolens/internal/ui"
|
|
wailsRuntime "github.com/wailsapp/wails/v2/pkg/runtime"
|
|
"golang.org/x/sync/syncmap"
|
|
)
|
|
|
|
type EnvironmentInfo struct {
|
|
Arch string `json:"arch"`
|
|
BuildType string `json:"buildType"`
|
|
Platform string `json:"platform"`
|
|
Version string `json:"version"`
|
|
|
|
HasMongoExport bool `json:"hasMongoExport"`
|
|
HasMongoDump bool `json:"hasMongoDump"`
|
|
HasMongoShell bool `json:"hasMongoShell"`
|
|
|
|
HomeDirectory string `json:"homeDirectory"`
|
|
DataDirectory string `json:"dataDirectory"`
|
|
LogDirectory string `json:"logDirectory"`
|
|
DownloadDirectory string `json:"downloadDirectory"`
|
|
}
|
|
|
|
type App struct {
|
|
Env EnvironmentInfo
|
|
State syncmap.Map
|
|
ctx context.Context
|
|
ui *ui.UI
|
|
}
|
|
|
|
func NewApp(version string) *App {
|
|
a := &App{}
|
|
a.Env.Version = strings.TrimSpace(version)
|
|
|
|
_, err := exec.LookPath("mongodump")
|
|
a.Env.HasMongoDump = err == nil
|
|
|
|
_, err = exec.LookPath("mongoexport")
|
|
a.Env.HasMongoExport = err == nil
|
|
|
|
_, err = exec.LookPath("mongosh")
|
|
a.Env.HasMongoShell = err == nil
|
|
|
|
a.Env.HomeDirectory, err = os.UserHomeDir()
|
|
if err != nil {
|
|
panic(errors.New("encountered an error while getting home directory"))
|
|
}
|
|
|
|
switch runtime.GOOS {
|
|
case "windows":
|
|
a.Env.DataDirectory = filepath.Join(a.Env.HomeDirectory, "/AppData/Local/Rolens")
|
|
a.Env.LogDirectory = filepath.Join(a.Env.HomeDirectory, "/AppData/Local/Rolens/Logs")
|
|
a.Env.DownloadDirectory = filepath.Join(a.Env.HomeDirectory, "/Downloads")
|
|
case "darwin":
|
|
a.Env.DataDirectory = filepath.Join(a.Env.HomeDirectory, "/Library/Application Support/Rolens")
|
|
a.Env.LogDirectory = filepath.Join(a.Env.HomeDirectory, "/Library/Logs/Rolens")
|
|
a.Env.DownloadDirectory = filepath.Join(a.Env.HomeDirectory, "/Downloads")
|
|
case "linux":
|
|
a.Env.DataDirectory = filepath.Join(a.Env.HomeDirectory, "/.config/rolens")
|
|
a.Env.LogDirectory = filepath.Join(a.Env.HomeDirectory, "/.config/rolens/logs")
|
|
a.Env.DownloadDirectory = filepath.Join(a.Env.HomeDirectory, "/Downloads")
|
|
default:
|
|
panic(errors.New("unsupported platform"))
|
|
}
|
|
|
|
os.MkdirAll(a.Env.DataDirectory, os.ModePerm)
|
|
os.MkdirAll(a.Env.LogDirectory, os.ModePerm)
|
|
|
|
return a
|
|
}
|
|
|
|
func (a *App) Startup(ctx context.Context, ui *ui.UI) {
|
|
a.ctx = ctx
|
|
a.ui = ui
|
|
wailsRuntime.LogInfo(a.ctx, "Runcycle: Startup")
|
|
|
|
wailsEnv := wailsRuntime.Environment(a.ctx)
|
|
a.Env.Arch = wailsEnv.Arch
|
|
a.Env.BuildType = wailsEnv.BuildType
|
|
a.Env.Platform = wailsEnv.Platform
|
|
|
|
jsonEnv, err := json.MarshalIndent(a.Env, "", " ")
|
|
if err != nil {
|
|
wailsRuntime.LogWarningf(a.ctx, "Could not marshal environment info: %s", err.Error())
|
|
}
|
|
err = os.WriteFile(path.Join(a.Env.LogDirectory, "environment.json"), jsonEnv, 0644)
|
|
if err != nil {
|
|
wailsRuntime.LogWarningf(a.ctx, "Could not save environment.json: %s", err.Error())
|
|
}
|
|
}
|
|
|
|
func (a *App) Shutdown(ctx context.Context) {
|
|
wailsRuntime.LogInfo(a.ctx, "Runcycle: Shutdown")
|
|
}
|
|
|
|
func (a *App) Environment() EnvironmentInfo {
|
|
return a.Env
|
|
}
|
|
|
|
func (a *App) PurgeLogDirectory() {
|
|
choice, _ := wailsRuntime.MessageDialog(a.ctx, wailsRuntime.MessageDialogOptions{
|
|
Title: "Confirm",
|
|
Message: "Are you sure you want to remove all logfiles?",
|
|
Buttons: []string{"Yes", "Cancel"},
|
|
DefaultButton: "Yes",
|
|
CancelButton: "Cancel",
|
|
})
|
|
if choice != "Yes" {
|
|
return
|
|
}
|
|
|
|
err := os.RemoveAll(a.Env.LogDirectory)
|
|
if err == nil {
|
|
wailsRuntime.MessageDialog(a.ctx, wailsRuntime.MessageDialogOptions{
|
|
Title: "Success",
|
|
Message: "Successfully purged log directory",
|
|
Type: wailsRuntime.InfoDialog,
|
|
})
|
|
} else {
|
|
wailsRuntime.MessageDialog(a.ctx, wailsRuntime.MessageDialogOptions{
|
|
Title: "Error while purging log directory",
|
|
Message: err.Error(),
|
|
Type: wailsRuntime.ErrorDialog,
|
|
})
|
|
}
|
|
}
|
|
|
|
func (a *App) ReportSharedStateVariable(key, value string) {
|
|
a.State.Store(key, value)
|
|
wailsRuntime.LogDebug(a.ctx, fmt.Sprintf("State: %s=\"%s\"", key, value))
|
|
}
|
|
|
|
func (a *App) AskConfirmation(message string) bool {
|
|
var title string = ""
|
|
if runtime.GOOS == "darwin" {
|
|
title = message
|
|
message = ""
|
|
} else {
|
|
title = "Confirm"
|
|
}
|
|
|
|
button, err := wailsRuntime.MessageDialog(a.ctx, wailsRuntime.MessageDialogOptions{
|
|
Type: wailsRuntime.QuestionDialog,
|
|
Title: title,
|
|
Message: message,
|
|
Buttons: []string{"Yes", "No"},
|
|
DefaultButton: "Yes",
|
|
CancelButton: "No",
|
|
})
|
|
|
|
if err == nil {
|
|
return button == "Yes"
|
|
} else {
|
|
return false
|
|
}
|
|
}
|