2019-02-01 07:28:17 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "log"
|
|
|
|
import "io/ioutil"
|
|
|
|
import "fmt"
|
|
|
|
import "github.com/mitchellh/go-homedir"
|
|
|
|
// import "os"
|
|
|
|
import "strings"
|
2019-05-06 19:42:59 -05:00
|
|
|
import "time"
|
2019-02-01 07:28:17 -06:00
|
|
|
|
|
|
|
import "github.com/gookit/config"
|
|
|
|
import "github.com/andlabs/ui"
|
2019-05-06 19:42:59 -05:00
|
|
|
import _ "github.com/andlabs/ui/winmanifest"
|
2019-02-01 07:28:17 -06:00
|
|
|
|
|
|
|
// dns
|
|
|
|
// import "github.com/miekg/dns"
|
|
|
|
|
|
|
|
// reminder to use protobuf
|
|
|
|
// https://github.com/golang/protobuf
|
|
|
|
|
|
|
|
// reminder to use this for JSON
|
|
|
|
// https://github.com/tidwall/gjson
|
|
|
|
// value := gjson.Get(json, "name.last")
|
|
|
|
// println(value.String())
|
|
|
|
// value := gjson.Get(json, friends.#[last=="Murphy"].first)
|
|
|
|
|
|
|
|
// use mergo to merge structs
|
|
|
|
// import "github.com/imdario/mergo"
|
|
|
|
// mergo.Merge(&dest, src)
|
|
|
|
|
|
|
|
// always sorted slice (new project)
|
|
|
|
// https://github.com/yaa110/sslice
|
|
|
|
|
|
|
|
var mainwin *ui.Window
|
|
|
|
|
|
|
|
func hostnameButton(hostname string) ui.Control {
|
|
|
|
tmpbox := ui.NewHorizontalBox()
|
|
|
|
tmpbox.SetPadded(true)
|
|
|
|
|
|
|
|
tmpButton := ui.NewButton(hostname)
|
|
|
|
tmpbox.Append(tmpButton, false)
|
|
|
|
tmpButton.OnClicked(func(*ui.Button) {
|
|
|
|
log.Println("hostname =", config.String("hostname"), tmpButton)
|
|
|
|
})
|
|
|
|
|
|
|
|
return tmpbox
|
|
|
|
}
|
|
|
|
|
2019-02-01 08:44:56 -06:00
|
|
|
func getPhysicalMachines(machineType string) []string {
|
|
|
|
var machines []string
|
2019-02-01 07:28:17 -06:00
|
|
|
home, _ := homedir.Dir()
|
|
|
|
files, err := ioutil.ReadDir(home+"/wit/ansible/inventory-usw2/host_vars/")
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
2019-02-01 08:44:56 -06:00
|
|
|
return machines
|
2019-02-01 07:28:17 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, f := range files {
|
|
|
|
s := strings.Split(f.Name(), ".")
|
|
|
|
if strings.HasPrefix(s[1], machineType) {
|
|
|
|
fmt.Println(f.Name(), s)
|
2019-02-01 08:44:56 -06:00
|
|
|
machines = append(machines, f.Name())
|
2019-02-01 07:28:17 -06:00
|
|
|
}
|
|
|
|
}
|
2019-02-01 08:44:56 -06:00
|
|
|
return machines
|
2019-02-01 07:28:17 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-01 08:35:08 -06:00
|
|
|
func makeButtonsPage(names []string) ui.Control {
|
|
|
|
vbox := ui.NewVerticalBox()
|
|
|
|
vbox.SetPadded(true)
|
|
|
|
|
|
|
|
hbox := ui.NewHorizontalBox()
|
|
|
|
hbox.SetPadded(true)
|
|
|
|
vbox.Append(hbox, false)
|
|
|
|
|
|
|
|
for _, hostname := range names {
|
|
|
|
fmt.Println("hostname=", hostname)
|
|
|
|
vbox.Append(hostnameButton(hostname), false)
|
|
|
|
}
|
|
|
|
|
|
|
|
vbox.Append(ui.NewHorizontalSeparator(), false)
|
|
|
|
|
|
|
|
return vbox
|
|
|
|
}
|
|
|
|
|
2019-02-01 07:28:17 -06:00
|
|
|
func makeGroupEntries() ui.Control {
|
|
|
|
group := ui.NewGroup("Entries")
|
|
|
|
group.SetMargined(true)
|
|
|
|
|
|
|
|
group.SetChild(ui.NewNonWrappingMultilineEntry())
|
|
|
|
|
|
|
|
entryForm := ui.NewForm()
|
|
|
|
entryForm.SetPadded(true)
|
|
|
|
group.SetChild(entryForm)
|
|
|
|
|
|
|
|
entryForm.Append("Entry", ui.NewEntry(), false)
|
|
|
|
entryForm.Append("Password Entry", ui.NewPasswordEntry(), false)
|
|
|
|
entryForm.Append("Search Entry", ui.NewSearchEntry(), false)
|
|
|
|
entryForm.Append("Multiline Entry", ui.NewMultilineEntry(), true)
|
|
|
|
entryForm.Append("Multiline Entry No Wrap", ui.NewNonWrappingMultilineEntry(), true)
|
|
|
|
|
|
|
|
return group
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeNumbersPage() ui.Control {
|
|
|
|
hbox := ui.NewHorizontalBox()
|
|
|
|
hbox.SetPadded(true)
|
|
|
|
|
|
|
|
group := ui.NewGroup("Numbers")
|
|
|
|
group.SetMargined(true)
|
|
|
|
hbox.Append(group, true)
|
|
|
|
|
|
|
|
vbox := ui.NewVerticalBox()
|
|
|
|
vbox.SetPadded(true)
|
|
|
|
group.SetChild(vbox)
|
|
|
|
|
|
|
|
spinbox := ui.NewSpinbox(47, 100)
|
|
|
|
slider := ui.NewSlider(21, 100)
|
|
|
|
pbar := ui.NewProgressBar()
|
|
|
|
|
|
|
|
spinbox.OnChanged(func(*ui.Spinbox) {
|
|
|
|
slider.SetValue(spinbox.Value())
|
|
|
|
pbar.SetValue(spinbox.Value())
|
|
|
|
})
|
|
|
|
slider.OnChanged(func(*ui.Slider) {
|
|
|
|
spinbox.SetValue(slider.Value())
|
|
|
|
pbar.SetValue(slider.Value())
|
|
|
|
})
|
|
|
|
vbox.Append(spinbox, false)
|
|
|
|
vbox.Append(slider, false)
|
|
|
|
vbox.Append(pbar, false)
|
|
|
|
|
|
|
|
ip := ui.NewProgressBar()
|
|
|
|
ip.SetValue(-1)
|
|
|
|
vbox.Append(ip, false)
|
|
|
|
|
|
|
|
group = ui.NewGroup("Lists")
|
|
|
|
group.SetMargined(true)
|
|
|
|
hbox.Append(group, true)
|
|
|
|
|
|
|
|
vbox = ui.NewVerticalBox()
|
|
|
|
vbox.SetPadded(true)
|
|
|
|
group.SetChild(vbox)
|
|
|
|
|
|
|
|
cbox := ui.NewCombobox()
|
|
|
|
cbox.Append("Combobox Item 1")
|
|
|
|
cbox.Append("Combobox Item 2")
|
|
|
|
cbox.Append("Combobox Item 3")
|
|
|
|
vbox.Append(cbox, false)
|
|
|
|
|
|
|
|
ecbox := ui.NewEditableCombobox()
|
|
|
|
ecbox.Append("Editable Item 1")
|
|
|
|
ecbox.Append("Editable Item 2")
|
|
|
|
ecbox.Append("Editable Item 3")
|
|
|
|
vbox.Append(ecbox, false)
|
|
|
|
|
|
|
|
rb := ui.NewRadioButtons()
|
|
|
|
rb.Append("Radio Button 1")
|
|
|
|
rb.Append("Radio Button 2")
|
|
|
|
rb.Append("Radio Button 3")
|
|
|
|
vbox.Append(rb, false)
|
|
|
|
|
|
|
|
return hbox
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeDataChoosersPage() ui.Control {
|
|
|
|
hbox := ui.NewHorizontalBox()
|
|
|
|
hbox.SetPadded(true)
|
|
|
|
|
|
|
|
vbox := ui.NewVerticalBox()
|
|
|
|
vbox.SetPadded(true)
|
|
|
|
hbox.Append(vbox, false)
|
|
|
|
|
|
|
|
vbox.Append(ui.NewDatePicker(), false)
|
|
|
|
vbox.Append(ui.NewTimePicker(), false)
|
|
|
|
vbox.Append(ui.NewDateTimePicker(), false)
|
|
|
|
vbox.Append(ui.NewFontButton(), false)
|
|
|
|
vbox.Append(ui.NewColorButton(), false)
|
|
|
|
|
|
|
|
hbox.Append(ui.NewVerticalSeparator(), false)
|
|
|
|
|
|
|
|
vbox = ui.NewVerticalBox()
|
|
|
|
vbox.SetPadded(true)
|
|
|
|
hbox.Append(vbox, true)
|
|
|
|
|
|
|
|
grid := ui.NewGrid()
|
|
|
|
grid.SetPadded(true)
|
|
|
|
vbox.Append(grid, false)
|
|
|
|
|
|
|
|
button := ui.NewButton("Open File")
|
|
|
|
entry := ui.NewEntry()
|
|
|
|
entry.SetReadOnly(true)
|
|
|
|
button.OnClicked(func(*ui.Button) {
|
|
|
|
filename := ui.OpenFile(mainwin)
|
|
|
|
if filename == "" {
|
|
|
|
filename = "(cancelled)"
|
|
|
|
}
|
|
|
|
entry.SetText(filename)
|
|
|
|
})
|
|
|
|
grid.Append(button,
|
|
|
|
0, 0, 1, 1,
|
|
|
|
false, ui.AlignFill, false, ui.AlignFill)
|
|
|
|
grid.Append(entry,
|
|
|
|
1, 0, 1, 1,
|
|
|
|
true, ui.AlignFill, false, ui.AlignFill)
|
|
|
|
|
|
|
|
button = ui.NewButton("Save File")
|
|
|
|
entry2 := ui.NewEntry()
|
|
|
|
entry2.SetReadOnly(true)
|
|
|
|
button.OnClicked(func(*ui.Button) {
|
|
|
|
filename := ui.SaveFile(mainwin)
|
|
|
|
if filename == "" {
|
|
|
|
filename = "(cancelled)"
|
|
|
|
}
|
|
|
|
entry2.SetText(filename)
|
|
|
|
})
|
|
|
|
grid.Append(button,
|
|
|
|
0, 1, 1, 1,
|
|
|
|
false, ui.AlignFill, false, ui.AlignFill)
|
|
|
|
grid.Append(entry2,
|
|
|
|
1, 1, 1, 1,
|
|
|
|
true, ui.AlignFill, false, ui.AlignFill)
|
|
|
|
|
|
|
|
msggrid := ui.NewGrid()
|
|
|
|
msggrid.SetPadded(true)
|
|
|
|
grid.Append(msggrid,
|
|
|
|
0, 2, 2, 1,
|
|
|
|
false, ui.AlignCenter, false, ui.AlignStart)
|
|
|
|
|
|
|
|
button = ui.NewButton("Message Box")
|
|
|
|
button.OnClicked(func(*ui.Button) {
|
|
|
|
ui.MsgBox(mainwin,
|
|
|
|
"This is a normal message box.",
|
|
|
|
"More detailed information can be shown here.")
|
|
|
|
})
|
|
|
|
msggrid.Append(button,
|
|
|
|
0, 0, 1, 1,
|
|
|
|
false, ui.AlignFill, false, ui.AlignFill)
|
|
|
|
button = ui.NewButton("Error Box")
|
|
|
|
button.OnClicked(func(*ui.Button) {
|
|
|
|
ui.MsgBoxError(mainwin,
|
|
|
|
"This message box describes an error.",
|
|
|
|
"More detailed information can be shown here.")
|
|
|
|
})
|
|
|
|
msggrid.Append(button,
|
|
|
|
1, 0, 1, 1,
|
|
|
|
false, ui.AlignFill, false, ui.AlignFill)
|
|
|
|
|
|
|
|
return hbox
|
|
|
|
}
|
|
|
|
|
|
|
|
func setupUI() {
|
|
|
|
mainwin = ui.NewWindow("Cloud Control Panel", config.Int("width"), config.Int("height"), false)
|
|
|
|
mainwin.OnClosing(func(*ui.Window) bool {
|
|
|
|
ui.Quit()
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
ui.OnShouldQuit(func() bool {
|
|
|
|
mainwin.Destroy()
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
|
|
|
tab := ui.NewTab()
|
|
|
|
mainwin.SetChild(tab)
|
|
|
|
mainwin.SetMargined(true)
|
|
|
|
|
2019-05-06 16:14:32 -05:00
|
|
|
name := "v000185.testing.com.customers.wprod.wit.com"
|
|
|
|
tab.Append(name, makeDemotable(name))
|
2019-02-01 07:28:17 -06:00
|
|
|
tab.SetMargined(0, true)
|
|
|
|
|
2019-05-06 16:14:32 -05:00
|
|
|
name = "jcarrTable"
|
2019-05-06 18:41:59 -05:00
|
|
|
table, mh, model := makeJcarrtable(name)
|
|
|
|
log.Println(table, mh, model)
|
|
|
|
tab.Append(name, table)
|
2019-05-06 02:32:46 -05:00
|
|
|
tab.SetMargined(1, true)
|
2019-02-01 07:28:17 -06:00
|
|
|
|
2019-05-06 15:50:10 -05:00
|
|
|
tab.Append("List examples", makeNumbersPage())
|
2019-05-06 11:51:16 -05:00
|
|
|
tab.SetMargined(2, true)
|
2019-02-01 07:28:17 -06:00
|
|
|
|
2019-05-06 15:50:10 -05:00
|
|
|
tab.Append("Choosers examples", makeDataChoosersPage())
|
2019-05-06 11:51:16 -05:00
|
|
|
tab.SetMargined(3, true)
|
2019-02-01 07:28:17 -06:00
|
|
|
|
|
|
|
mainwin.Show()
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
parseConfig()
|
|
|
|
|
2019-05-06 19:42:59 -05:00
|
|
|
time.Sleep(2 * 1000 * 1000 * 1000)
|
|
|
|
|
2019-02-01 07:28:17 -06:00
|
|
|
ui.Main(setupUI)
|
|
|
|
}
|