-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
481 lines (422 loc) · 13.7 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
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
package main
import (
"context"
"encoding/json"
"fmt"
"html/template"
"log"
"net/http"
"path/filepath"
"strings"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/client-go/dynamic"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/util/homedir"
)
// 🔧 Structure pour les Kustomizations
type Kustomization struct {
Resource string `json:"resource"`
Namespace string `json:"namespace"`
Path string `json:"path"`
Status string `json:"status"`
LastApplied string `json:"lastApplied"`
Conditions []Condition `json:"conditions"` // Nouveau champ
Message string `json:"message"` // Message d'erreur principal
Group string `json:"group"` // Nouveau champ
}
// 🔧 Structure pour les HelmRelease
type HelmRelease struct {
Resource string `json:"resource"`
Namespace string `json:"namespace"`
ReleaseName string `json:"releaseName"`
Interval string `json:"interval"`
Chart string `json:"chart"`
Version string `json:"version"`
Status string `json:"status"`
LastApplied string `json:"lastApplied"`
Conditions []Condition `json:"conditions"` // Nouveau champ
Message string `json:"message"` // Message d'erreur principal
Group string `json:"group"` // Nouveau champ
}
type Condition struct {
Type string `json:"type"`
Status string `json:"status"`
Reason string `json:"reason"`
Message string `json:"message"`
}
// 🎯 Structure détaillée du Kustomization FluxCD
type FluxKustomization struct {
APIVersion string `json:"apiVersion"`
Kind string `json:"kind"`
Metadata struct {
Name string `json:"name"`
Namespace string `json:"namespace"`
} `json:"metadata"`
Spec struct {
Path string `json:"path"`
Prune bool `json:"prune"`
SourceRef struct {
Kind string `json:"kind"`
Name string `json:"name"`
} `json:"sourceRef"`
} `json:"spec"`
Status struct {
LastAppliedRevision string `json:"lastAppliedRevision"`
Conditions []Condition
} `json:"status"`
}
// 🎯 Structure détaillée d'une HelmRelease FluxCD
type FluxHelmRelease struct {
APIVersion string `json:"apiVersion"`
Kind string `json:"kind"`
Metadata struct {
Name string `json:"name"`
Namespace string `json:"namespace"`
} `json:"metadata"`
Spec struct {
ReleaseName string `json:"releaseName"`
Interval string `json:"interval"`
Chart struct {
Spec struct {
Chart string `json:"chart"`
Version string `json:"version"`
} `json:"spec"`
} `json:"chart"`
} `json:"spec"`
Status struct {
LastAppliedRevision string `json:"lastAppliedRevision"`
Conditions []Condition
} `json:"status"`
}
func getKustomizations() ([]Kustomization, error) {
config, err := getK8sClient()
if err != nil {
return nil, fmt.Errorf("❌ erreur connexion cluster: %v", err)
}
// 🚀 Création du client dynamique
dynamicClient, err := dynamic.NewForConfig(config)
if err != nil {
return nil, err
}
// 📦 Définition de la ressource Kustomization de FluxCD
gvr := schema.GroupVersionResource{
Group: "kustomize.toolkit.fluxcd.io", // Groupe API FluxCD
Version: "v1", // Version de l'API
Resource: "kustomizations", // Type de ressource
}
// 📥 Récupération des Kustomizations
results, err := dynamicClient.Resource(gvr).Namespace("").List(context.TODO(), metav1.ListOptions{})
if err != nil {
log.Printf("❌ Erreur lors de la récupération des kustomizations: %v", err)
return nil, err
}
var kustomizations []Kustomization
// 🔄 Traitement des résultats
for _, result := range results.Items {
resultData, err := result.MarshalJSON()
if err != nil {
log.Printf("❌ Erreur marshaling: %v", err)
continue
}
var fluxKusto FluxKustomization
if err := json.Unmarshal(resultData, &fluxKusto); err != nil {
log.Printf("❌ Erreur parsing: %v", err)
continue
}
// Extraction des conditions et du message d'erreur
var conditions []Condition
mainMessage := ""
for _, cond := range fluxKusto.Status.Conditions {
condition := Condition{
Type: cond.Type,
Status: cond.Status,
Reason: cond.Reason,
Message: cond.Message,
}
conditions = append(conditions, condition)
// Si la condition est Ready et False, on garde le message d'erreur
if cond.Type == "Ready" && cond.Status == "False" {
mainMessage = cond.Message
}
}
// Construction de l'objet Kustomization
kusto := Kustomization{
Resource: fluxKusto.Kind + "/" + fluxKusto.Metadata.Name,
Namespace: fluxKusto.Metadata.Namespace,
Path: fluxKusto.Spec.Path,
Status: getStatusFromConditions(conditions),
LastApplied: fluxKusto.Status.LastAppliedRevision,
Conditions: conditions,
Message: mainMessage,
Group: extractGroupFromPath(fluxKusto.Spec.Path),
}
kustomizations = append(kustomizations, kusto)
}
return kustomizations, nil
}
func getHelmReleases() ([]HelmRelease, error) {
config, err := getK8sClient()
if err != nil {
return nil, fmt.Errorf("❌ erreur connexion cluster: %v", err)
}
// 🚀 Création du client dynamique
dynamicClient, err := dynamic.NewForConfig(config)
if err != nil {
return nil, err
}
// 📦 Définition de la ressource HelmRelease de FluxCD
gvr := schema.GroupVersionResource{
Group: "helm.toolkit.fluxcd.io", // Groupe API FluxCD
Version: "v2", // Version de l'API
Resource: "helmreleases", // Type de ressource
}
// 📥 Récupération des HelmReleases
results, err := dynamicClient.Resource(gvr).Namespace("").List(context.TODO(), metav1.ListOptions{})
if err != nil {
log.Printf("❌ Erreur lors de la récupération des HelmReleases: %v", err)
return nil, err
}
var helmReleases []HelmRelease
// 🔄 Traitement des résultats
for _, result := range results.Items {
resultData, err := result.MarshalJSON()
if err != nil {
log.Printf("❌ Erreur marshaling: %v", err)
continue
}
var fluxHelm FluxHelmRelease
if err := json.Unmarshal(resultData, &fluxHelm); err != nil {
log.Printf("❌ Erreur parsing: %v", err)
continue
}
// Extraction des conditions et du message d'erreur
var conditions []Condition
mainMessage := ""
for _, cond := range fluxHelm.Status.Conditions {
condition := Condition{
Type: cond.Type,
Status: cond.Status,
Reason: cond.Reason,
Message: cond.Message,
}
conditions = append(conditions, condition)
// Si la condition est Ready et False, on garde le message d'erreur
if cond.Type == "Ready" && cond.Status == "False" {
mainMessage = cond.Message
}
}
// Construction de l'objet HelmRelease
helm := HelmRelease{
Resource: fluxHelm.Kind + "/" + fluxHelm.Metadata.Name,
Namespace: fluxHelm.Metadata.Namespace,
ReleaseName: fluxHelm.Spec.ReleaseName,
Interval: fluxHelm.Spec.Interval,
Chart: fluxHelm.Spec.Chart.Spec.Chart,
Version: fluxHelm.Spec.Chart.Spec.Version,
Status: getStatusFromConditions(conditions),
LastApplied: fluxHelm.Status.LastAppliedRevision,
Conditions: conditions,
Message: mainMessage,
Group: extractGroupFromPath(fluxHelm.Spec.Chart.Spec.Chart),
}
helmReleases = append(helmReleases, helm)
}
return helmReleases, nil
}
func getStatusFromConditions(conditions []Condition) string {
for _, cond := range conditions {
if cond.Type == "Ready" {
return cond.Status
}
}
return "Unknown"
}
func getK8sClient() (*rest.Config, error) {
// 🔍 Tente d'abord de charger la configuration in-cluster
config, err := rest.InClusterConfig()
if err != nil {
// 🏠 Si échec, essaie la config locale
home := homedir.HomeDir()
kubeconfig := filepath.Join(home, ".kube", "config")
// 🔧 Construit la config depuis le fichier kubeconfig
config, err := clientcmd.BuildConfigFromFlags("", kubeconfig)
if err != nil {
return nil, fmt.Errorf("❌ impossible de charger la configuration Kubernetes: %v", err)
}
return config, nil
}
return config, nil
}
func extractGroupFromPath(path string) string {
// Divise le chemin en segments
segments := strings.Split(path, "/")
// Nous voulons ignorer des segments vides ou génériques
for _, segment := range segments {
// Ignore les segments vides ou le point
if segment == "" || segment == "." {
continue
}
// Retourne le premier segment significatif
return segment
}
// Si aucun segment valide n'est trouvé, retourne "other"
return "other"
}
func main() {
// 📝 Log de démarrage
log.Printf("🚀 Démarrage du serveur Frontend FluxCD Viewer...")
// Servir les fichiers statiques
fs := http.FileServer(http.Dir("static"))
http.Handle("/static/", http.StripPrefix("/static/", fs))
// Routes
http.HandleFunc("/", handleHome)
http.HandleFunc("/analyze", handleAnalyze)
http.HandleFunc("/details", handleDetails)
// ✨ Nouvelle route health check
http.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {
// Vérifie la connexion au cluster
_, err := getK8sClient()
if err != nil {
log.Printf("❌ Health check échoué: %v", err)
http.Error(w, "Kubernetes connection failed", http.StatusServiceUnavailable)
return
}
w.WriteHeader(http.StatusOK)
w.Write([]byte("ok"))
})
// 📢 Logs plus détaillés
log.Printf("🛣️ Routes configurées: /, /analyze, /details, /health")
log.Printf("🌐 Serveur prêt sur http://localhost:8080")
// Démarrage du serveur
if err := http.ListenAndServe(":8080", nil); err != nil {
log.Fatalf("❌ Erreur démarrage serveur: %v", err)
}
}
func handleDetails(w http.ResponseWriter, r *http.Request) {
name := r.URL.Query().Get("name")
namespace := r.URL.Query().Get("namespace")
kustomizations, err := getKustomizations()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
helmreleases, err := getHelmReleases()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
// Recherche de la kustomization spécifique
for _, ks := range kustomizations {
if ks.Resource == name && ks.Namespace == namespace {
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(ks)
return
}
}
// Recherche de la helmrelease spécifique
for _, hr := range helmreleases {
if hr.Resource == name && hr.Namespace == namespace {
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(hr)
return
}
}
http.Error(w, "Resource not found", http.StatusNotFound)
}
func handleAnalyze(w http.ResponseWriter, r *http.Request) {
kustomizations, err := getKustomizations()
if err != nil {
log.Printf("❌ Erreur analyse: %v", err)
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "application/json")
if err := json.NewEncoder(w).Encode(kustomizations); err != nil {
log.Printf("❌ Erreur encodage JSON: %v", err)
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}
func handleHome(w http.ResponseWriter, r *http.Request) {
// Création des fonctions template
funcMap := template.FuncMap{
"getCategoryFromPath": func(path string) string {
if strings.Contains(path, "/apis/") {
return "apis"
} else if strings.Contains(path, "/addons/") {
return "addons"
} else if strings.Contains(path, "/apps/") {
return "apps"
}
return "other"
},
"shortenCommit": func(hash string) string {
if len(hash) > 7 {
return hash[:7]
}
return hash
},
"getBranch": func(lastApplied string) string {
parts := strings.Split(lastApplied, "/")
if len(parts) > 0 {
return parts[0] // Retourne la partie avant le '/'
}
return lastApplied
},
"countHealthy": func(kustomizations []Kustomization) int {
count := 0
for _, k := range kustomizations {
if k.Status == "True" {
count++
}
}
return count
},
"countFailed": func(kustomizations []Kustomization) int {
count := 0
for _, k := range kustomizations {
if k.Status != "True" {
count++
}
}
return count
},
"getUniqueGroups": func(kustomizations []Kustomization, helmreleases []HelmRelease) map[string]bool {
groups := make(map[string]bool)
for _, ks := range kustomizations {
groups[ks.Group] = true
}
for _, hr := range helmreleases {
groups[hr.Group] = true
}
return groups
},
"title": strings.Title,
}
// Parse le template avec les fonctions
tmpl := template.Must(template.New("index.html").Funcs(funcMap).ParseFiles("views/index.html"))
analysesks, err := getKustomizations()
if err != nil {
log.Printf("Erreur lors de l'analyse: %v", err)
http.Error(w, "Erreur lors de l'analyse", http.StatusInternalServerError)
return
}
analyseshr, err := getHelmReleases()
if err != nil {
log.Printf("Erreur lors de l'analyse: %v", err)
http.Error(w, "Erreur lors de l'analyse", http.StatusInternalServerError)
return
}
data := struct {
Kustomizations []Kustomization
HelmReleases []HelmRelease
}{
Kustomizations: analysesks,
HelmReleases: analyseshr,
}
if err := tmpl.Execute(w, data); err != nil {
log.Printf("Erreur template: %v", err)
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}