-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
175 lines (160 loc) · 3.89 KB
/
Copy pathmain.go
File metadata and controls
175 lines (160 loc) · 3.89 KB
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
174
175
// Copyright 2025 The OpenCmd Authors. All rights reserved.
// Use of this source code is governed by a GPL-3.0
// license that can be found in the LICENSE file.
package main
import (
"fmt"
"github.com/opencommand/echochic"
"opencmd-cookbook/config"
"opencmd-cookbook/handler"
"opencmd-cookbook/routes"
octmpl "opencmd-cookbook/template"
"os"
"strconv"
"strings"
"time"
"github.com/charmbracelet/lipgloss"
"github.com/gin-gonic/gin"
"sigs.k8s.io/yaml"
)
func init() {
if err := octmpl.Reg.Load("detail", []string{"src/views/base.html", "src/views/detail.html"}); err != nil {
panic(err)
}
if err := octmpl.Reg.Load("home", []string{"src/components/base.html", "src/index.html", "src/components/macros.html", "src/components/footer.html"}); err != nil {
panic(err)
}
if err := octmpl.Reg.Load("explain", []string{"src/views/base.html", "src/views/explain.html", "src/components/macros.html"}); err != nil {
panic(err)
}
if err := octmpl.Reg.Load("about", []string{"src/views/about.html", "src/views/base.html", "src/components/macros.html", "src/components/footer.html"}); err != nil {
panic(err)
}
}
func renderStatusColor(code int) string {
var styled lipgloss.Style
switch {
case code >= 200 && code < 300:
styled = echochic.Green
case code >= 300 && code < 400:
styled = echochic.BlueDark
case code >= 400 && code < 500:
styled = echochic.Yellow
case code >= 500:
styled = echochic.Red
default:
styled = echochic.Grey
}
return styled.Render(fmt.Sprintf("%d", code))
}
func renderHTTPMethod(method string) string {
var styled lipgloss.Style
switch strings.ToUpper(method) {
case "GET":
styled = echochic.Green
case "POST":
styled = echochic.Blue
case "PUT":
styled = echochic.Yellow
case "DELETE":
styled = echochic.Red
case "PATCH":
styled = echochic.Pink
case "OPTIONS":
styled = echochic.GreyDark
case "HEAD":
styled = echochic.Grey
default:
styled = echochic.Bold
}
return styled.Render(method)
}
func main() {
startTime := time.Now()
var cfg config.Configure
data, _ := os.ReadFile("boot.yaml")
yaml.Unmarshal(data, &cfg)
gin.SetMode(gin.ReleaseMode)
go handler.WatchWeb("./src")
router := gin.New()
router.Use(gin.LoggerWithConfig(gin.LoggerConfig{
Formatter: func(params gin.LogFormatterParams) string {
return fmt.Sprintln(echochic.Styled().
Grey(params.TimeStamp.Format("15:04:05")).
Space().
With(echochic.Bold, echochic.Blue).
Text("[GIN]").
Space().
Text(renderStatusColor(params.StatusCode)).
Space().
Grey(params.Latency.String()).
Space().
GreyDark(params.ClientIP).
Space().
Text(renderHTTPMethod(params.Method)).
Space().
BlueDark(params.Path).
String())
},
}), gin.Recovery())
routes.Register(router, []routes.Route{
&routes.StaticRoute{},
&routes.PagesRoute{},
&routes.HotfixRoute{},
})
uptime := time.Since(startTime).Milliseconds()
fmt.Println(echochic.Styled().
Newline().
Indent(2).
With(echochic.Bold, echochic.Green, echochic.Italic).
Text("opencmd-cookbook").
Space().
Green("v1.0.0").
Space(2).
Grey("ready in").
Space().
Bold(strconv.Itoa(int(uptime))).
Space().
Text("ms").
String())
fmt.Println(echochic.Styled().
Newline().
Space(2).
Green("➜").
Space(2).
Bold("Local:").
Space(4).
BlueDark("http://localhost:").
With(echochic.Bold, echochic.Blue).
Text(strconv.Itoa(int(cfg.Port))).
String())
fmt.Println(echochic.Styled().
Space(2).
GreenDark("➜").
Space(2).
With(echochic.Bold, echochic.Grey).
Text("Network:").
Space(2).
Grey("set").
Space().
Bold("host / port").
Space().
Grey("in").
Space().
Bold("boot.yaml").
Space().
Grey("to expose").
String())
fmt.Println(echochic.Styled().
Space(2).
GreenDark("➜").
Space(2).
Grey("press").
Space().
Bold("ctrl + c").
Space().
Grey("to exit").
String())
fmt.Println()
router.Run(fmt.Sprintf("%s:%d", cfg.Host, cfg.Port))
}