-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
105 lines (96 loc) · 2.06 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package main
import (
"fmt"
"runtime"
"github.com/Tom5521/fsize/echo"
"github.com/Tom5521/fsize/flags"
"github.com/Tom5521/fsize/meta"
"github.com/Tom5521/fsize/settings"
"github.com/Tom5521/fsize/stat"
"github.com/Tom5521/fsize/update"
"github.com/gookit/color"
po "github.com/leonelquinteros/gotext"
"github.com/spf13/cobra"
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
defer func() {
if r := recover(); r != nil {
color.Errorln(r)
}
}()
// Initialize variables
err := settings.Load()
if err != nil {
echo.Error(err)
return
}
InitFlags()
root.SetErrPrefix(color.Error.Render(po.Get("ERROR:")))
defer root.Execute()
}
func RunE(cmd *cobra.Command, args []string) (err error) {
err = cmd.Flags().Parse(args)
if err != nil {
return
}
switch {
case flags.GenBashCompletion || flags.GenFishCompletion || flags.GenZshCompletion:
err = GenerateCompletions(cmd, args)
case flags.PrintSettingsFlag:
echo.Settings()
case len(flags.SettingsFlag) != 0:
err = settings.Parse(flags.SettingsFlag)
if err != nil {
echo.Info(po.Get("Available configuration keys:"))
echo.Settings()
}
case flags.Update:
var (
tag string
updated bool
)
tag, updated, err = update.CheckUpdate()
if err != nil {
return
}
if updated {
echo.Info(po.Get("Already in latest version"))
return
}
err = update.ApplyUpdate(tag)
case flags.BinInfo:
var (
tag string
updated bool
)
tag, updated, err = update.CheckUpdate()
if err != nil {
return
}
fmt.Println(po.Get("Version:"), meta.LongVersion)
fmt.Println(po.Get("Updated:"), updated)
if !updated {
fmt.Println(po.Get("Latest version:"), tag)
}
fmt.Println(po.Get("Source Code: %s", "https://github.com/Tom5521/fsize"))
default:
if len(args) == 0 {
echo.Warning(
po.Get(
"No file/directory was specified, the current directory will be used. (.)",
),
)
args = append(args, ".")
}
for _, f := range args {
var file stat.File
file, err = stat.NewFile(f)
if err != nil {
return
}
fmt.Print(file)
}
}
return
}