-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.go
83 lines (71 loc) · 1.92 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//go:generate go install -v github.com/josephspurrier/goversioninfo/cmd/goversioninfo
//go:generate goversioninfo -icon=res/papp.ico -manifest=res/papp.manifest
package main
import (
"os"
"path"
"path/filepath"
"github.com/go-ini/ini"
"github.com/portapps/portapps/v3"
"github.com/portapps/portapps/v3/pkg/log"
"github.com/portapps/portapps/v3/pkg/utl"
)
type config struct {
Cleanup bool `yaml:"cleanup" mapstructure:"cleanup"`
}
var (
app *portapps.App
cfg *config
)
func init() {
var err error
// Default config
cfg = &config{
Cleanup: false,
}
// Init app
if app, err = portapps.NewWithCfg("nextcloud-portable", "Nextcloud", cfg); err != nil {
log.Fatal().Err(err).Msg("Cannot initialize application. See log file for more info.")
}
}
func main() {
confPath := utl.CreateFolder(app.DataPath, "conf")
utl.CreateFolder(app.DataPath, "storage")
utl.CreateFolder(app.DataPath)
app.Process = utl.PathJoin(app.AppPath, "nextcloud.exe")
app.Args = []string{
"--confdir",
confPath,
}
confFilePath := filepath.Join(confPath, "nextcloud.cfg")
if _, err := os.Stat(confFilePath); err == nil {
ini.PrettyFormat = false
log.Info().Msg("Update configuration...")
conf, err := ini.LoadSources(ini.LoadOptions{
IgnoreInlineComment: true,
SkipUnrecognizableLines: false,
UnescapeValueDoubleQuotes: true,
UnescapeValueCommentSymbols: true,
PreserveSurroundedQuote: true,
SpaceBeforeInlineComment: true,
}, confFilePath)
if err == nil {
conf.Section("General").Key("skipUpdateCheck").SetValue("true")
if err := conf.SaveTo(confFilePath); err != nil {
log.Error().Err(err).Msg("Write configuration")
}
} else {
log.Error().Err(err).Msg("Load nextcloud.cfg file")
}
}
// Cleanup on exit
if cfg.Cleanup {
defer func() {
utl.Cleanup([]string{
path.Join(os.Getenv("LOCALAPPDATA"), "Nextcloud"),
})
}()
}
defer app.Close()
app.Launch(os.Args[1:])
}