2018-03-13 14:27:12 +01:00
|
|
|
// gomuks - A terminal Matrix client written in Go.
|
|
|
|
// Copyright (C) 2018 Tulir Asokan
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-03-19 00:18:36 +01:00
|
|
|
"fmt"
|
2018-03-13 14:27:12 +01:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2018-03-19 00:18:36 +01:00
|
|
|
"time"
|
2018-03-13 14:27:12 +01:00
|
|
|
|
2018-03-15 17:25:16 +01:00
|
|
|
"maunium.net/go/gomatrix"
|
2018-03-18 20:24:03 +01:00
|
|
|
"maunium.net/go/gomuks/config"
|
|
|
|
"maunium.net/go/gomuks/interface"
|
|
|
|
"maunium.net/go/gomuks/matrix"
|
|
|
|
"maunium.net/go/gomuks/ui"
|
|
|
|
"maunium.net/go/gomuks/ui/debug"
|
2018-03-14 21:19:26 +01:00
|
|
|
"maunium.net/go/tview"
|
2018-03-13 14:27:12 +01:00
|
|
|
)
|
|
|
|
|
2018-03-19 00:18:36 +01:00
|
|
|
type Gomuks struct {
|
|
|
|
app *tview.Application
|
|
|
|
ui *ui.GomuksUI
|
|
|
|
matrix *matrix.Container
|
|
|
|
debug *debug.Pane
|
|
|
|
debugMode bool
|
|
|
|
config *config.Config
|
2018-03-13 20:58:43 +01:00
|
|
|
}
|
2018-03-13 14:27:12 +01:00
|
|
|
|
2018-03-19 00:18:36 +01:00
|
|
|
func NewGomuks(enableDebug bool) *Gomuks {
|
2018-03-13 20:58:43 +01:00
|
|
|
configDir := filepath.Join(os.Getenv("HOME"), ".config/gomuks")
|
2018-03-19 00:18:36 +01:00
|
|
|
gmx := &Gomuks{
|
2018-03-13 20:58:43 +01:00
|
|
|
app: tview.NewApplication(),
|
|
|
|
}
|
2018-03-18 20:24:03 +01:00
|
|
|
|
|
|
|
gmx.debug = debug.NewPane()
|
|
|
|
gmx.debug.SetChangedFunc(func() {
|
|
|
|
gmx.ui.Render()
|
|
|
|
})
|
|
|
|
debug.Default = gmx.debug
|
|
|
|
|
|
|
|
gmx.config = config.NewConfig(configDir)
|
|
|
|
gmx.ui = ui.NewGomuksUI(gmx)
|
|
|
|
gmx.matrix = matrix.NewMatrixContainer(gmx)
|
2018-03-13 20:58:43 +01:00
|
|
|
|
|
|
|
gmx.config.Load()
|
|
|
|
if len(gmx.config.MXID) > 0 {
|
|
|
|
gmx.config.LoadSession(gmx.config.MXID)
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-13 20:58:43 +01:00
|
|
|
gmx.matrix.InitClient()
|
|
|
|
|
|
|
|
main := gmx.ui.InitViews()
|
2018-03-18 20:24:03 +01:00
|
|
|
if enableDebug {
|
2018-03-13 20:58:43 +01:00
|
|
|
main = gmx.debug.Wrap(main)
|
2018-03-19 00:18:36 +01:00
|
|
|
gmx.debugMode = true
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
2018-03-13 20:58:43 +01:00
|
|
|
gmx.app.SetRoot(main, true)
|
2018-03-13 14:27:12 +01:00
|
|
|
|
2018-03-13 20:58:43 +01:00
|
|
|
return gmx
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-19 00:18:36 +01:00
|
|
|
func (gmx *Gomuks) Stop() {
|
2018-03-15 20:28:21 +01:00
|
|
|
gmx.debug.Print("Disconnecting from Matrix...")
|
2018-03-14 23:14:39 +01:00
|
|
|
gmx.matrix.Stop()
|
2018-03-15 20:28:21 +01:00
|
|
|
gmx.debug.Print("Cleaning up UI...")
|
2018-03-14 23:14:39 +01:00
|
|
|
gmx.app.Stop()
|
|
|
|
if gmx.config.Session != nil {
|
2018-03-15 20:28:21 +01:00
|
|
|
gmx.debug.Print("Saving session...")
|
2018-03-14 23:14:39 +01:00
|
|
|
gmx.config.Session.Save()
|
|
|
|
}
|
2018-03-19 00:18:36 +01:00
|
|
|
os.Exit(0)
|
2018-03-14 23:14:39 +01:00
|
|
|
}
|
|
|
|
|
2018-03-19 00:18:36 +01:00
|
|
|
func (gmx *Gomuks) Recover() {
|
2018-03-15 17:21:14 +01:00
|
|
|
if p := recover(); p != nil {
|
|
|
|
if gmx.App().GetScreen() != nil {
|
|
|
|
gmx.App().GetScreen().Fini()
|
|
|
|
}
|
2018-03-19 00:18:36 +01:00
|
|
|
if gmx.debugMode {
|
|
|
|
panic(p)
|
|
|
|
} else {
|
|
|
|
debug.PrettyPanic()
|
|
|
|
}
|
2018-03-15 17:21:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-19 00:18:36 +01:00
|
|
|
func (gmx *Gomuks) Start() {
|
2018-03-19 09:57:31 +01:00
|
|
|
defer gmx.Recover()
|
2018-03-13 20:58:43 +01:00
|
|
|
if err := gmx.app.Run(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-19 00:18:36 +01:00
|
|
|
func (gmx *Gomuks) Matrix() *gomatrix.Client {
|
2018-03-18 20:24:03 +01:00
|
|
|
return gmx.matrix.Client()
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-19 00:18:36 +01:00
|
|
|
func (gmx *Gomuks) MatrixContainer() ifc.MatrixContainer {
|
2018-03-13 20:58:43 +01:00
|
|
|
return gmx.matrix
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-19 00:18:36 +01:00
|
|
|
func (gmx *Gomuks) App() *tview.Application {
|
2018-03-13 20:58:43 +01:00
|
|
|
return gmx.app
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-19 00:18:36 +01:00
|
|
|
func (gmx *Gomuks) Config() *config.Config {
|
2018-03-13 20:58:43 +01:00
|
|
|
return gmx.config
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-19 00:18:36 +01:00
|
|
|
func (gmx *Gomuks) UI() ifc.GomuksUI {
|
2018-03-13 20:58:43 +01:00
|
|
|
return gmx.ui
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-13 20:58:43 +01:00
|
|
|
func main() {
|
2018-03-19 00:18:36 +01:00
|
|
|
enableDebug := len(os.Getenv("DEBUG")) > 0
|
|
|
|
NewGomuks(enableDebug).Start()
|
|
|
|
|
|
|
|
// We use os.Exit() everywhere, so exiting by returning from Start() shouldn't happen.
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
fmt.Println("Unexpected exit by return from Gomuks#Start().")
|
|
|
|
os.Exit(2)
|
2018-03-13 14:27:12 +01:00
|
|
|
}
|