-
Notifications
You must be signed in to change notification settings - Fork 0
/
cordial.go
173 lines (153 loc) · 4.84 KB
/
cordial.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
Copyright © 2022 ITRS Group
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
// Package cordial is a collection of tools, packages and integrations for
// Geneos written primarily in Go
package cordial
import (
_ "embed" // embed the VERSION in the top-level package
"fmt"
"html"
"io"
"os"
"path"
"path/filepath"
"runtime"
"strings"
"time"
"github.com/charmbracelet/glamour"
"golang.org/x/term"
"gopkg.in/natefinch/lumberjack.v2"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
)
// VERSION is a semi-global string variable
//
//go:embed VERSION
var VERSION string
// LogInit is called to set-up zerolog the way we like it
func LogInit(prefix string, logfile ...string) {
zerolog.CallerMarshalFunc = func(pc uintptr, file string, line int) string {
fnName := "UNKNOWN"
fn := runtime.FuncForPC(pc)
if fn != nil {
fnName = fn.Name()
}
fnName = path.Base(fnName)
// fnName = strings.TrimPrefix(fnName, "main.")
s := strings.SplitAfterN(file, prefix+"/", 2)
if len(s) == 2 {
file = s[1]
}
return fmt.Sprintf("%s:%d %s()", file, line, fnName)
}
var nocolor bool
var out io.WriteCloser
out = os.Stderr
if len(logfile) > 0 {
l := &lumberjack.Logger{
Filename: logfile[0],
}
out = l
nocolor = true
}
log.Logger = log.Output(zerolog.ConsoleWriter{
Out: out,
TimeFormat: time.RFC3339,
NoColor: nocolor,
FormatLevel: func(i interface{}) string {
return strings.ToUpper(fmt.Sprintf("%s:", i))
},
FormatMessage: func(i interface{}) string {
return fmt.Sprintf("%s: %s", prefix, i)
},
}).With().Caller().Logger()
}
func renderMD(in string) (out string) {
var width int = 80
var err error
style := glamour.WithAutoStyle()
if !term.IsTerminal(int(os.Stdout.Fd())) {
style = glamour.WithStandardStyle("ascii")
} else {
width, _, err = term.GetSize(int(os.Stdout.Fd()))
if err != nil {
width = 80
}
if width > 132 {
width = 132
}
}
tr, err := glamour.NewTermRenderer(
style,
glamour.WithStylesFromJSONBytes([]byte(`{ "document": { "margin": 2 } }`)),
glamour.WithWordWrap(width-4),
glamour.WithEmoji(),
)
if err != nil {
return in
}
out, err = tr.Render(in)
if err != nil {
return in
}
out = html.UnescapeString(out)
return
}
// RenderHelpAsMD updated the given command to use glamour to render the
// command's Long description as markdown formatted text to an ANSI
// terminal.
func RenderHelpAsMD(command *cobra.Command) {
// render help with glamour
cobra.AddTemplateFunc("md", renderMD)
command.SetHelpTemplate(`{{with (or .Long .Short)}}{{. | md | trimTrailingWhitespaces}}
{{end}}{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}
`)
}
// ExecutableName returns a processed executable name. Symlinks are
// resolved and the basename of the resulting file has, at most, one
// extension removed and then if there is a '-' followed by the matching
// cordial version string. Note this final version string must match
// first version argument or the cordial one compiled into the binary.
//
// For example:
//
// `geneos.exe` -> `geneos`
// `dv2email-v1.10.0` -> `dv2email`
func ExecutableName(version ...string) (execname string) {
execname, _ = os.Executable()
execname, _ = filepath.EvalSymlinks(execname)
execname = path.Base(filepath.ToSlash(execname))
// strip any extension from the binary, to allow windows .EXE
// binary to work. Note we get the extension first, it may be
// capitalised. This will also remove any other extensions, users
// should use '-' or '_' instead.
execname = strings.TrimSuffix(execname, path.Ext(execname))
// finally strip the VERSION, if found, prefixed by a dash, on the
// end of the basename
//
// this way you can run a versioned binary and still see the right
// config files
if len(version) > 0 {
execname = strings.TrimSuffix(execname, "-"+version[0])
} else {
execname = strings.TrimSuffix(execname, "-"+VERSION)
}
return
}