summaryrefslogtreecommitdiff
path: root/doAdminGui.go
blob: 3e4fddb9c3d0db1da1bf464100836e932cbed2b5 (plain)
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
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0

package main

// An app to submit patches for the 30 GO GUI repos

import (
	"bytes"
	"fmt"
	"io/ioutil"
	"net/http"
	"net/url"
	"os"
	"os/user"
	"time"

	"go.wit.com/gui"
	"go.wit.com/lib/gadgets"
	"go.wit.com/lib/protobuf/virtpb"
	"go.wit.com/log"
)

// refresh the windows & tables the user has open
func (admin *adminT) refresh() error {
	if argv.Verbose {
		log.Info("virtigo scan here")
	}

	if admin.url == nil {
		log.Info("admin url == nil")
		return fmt.Errorf("admin url == nil")
	}

	msg := []byte(`{"message": "Hello"}`)

	// display the uptime
	if data, err := postData(admin.url.String()+"/uptime", msg); err != nil {
		log.Info("/uptime Error:", err)
	} else {
		log.Info("Response:", string(data))
		admin.uptime.SetText(string(data))
	}

	// update the droplet list
	if data, err := postData(admin.url.String()+"/DropletsPB", msg); err != nil {
		log.Info("/DropletsPB Error:", err)
	} else {
		fmt.Println("DropletsPB Response len:", len(data))
		admin.cluster.Droplets = new(virtpb.Droplets)
		if err := admin.cluster.Droplets.Unmarshal(data); err != nil {
			fmt.Println("droplets marshal failed", err)
			return err
		}
		fmt.Println("Droplet len=", admin.cluster.Droplets.Len())
	}

	// update the hypervisor list
	if data, err := postData(admin.url.String()+"/HypervisorsPB", msg); err != nil {
		log.Info("Error:", err)
	} else {
		fmt.Println("HypervisorsPB Response len:", len(data))
		admin.cluster.Hypervisors = new(virtpb.Hypervisors)
		if err := admin.cluster.Hypervisors.Unmarshal(data); err != nil {
			fmt.Println("hypervisors marshal failed", err)
			return err
		}
		fmt.Println("Hypervisors len=", admin.cluster.Hypervisors.Len())
	}

	// update the events list
	if data, err := postData(admin.url.String()+"/EventsPB", msg); err != nil {
		log.Info("Error:", err)
	} else {
		fmt.Println("EventsPB Response len:", len(data))
		admin.cluster.Events = new(virtpb.Events)
		if err := admin.cluster.Events.Unmarshal(data); err != nil {
			fmt.Println("events marshal failed", err)
			return err
		}
		fmt.Println("Events len=", admin.cluster.Events.Len())
	}
	return nil
}

var client *http.Client

func doLocalhostAdminGui() *adminT {
	admin := new(adminT)

	admin.uptime = me.gwin.Group.NewLabel("uptime")

	grid := me.gwin.Group.RawGrid()

	grid.NewButton("show hypervisors", func() {
		if admin.cluster.Hypervisors == nil {
			log.Info("hypervisors not initialized")
			return
		}
		log.Info("Hypervisors len=", admin.cluster.Hypervisors.Len())
		admin.hwin = newHypervisorsWindow()
		admin.hwin.doStdHypervisors(admin.cluster.Hypervisors)
		admin.hwin.win.Custom = func() {
			log.Info("hiding table window")
		}
	})

	grid.NewButton("droplets", func() {
		if admin.cluster.Droplets == nil {
			log.Info("droplets not initialized")
			return
		}
		admin.dwin = newDropletsWindow(admin)
		admin.dwin.win.Custom = func() {
			log.Info("hiding droplet table window")
		}
		var found *virtpb.Droplets
		found = virtpb.NewDroplets()
		all := admin.cluster.Droplets.All()
		for all.Scan() {
			vm := all.Next()
			if vm.Current.State != virtpb.DropletState_ON {
				continue
			}
			found.Append(vm)
		}
		admin.dwin.doActiveDroplets(found)
	})

	grid.NewButton("events", func() {
		if admin.cluster.Events == nil {
			log.Info("events are not initialized")
			return
		}
		log.Info("Events len=", admin.cluster.Events.Len())
		admin.ewin = newEventsWindow()
		admin.ewin.doStdEvents(admin.cluster.Events)
		admin.ewin.win.Custom = func() {
			log.Info("hiding table window")
		}
	})

	grid.NextRow()

	grid.NewButton("refresh", func() {
		admin.refresh()
	})

	return admin
}

