| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- package main
- import (
- "flag"
- "log"
- "os"
- "path/filepath"
- "github.com/ayntgl/discordo/ui"
- "github.com/gdamore/tcell/v2"
- "github.com/rivo/tview"
- lua "github.com/yuin/gopher-lua"
- "github.com/zalando/go-keyring"
- )
- const (
- name = "discordo"
- )
- var (
- token string
- configPath string
- )
- func init() {
- flag.StringVar(&token, "token", "", "The client authentication token.")
- // If the token is provided via a command-line flag, store it in the default keyring.
- if token != "" {
- go keyring.Set(name, "token", token)
- }
- if token == "" {
- token, _ = keyring.Get(name, "token")
- }
- configDirPath, err := os.UserConfigDir()
- if err != nil {
- log.Fatal(err)
- }
- flag.StringVar(&configPath, "config", filepath.Join(configDirPath, name), "The path to the configuration directory.")
- }
- func main() {
- flag.Parse()
- c := ui.NewCore(configPath)
- if token != "" {
- err := c.Run(token)
- if err != nil {
- log.Fatal(err)
- }
- c.DrawMainFlex()
- c.Application.SetRoot(c.MainFlex, true)
- c.Application.SetFocus(c.GuildsTree)
- } else {
- loginForm := tview.NewForm()
- loginForm.AddPasswordField("Token", "", 0, 0, nil)
- loginForm.SetButtonsAlign(tview.AlignCenter)
- loginForm.SetTitle("Login")
- loginForm.SetTitleAlign(tview.AlignLeft)
- loginForm.SetBorder(true)
- loginForm.SetBorderPadding(0, 0, 1, 1)
- loginForm.AddButton("Login", func() {
- tkn := loginForm.GetFormItem(0).(*tview.InputField).GetText()
- if tkn == "" {
- return
- }
- err := c.Run(tkn)
- if err != nil {
- log.Fatal(err)
- }
- c.DrawMainFlex()
- c.Application.SetRoot(c.MainFlex, true)
- c.Application.SetFocus(c.GuildsTree)
- })
- c.Application.SetRoot(loginForm, true)
- }
- tview.Borders.TopLeftFocus = tview.Borders.TopLeft
- tview.Borders.TopRightFocus = tview.Borders.TopRight
- tview.Borders.BottomLeftFocus = tview.Borders.BottomLeft
- tview.Borders.BottomRightFocus = tview.Borders.BottomRight
- tview.Borders.HorizontalFocus = tview.Borders.Horizontal
- tview.Borders.VerticalFocus = tview.Borders.Vertical
- tview.Borders.TopLeft = 0
- tview.Borders.TopRight = 0
- tview.Borders.BottomLeft = 0
- tview.Borders.BottomRight = 0
- tview.Borders.Horizontal = 0
- tview.Borders.Vertical = 0
- themeTable, ok := c.Config.State.GetGlobal("theme").(*lua.LTable)
- if !ok {
- themeTable = c.Config.State.NewTable()
- }
- background := themeTable.RawGetString("background")
- border := themeTable.RawGetString("border")
- title := themeTable.RawGetString("title")
- tview.Styles.PrimitiveBackgroundColor = tcell.GetColor(lua.LVAsString(background))
- tview.Styles.BorderColor = tcell.GetColor(lua.LVAsString(border))
- tview.Styles.TitleColor = tcell.GetColor(lua.LVAsString(title))
- err := c.Application.Run()
- if err != nil {
- log.Fatal(err)
- }
- }
|