-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
346 lines (277 loc) ยท 7.12 KB
/
utils.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
package main
import (
"bytes"
"context"
"crypto/sha1"
"encoding/base64"
"encoding/json"
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"strconv"
"strings"
"text/template"
"time"
"github.com/docker/docker/api/types"
"github.com/docker/docker/client"
"github.com/gin-gonic/gin"
)
type Challenge struct {
Image string
Name string
Id string
Message string
Type string
Env []string
}
var OnlineSandboxIds []string
func GetOnlineSandbox() []Challenge {
cli, err := client.NewClientWithOpts()
if err != nil {
panic(err)
}
var resp []Challenge
for i, onlineSandboxId := range OnlineSandboxIds {
data, err := cli.ContainerInspect(context.Background(), onlineSandboxId)
if err != nil {
fmt.Println("Failed to inspect container:", err) // ์๋ฌ ๋ฉ์์ง ์ถ๋ ฅ
OnlineSandboxIds = append(OnlineSandboxIds[:i], OnlineSandboxIds[i+1:]...)
continue
}
resp = append(resp, Challenge{
Id: data.ID[0:12],
Name: data.Config.Image,
Message: data.State.Status,
})
}
return resp
}
func ResetSandbox() {
cli, err := client.NewClientWithOpts()
if err != nil {
panic(err)
}
ctx := context.Background()
for _, onlineSandboxId := range OnlineSandboxIds {
if err := cli.ContainerStop(ctx, onlineSandboxId, nil); err != nil {
fmt.Println("Failed to stop container:", err) // ์๋ฌ ๋ฉ์์ง ์ถ๋ ฅ
continue
}
if err := cli.ContainerRemove(ctx, onlineSandboxId, types.ContainerRemoveOptions{
RemoveVolumes: true,
Force: true,
}); err != nil {
fmt.Println("Failed to remove container:", err) // ์๋ฌ ๋ฉ์์ง ์ถ๋ ฅ
continue
}
}
OnlineSandboxIds = nil
}
func LoadOnlineSandbox() {
cli, err := client.NewClientWithOpts()
if err != nil {
panic(err)
}
ctx := context.Background()
containers, err := cli.ContainerList(ctx, types.ContainerListOptions{})
if err != nil {
panic(err)
}
for _, instance := range containers {
if instance.Labels["dklodd"] == "true" {
OnlineSandboxIds = append(OnlineSandboxIds, instance.ID[0:12])
}
}
}
func CRLogin() (string, error) {
ctx := context.Background()
cli, err := client.NewClientWithOpts()
if err != nil {
panic(err)
}
authConfig := types.AuthConfig{
Username: os.Getenv("CR_USERNAME"),
Password: os.Getenv("CR_PASSWORD"),
ServerAddress: "https://ghcr.io",
}
if os.Getenv("CR_USERNAME") == "" || os.Getenv("CR_PASSWORD") == "" {
return "public image maybe?", nil
}
_, err = cli.RegistryLogin(ctx, authConfig)
if err != nil {
return "", err
}
encodedJSON, err := json.Marshal(authConfig)
if err != nil {
return "", err
}
authStr := base64.URLEncoding.EncodeToString(encodedJSON)
return authStr, nil
}
func PullImage(imageName string) {
ctx := context.Background()
cli, err := client.NewClientWithOpts()
if err != nil {
panic(err)
}
fmt.Println("create sandbox: " + imageName)
authStr, err := CRLogin()
if err != nil {
panic(err)
}
if authStr == "public image maybe?" {
fmt.Println("public image maybe?")
authStr = ""
}
_, _, err = cli.ImageInspectWithRaw(ctx, imageName)
if err != nil {
fmt.Println("pull image: " + imageName)
out, err := cli.ImagePull(ctx, imageName, types.ImagePullOptions{
RegistryAuth: authStr,
})
if err != nil {
panic(err)
}
// Wait for the image pull to complete
var buf bytes.Buffer
_, copyErr := io.Copy(&buf, out)
if copyErr != nil {
panic(copyErr)
}
// Check if there are any errors reported in the output
if strings.Contains(buf.String(), "error") {
panic("Error while pulling image: " + imageName)
}
// Now the image pull is complete
fmt.Println("Image pull complete for: " + imageName)
}
}
func GenerateId(data *gin.Context) string {
hash := sha1.Sum([]byte(data.ClientIP() + data.Request.UserAgent() + time.Now().String()))
return strings.ReplaceAll(strings.ToLower(base64.RawURLEncoding.EncodeToString(hash[:])[:5]), "_", "0")
}
func GetAllChall() ([]Challenge, error) {
fileContent, err := os.ReadFile("challenges.json")
if err != nil {
return nil, err
}
// Unmarshal JSON content into an array of Challenge structs
var challenges []Challenge
err = json.Unmarshal(fileContent, &challenges)
if err != nil {
return nil, err
}
var ChallengeId int
for i := 0; i < len(challenges); i++ {
ChallengeId = i
challenges[i].Id = strconv.Itoa(ChallengeId)
}
return challenges, nil
}
func AddChall(chall Challenge) {
challenges, err := GetAllChall()
if err != nil {
panic(err)
}
challenges = append(challenges, chall)
challengesJson, err := json.Marshal(challenges)
if err != nil {
panic(err)
}
err = os.WriteFile("challenges.json", challengesJson, 0644)
if err != nil {
panic(err)
}
}
func RemoveSandbox(sandboxId string) string {
cli, err := client.NewClientWithOpts()
if err != nil {
panic(err)
}
ctx := context.Background()
for _, onlineSandboxId := range OnlineSandboxIds {
if onlineSandboxId == sandboxId {
if err := cli.ContainerStop(ctx, sandboxId, nil); err != nil {
return "docker client error - 3: failed to stop container"
}
if err := cli.ContainerRemove(ctx, sandboxId, types.ContainerRemoveOptions{
RemoveVolumes: true,
Force: true,
}); err != nil {
return "docker client error - 4: failed to remove container"
}
for i, onlineSandboxId := range OnlineSandboxIds {
if onlineSandboxId == sandboxId {
OnlineSandboxIds = append(OnlineSandboxIds[:i], OnlineSandboxIds[i+1:]...)
}
}
return "successfully removed sandbox"
}
}
return "sandbox not found"
}
func RemoveChall(challName string) {
challenges, err := GetAllChall()
if err != nil {
panic(err)
}
for i := 0; i < len(challenges); i++ {
if challenges[i].Name == challName {
challenges = append(challenges[:i], challenges[i+1:]...)
}
}
challengesJson, err := json.Marshal(challenges)
if err != nil {
panic(err)
}
err = os.WriteFile("challenges.json", challengesJson, 0644)
if err != nil {
panic(err)
}
}
func GetChallbyId(id string) Challenge {
chall, err := GetAllChall()
if err != nil {
panic(err)
}
numberId, _ := strconv.Atoi(id)
return chall[numberId]
}
func RenderTemplates(c *gin.Context, Data any, optionTemplateName ...string) {
mainTemplateName := "main"
if c.GetHeader("Hx-Request") == "true" {
mainTemplateName = "htmx"
}
var templateName string
if len(optionTemplateName) == 0 {
templateName = c.Request.URL.Path
if templateName == "/" {
templateName = "main"
}
} else {
templateName = optionTemplateName[0]
}
// ๋ฉ์ธ ํ
ํ๋ฆฟ ๋๋ ํ ๋ฆฌ
mainTemplateDir := "templates/layouts/"
// ํ
ํ๋ฆฟ ์์ฑ
tmpl, err := template.New(mainTemplateName).ParseGlob(filepath.Join(mainTemplateDir, "*.tmpl"))
if err != nil {
return
}
// ์๋ธ ํ
ํ๋ฆฟ ๋ฑ๋ก
subTemplatePath := filepath.Join("templates/pages/", templateName+".tmpl")
_, err = tmpl.ParseFiles(subTemplatePath)
if err != nil {
return
}
// ๋ ๋๋ง ๊ฒฐ๊ณผ๋ฅผ ์ ์ฅํ ๋ฒํผ ์์ฑ
var result bytes.Buffer
// ํ
ํ๋ฆฟ ์คํ ๋ฐ ๊ฒฐ๊ณผ๋ฅผ ๋ฒํผ์ ์ฐ๊ธฐ
err = tmpl.ExecuteTemplate(&result, mainTemplateName+".tmpl", Data)
if err != nil {
return
}
c.Data(http.StatusOK, "text/html; charset=utf-8", result.Bytes())
}