func doAdminGui() {
	me.myGui = gui.New()
	me.myGui.InitEmbed(resources)
	me.myGui.Default()

	// Initialize a persistent client with a custom Transport
	client = &http.Client{
		Transport: &http.Transport{
			DisableKeepAlives: false, // Ensure Keep-Alive is enabled
		},
		Timeout: 10 * time.Second, // Set a reasonable timeout
	}

	me.gwin = gadgets.NewGenericWindow("Virtigo: (run your cluster)", "")
	me.gwin.Custom = func() {
		log.Warn("Main window close")
		os.Exit(0)
	}

	me.cmap = make(map[*virtpb.Cluster]*adminT)
	for c := range me.clusters.IterAll() {
		a := new(adminT)
		me.cmap[c] = a
		log.Info("found in the config file", c.URL[0])
		a.makeClusterGroup(c)
	}

	// sit here forever refreshing the GUI
	for {
		// admin.refresh()
		log.Info("todo: refresh() protobufs here")
		time.Sleep(90 * time.Second)
	}
}

func (admin *adminT) doAdminGui() {
	me.myGui = gui.New()
	me.myGui.InitEmbed(resources)
	me.myGui.Default()

	// Initialize a persistent client with a custom Transport
	client = &http.Client{
		Transport: &http.Transport{
			DisableKeepAlives: false, // Ensure Keep-Alive is enabled
		},
		Timeout: 10 * time.Second, // Set a reasonable timeout
	}

	win := gadgets.NewGenericWindow("Virtigo: (run your cluster)", "localhost")
	win.Custom = func() {
		log.Warn("Main window close")
		os.Exit(0)
	}
	me.gwin = win

	admin.uptime = win.Group.NewLabel("uptime")

	grid := win.Group.RawGrid()

	grid.NewButton("show hypervisors", func() {
		if admin.cluster.Hypervisors == nil {
			log.Info("hypervisors not initialized")
			return
		}
		log.Info("Hypervisors len=", admin.cluster.Hypervisors.Len())
		admin.hwin = newHypervisorsWindow()
		admin.hwin.doStdHypervisors(admin.cluster.Hypervisors)
		admin.hwin.win.Custom = func() {
			log.Info("hiding table window")
		}
	})

	grid.NewButton("droplets", func() {
		if admin.cluster.Droplets == nil {
			log.Info("droplets not initialized")
			return
		}
		admin.dwin = newDropletsWindow(admin)
		admin.dwin.win.Custom = func() {
			log.Info("hiding droplet table window")
		}
		var found *virtpb.Droplets
		found = virtpb.NewDroplets()
		all := admin.cluster.Droplets.All()
		for all.Scan() {
			vm := all.Next()
			if vm.Current.State != virtpb.DropletState_ON {
				continue
			}
			found.Append(vm)
		}
		admin.dwin.doActiveDroplets(found)
	})

	grid.NewButton("events", func() {
		if admin.cluster.Events == nil {
			log.Info("events are not initialized")
			return
		}
		log.Info("Events len=", admin.cluster.Events.Len())
		admin.ewin = newEventsWindow()
		admin.ewin.doStdEvents(admin.cluster.Events)
		admin.ewin.win.Custom = func() {
			log.Info("hiding table window")
		}
	})

	grid.NextRow()

	grid.NewButton("refresh", func() {
		admin.refresh()
	})

	grid.NewButton("test gui close", func() {
		me.myGui.Close()
		// okExit("admin close")
	})

	me.cmap = make(map[*virtpb.Cluster]*adminT)
	for c := range me.clusters.IterAll() {
		a := new(adminT)
		me.cmap[c] = a
		log.Info("found in the config file", c.URL[0])
		a.makeClusterGroup(c)
	}

	// sit here forever refreshing the GUI
	for {
		admin.refresh()
		time.Sleep(90 * time.Second)
	}
}

func (admin *adminT) makeClusterGroup(c *virtpb.Cluster) {
	var err error
	admin.url, err = url.Parse(c.URL[0])
	if err != nil {
		badExit(err)
	}

	if admin.cluster == nil {
		admin.cluster = new(virtpb.Cluster)
		admin.cluster.Name = c.Name
		admin.cluster.Uuid = c.Uuid
	}

	name := c.GetName()
	if name == "" {
		name = admin.url.Hostname()
	}

	group := me.gwin.Bottom.NewGroup(name)
	admin.uptime = group.NewLabel("uptime")

	grid := group.RawGrid()

	grid.NewButton("show hypervisors", func() {
		if admin.cluster.Hypervisors == nil {
			log.Info("hypervisors not initialized")
			return
		}
		log.Info("Hypervisors len=", admin.cluster.Hypervisors.Len())
		admin.hwin = newHypervisorsWindow()
		admin.hwin.doStdHypervisors(admin.cluster.Hypervisors)
		admin.hwin.win.Custom = func() {
			log.Info("hiding table window")
		}
	})

	grid.NewButton("droplets", func() {
		if admin.cluster.Droplets == nil {
			log.Info("droplets not initialized")
			return
		}
		admin.dwin = newDropletsWindow(admin)
		admin.dwin.win.Custom = func() {
			log.Info("hiding droplet table window")
		}
		var found *virtpb.Droplets
		found = virtpb.NewDroplets()
		all := admin.cluster.Droplets.All()
		for all.Scan() {
			vm := all.Next()
			if vm.Current.State != virtpb.DropletState_ON {
				continue
			}
			found.Append(vm)
		}
		admin.dwin.doActiveDroplets(found)
	})

	grid.NewButton("events", func() {
		if admin.cluster.Events == nil {
			log.Info("events are not initialized")
			return
		}
		log.Info("Events len=", admin.cluster.Events.Len())
		admin.ewin = newEventsWindow()
		admin.ewin.doStdEvents(admin.cluster.Events)
		admin.ewin.win.Custom = func() {
			log.Info("hiding table window")
		}
	})

	grid.NewButton("refresh", func() {
		admin.refresh()
	})

	if err := admin.refresh(); err != nil {
		return
	}

	grid.NewButton("save cluster.pb", func() {
		admin.cluster.ConfigSave()
	})
}

func postData(url string, data []byte) ([]byte, error) {
	req, err := http.NewRequest(http.MethodPost, url, bytes.NewBuffer(data))
	if err != nil {
		return nil, fmt.Errorf("failed to create request: %w", err)
	}

	usr, _ := user.Current()
	req.Header.Set("author", usr.Username)
	req.Header.Set("Connection", "keep-alive") // Ensure keep-alive is used

	resp, err := client.Do(req)
	if err != nil {
		return nil, fmt.Errorf("request failed: %w", err)
	}
	defer resp.Body.Close()

	body, err := ioutil.ReadAll(resp.Body)
	if err != nil {
		return nil, fmt.Errorf("failed to read response: %w", err)
	}

	return body, nil
}

func (admin *adminT) postEvent(e *virtpb.Event) error {
	var result *virtpb.Event
	result = new(virtpb.Event)

	msg, err := e.Marshal()
	if err != nil {
		log.Info("postEvent() marshal() failed", err, e)
		return err
	}

	url := admin.url.String() + "/event"

	// update the droplet list
	if data, err := postData(url, msg); err != nil {
		log.Info("postEvent() /event Error:", err)
		return err
	} else {
		if err := result.Unmarshal(data); err != nil {
			log.Println("postEvent() result marshal failed", err, "len(dat) =", len(data))
			log.Println("postEvent() data =", string(data))
			return err
		} else {
			log.Println("postEvent() result marshal worked on len(dat) =", len(data))
			log.Println("postEvent() result =", result.FormatTEXT())
		}
	}
	if result.Error != "" {
		return fmt.Errorf("%s", result.Error)
	}
	log.Printf("Event worked to %s uuid=%s\n", url, result.DropletUuid)
	return nil
}