2019-01-13 18:39:06 +01:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
2019-07-10 02:04:21 +02:00
|
|
|
"errors"
|
2019-01-13 19:33:43 +01:00
|
|
|
"fmt"
|
2019-01-13 19:03:28 +01:00
|
|
|
"log"
|
2019-01-13 19:25:56 +01:00
|
|
|
|
|
|
|
"github.com/gdamore/tcell"
|
2019-01-13 19:03:28 +01:00
|
|
|
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/config"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib"
|
2019-09-20 00:37:44 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib/sort"
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib/ui"
|
2019-07-08 04:43:56 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/models"
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/worker"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/worker/types"
|
2019-01-13 18:39:06 +01:00
|
|
|
)
|
|
|
|
|
2019-12-18 06:33:57 +01:00
|
|
|
var _ ProvidesMessages = (*AccountView)(nil)
|
|
|
|
|
2019-01-13 18:39:06 +01:00
|
|
|
type AccountView struct {
|
2019-07-21 23:39:36 +02:00
|
|
|
acct *config.AccountConfig
|
2019-09-06 00:32:36 +02:00
|
|
|
aerc *Aerc
|
2019-07-21 23:39:36 +02:00
|
|
|
conf *config.AercConfig
|
|
|
|
dirlist *DirectoryList
|
2019-12-21 16:21:25 +01:00
|
|
|
labels []string
|
2019-07-21 23:39:36 +02:00
|
|
|
grid *ui.Grid
|
|
|
|
host TabHost
|
|
|
|
logger *log.Logger
|
|
|
|
msglist *MessageList
|
|
|
|
worker *types.Worker
|
2019-01-13 18:39:06 +01:00
|
|
|
}
|
|
|
|
|
2020-01-23 13:56:48 +01:00
|
|
|
func (acct *AccountView) UiConfig() config.UIConfig {
|
2020-08-08 11:38:38 +02:00
|
|
|
var folder string
|
|
|
|
if dirlist := acct.Directories(); dirlist != nil {
|
|
|
|
folder = dirlist.Selected()
|
|
|
|
}
|
2020-01-24 18:18:49 +01:00
|
|
|
return acct.conf.GetUiConfig(map[config.ContextType]string{
|
2020-01-23 13:56:48 +01:00
|
|
|
config.UI_CONTEXT_ACCOUNT: acct.AccountConfig().Name,
|
2020-08-08 11:38:38 +02:00
|
|
|
config.UI_CONTEXT_FOLDER: folder,
|
2020-01-23 13:56:48 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-09-06 00:32:36 +02:00
|
|
|
func NewAccountView(aerc *Aerc, conf *config.AercConfig, acct *config.AccountConfig,
|
2020-08-08 11:38:38 +02:00
|
|
|
logger *log.Logger, host TabHost) (*AccountView, error) {
|
2019-01-13 18:39:06 +01:00
|
|
|
|
2020-01-24 18:18:49 +01:00
|
|
|
acctUiConf := conf.GetUiConfig(map[config.ContextType]string{
|
2020-01-23 13:56:48 +01:00
|
|
|
config.UI_CONTEXT_ACCOUNT: acct.Name,
|
|
|
|
})
|
|
|
|
|
2020-05-31 13:37:46 +02:00
|
|
|
view := &AccountView{
|
|
|
|
acct: acct,
|
|
|
|
aerc: aerc,
|
|
|
|
conf: conf,
|
|
|
|
host: host,
|
|
|
|
logger: logger,
|
|
|
|
}
|
|
|
|
|
|
|
|
view.grid = ui.NewGrid().Rows([]ui.GridSpec{
|
|
|
|
{ui.SIZE_WEIGHT, ui.Const(1)},
|
2019-01-13 18:39:06 +01:00
|
|
|
}).Columns([]ui.GridSpec{
|
2020-05-31 13:37:46 +02:00
|
|
|
{ui.SIZE_EXACT, func() int {
|
|
|
|
return view.UiConfig().SidebarWidth
|
|
|
|
}},
|
|
|
|
{ui.SIZE_WEIGHT, ui.Const(1)},
|
2019-01-13 18:39:06 +01:00
|
|
|
})
|
2019-01-13 19:25:56 +01:00
|
|
|
|
2019-03-15 06:46:14 +01:00
|
|
|
worker, err := worker.NewWorker(acct.Source, logger)
|
2019-01-13 19:25:56 +01:00
|
|
|
if err != nil {
|
2020-07-27 10:03:55 +02:00
|
|
|
host.SetError(fmt.Sprintf("%s: %s", acct.Name, err))
|
2020-08-08 11:38:38 +02:00
|
|
|
logger.Printf("%s: %s\n", acct.Name, err)
|
|
|
|
return view, err
|
2019-01-13 19:25:56 +01:00
|
|
|
}
|
2020-05-31 13:37:46 +02:00
|
|
|
view.worker = worker
|
2019-01-13 19:03:28 +01:00
|
|
|
|
2020-05-31 13:37:46 +02:00
|
|
|
view.dirlist = NewDirectoryList(conf, acct, logger, worker)
|
2020-01-23 13:56:48 +01:00
|
|
|
if acctUiConf.SidebarWidth > 0 {
|
2020-07-27 10:03:55 +02:00
|
|
|
view.grid.AddChild(ui.NewBordered(view.dirlist, ui.BORDER_RIGHT, acctUiConf))
|
2019-06-05 23:20:27 +02:00
|
|
|
}
|
2019-01-13 20:25:46 +01:00
|
|
|
|
2020-05-31 13:37:46 +02:00
|
|
|
view.msglist = NewMessageList(conf, logger, aerc)
|
|
|
|
view.grid.AddChild(view.msglist).At(0, 1)
|
2019-01-13 19:03:28 +01:00
|
|
|
|
|
|
|
go worker.Backend.Run()
|
|
|
|
|
2019-03-15 06:46:14 +01:00
|
|
|
worker.PostAction(&types.Configure{Config: acct}, nil)
|
|
|
|
worker.PostAction(&types.Connect{}, view.connected)
|
2019-03-17 21:19:15 +01:00
|
|
|
host.SetStatus("Connecting...")
|
2019-01-13 19:03:28 +01:00
|
|
|
|
2020-08-08 11:38:38 +02:00
|
|
|
return view, nil
|
2019-01-13 19:03:28 +01:00
|
|
|
}
|
|
|
|
|
2019-05-19 11:49:57 +02:00
|
|
|
func (acct *AccountView) Tick() bool {
|
2019-05-21 01:20:20 +02:00
|
|
|
if acct.worker == nil {
|
|
|
|
return false
|
|
|
|
}
|
2019-05-19 11:49:57 +02:00
|
|
|
select {
|
|
|
|
case msg := <-acct.worker.Messages:
|
|
|
|
msg = acct.worker.ProcessMessage(msg)
|
|
|
|
acct.onMessage(msg)
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-13 22:04:01 +02:00
|
|
|
func (acct *AccountView) AccountConfig() *config.AccountConfig {
|
|
|
|
return acct.acct
|
|
|
|
}
|
|
|
|
|
2019-05-16 18:15:34 +02:00
|
|
|
func (acct *AccountView) Worker() *types.Worker {
|
|
|
|
return acct.worker
|
|
|
|
}
|
|
|
|
|
|
|
|
func (acct *AccountView) Logger() *log.Logger {
|
|
|
|
return acct.logger
|
|
|
|
}
|
|
|
|
|
2019-03-15 03:34:34 +01:00
|
|
|
func (acct *AccountView) Name() string {
|
2019-03-15 06:46:14 +01:00
|
|
|
return acct.acct.Name
|
2019-03-15 03:34:34 +01:00
|
|
|
}
|
|
|
|
|
2019-02-10 22:46:13 +01:00
|
|
|
func (acct *AccountView) Children() []ui.Drawable {
|
2019-01-20 21:08:30 +01:00
|
|
|
return acct.grid.Children()
|
|
|
|
}
|
|
|
|
|
2019-01-13 18:39:06 +01:00
|
|
|
func (acct *AccountView) OnInvalidate(onInvalidate func(d ui.Drawable)) {
|
2019-01-13 19:25:56 +01:00
|
|
|
acct.grid.OnInvalidate(func(_ ui.Drawable) {
|
|
|
|
onInvalidate(acct)
|
|
|
|
})
|
2019-01-13 18:39:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (acct *AccountView) Invalidate() {
|
|
|
|
acct.grid.Invalidate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (acct *AccountView) Draw(ctx *ui.Context) {
|
|
|
|
acct.grid.Draw(ctx)
|
|
|
|
}
|
2019-01-13 19:33:43 +01:00
|
|
|
|
2019-09-06 00:32:36 +02:00
|
|
|
func (acct *AccountView) MouseEvent(localX int, localY int, event tcell.Event) {
|
|
|
|
acct.grid.MouseEvent(localX, localY, event)
|
|
|
|
}
|
|
|
|
|
2019-03-17 21:19:15 +01:00
|
|
|
func (acct *AccountView) Focus(focus bool) {
|
|
|
|
// TODO: Unfocus children I guess
|
2019-01-13 19:33:43 +01:00
|
|
|
}
|
2019-01-13 20:25:46 +01:00
|
|
|
|
|
|
|
func (acct *AccountView) connected(msg types.WorkerMessage) {
|
2019-05-20 20:03:00 +02:00
|
|
|
switch msg.(type) {
|
2019-01-13 20:25:46 +01:00
|
|
|
case *types.Done:
|
2019-03-17 21:19:15 +01:00
|
|
|
acct.host.SetStatus("Listing mailboxes...")
|
2019-01-13 21:32:52 +01:00
|
|
|
acct.logger.Println("Listing mailboxes...")
|
|
|
|
acct.dirlist.UpdateList(func(dirs []string) {
|
|
|
|
var dir string
|
|
|
|
for _, _dir := range dirs {
|
2019-03-16 02:33:08 +01:00
|
|
|
if _dir == acct.acct.Default {
|
2019-01-13 21:32:52 +01:00
|
|
|
dir = _dir
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2019-06-12 08:31:51 +02:00
|
|
|
if dir == "" && len(dirs) > 0 {
|
2019-01-13 21:32:52 +01:00
|
|
|
dir = dirs[0]
|
|
|
|
}
|
2019-06-12 08:31:52 +02:00
|
|
|
if dir != "" {
|
|
|
|
acct.dirlist.Select(dir)
|
|
|
|
}
|
2019-07-31 09:50:07 +02:00
|
|
|
|
|
|
|
acct.msglist.SetInitDone()
|
2019-01-13 21:32:52 +01:00
|
|
|
acct.logger.Println("Connected.")
|
2019-03-17 21:19:15 +01:00
|
|
|
acct.host.SetStatus("Connected.")
|
2019-01-13 21:32:52 +01:00
|
|
|
})
|
2019-01-13 20:25:46 +01:00
|
|
|
}
|
|
|
|
}
|
2019-03-11 02:15:24 +01:00
|
|
|
|
|
|
|
func (acct *AccountView) Directories() *DirectoryList {
|
|
|
|
return acct.dirlist
|
|
|
|
}
|
|
|
|
|
2019-12-21 16:21:25 +01:00
|
|
|
func (acct *AccountView) Labels() []string {
|
|
|
|
return acct.labels
|
|
|
|
}
|
|
|
|
|
2019-03-15 04:41:25 +01:00
|
|
|
func (acct *AccountView) Messages() *MessageList {
|
|
|
|
return acct.msglist
|
|
|
|
}
|
|
|
|
|
2019-06-02 07:15:04 +02:00
|
|
|
func (acct *AccountView) Store() *lib.MessageStore {
|
2019-08-08 12:48:51 +02:00
|
|
|
if acct.msglist == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2019-06-02 07:15:04 +02:00
|
|
|
return acct.msglist.Store()
|
|
|
|
}
|
|
|
|
|
2019-07-05 18:21:12 +02:00
|
|
|
func (acct *AccountView) SelectedAccount() *AccountView {
|
|
|
|
return acct
|
|
|
|
}
|
|
|
|
|
2020-04-24 11:42:22 +02:00
|
|
|
func (acct *AccountView) SelectedDirectory() string {
|
|
|
|
return acct.dirlist.Selected()
|
|
|
|
}
|
|
|
|
|
2019-07-10 02:04:21 +02:00
|
|
|
func (acct *AccountView) SelectedMessage() (*models.MessageInfo, error) {
|
2019-07-17 09:35:50 +02:00
|
|
|
if len(acct.msglist.Store().Uids()) == 0 {
|
2019-07-10 02:04:21 +02:00
|
|
|
return nil, errors.New("no message selected")
|
|
|
|
}
|
2019-09-10 15:53:40 +02:00
|
|
|
msg := acct.msglist.Selected()
|
|
|
|
if msg == nil {
|
|
|
|
return nil, errors.New("message not loaded")
|
|
|
|
}
|
|
|
|
return msg, nil
|
2019-06-02 07:15:04 +02:00
|
|
|
}
|
|
|
|
|
2020-05-09 11:50:31 +02:00
|
|
|
func (acct *AccountView) MarkedMessages() ([]uint32, error) {
|
2019-12-18 06:33:57 +01:00
|
|
|
store := acct.Store()
|
2020-05-09 11:50:31 +02:00
|
|
|
return store.Marked(), nil
|
2019-12-18 06:33:57 +01:00
|
|
|
}
|
|
|
|
|
2019-07-05 18:21:12 +02:00
|
|
|
func (acct *AccountView) SelectedMessagePart() *PartInfo {
|
|
|
|
return nil
|
2019-06-02 07:15:04 +02:00
|
|
|
}
|
|
|
|
|
2019-03-11 02:15:24 +01:00
|
|
|
func (acct *AccountView) onMessage(msg types.WorkerMessage) {
|
2019-03-11 04:45:00 +01:00
|
|
|
switch msg := msg.(type) {
|
|
|
|
case *types.Done:
|
|
|
|
switch msg.InResponseTo().(type) {
|
|
|
|
case *types.OpenDirectory:
|
2019-07-21 23:39:36 +02:00
|
|
|
if store, ok := acct.dirlist.SelectedMsgStore(); ok {
|
2019-03-15 03:41:43 +01:00
|
|
|
// If we've opened this dir before, we can re-render it from
|
|
|
|
// memory while we wait for the update and the UI feels
|
|
|
|
// snappier. If not, we'll unset the store and show the spinner
|
|
|
|
// while we download the UID list.
|
|
|
|
acct.msglist.SetStore(store)
|
|
|
|
} else {
|
|
|
|
acct.msglist.SetStore(nil)
|
|
|
|
}
|
2019-06-08 19:41:56 +02:00
|
|
|
case *types.CreateDirectory:
|
|
|
|
acct.dirlist.UpdateList(nil)
|
2020-08-18 22:27:23 +02:00
|
|
|
case *types.RemoveDirectory:
|
|
|
|
acct.dirlist.UpdateList(nil)
|
2019-03-11 04:45:00 +01:00
|
|
|
}
|
|
|
|
case *types.DirectoryInfo:
|
2019-07-21 23:39:36 +02:00
|
|
|
if store, ok := acct.dirlist.MsgStore(msg.Info.Name); ok {
|
2019-03-11 04:45:00 +01:00
|
|
|
store.Update(msg)
|
|
|
|
} else {
|
2019-07-21 22:01:51 +02:00
|
|
|
store = lib.NewMessageStore(acct.worker, msg.Info,
|
2020-02-19 08:37:20 +01:00
|
|
|
acct.getSortCriteria(),
|
2019-07-21 22:01:51 +02:00
|
|
|
func(msg *models.MessageInfo) {
|
|
|
|
acct.conf.Triggers.ExecNewEmail(acct.acct,
|
|
|
|
acct.conf, msg)
|
2019-07-29 16:50:02 +02:00
|
|
|
}, func() {
|
2020-01-23 13:56:48 +01:00
|
|
|
if acct.UiConfig().NewMessageBell {
|
2019-07-29 16:50:02 +02:00
|
|
|
acct.host.Beep()
|
|
|
|
}
|
2019-07-21 22:01:51 +02:00
|
|
|
})
|
2019-07-21 23:39:36 +02:00
|
|
|
acct.dirlist.SetMsgStore(msg.Info.Name, store)
|
2019-03-11 04:45:00 +01:00
|
|
|
}
|
|
|
|
case *types.DirectoryContents:
|
2019-07-21 23:39:36 +02:00
|
|
|
if store, ok := acct.dirlist.SelectedMsgStore(); ok {
|
2020-02-29 02:53:32 +01:00
|
|
|
if acct.msglist.Store() == nil {
|
|
|
|
acct.msglist.SetStore(store)
|
|
|
|
}
|
2019-06-02 10:48:03 +02:00
|
|
|
store.Update(msg)
|
|
|
|
}
|
2019-03-31 18:35:51 +02:00
|
|
|
case *types.FullMessage:
|
2019-07-21 23:39:36 +02:00
|
|
|
if store, ok := acct.dirlist.SelectedMsgStore(); ok {
|
2019-06-02 10:48:03 +02:00
|
|
|
store.Update(msg)
|
|
|
|
}
|
2019-03-11 04:45:00 +01:00
|
|
|
case *types.MessageInfo:
|
2019-07-21 23:39:36 +02:00
|
|
|
if store, ok := acct.dirlist.SelectedMsgStore(); ok {
|
2019-06-02 10:48:03 +02:00
|
|
|
store.Update(msg)
|
|
|
|
}
|
2019-03-21 04:23:38 +01:00
|
|
|
case *types.MessagesDeleted:
|
2019-07-21 23:39:36 +02:00
|
|
|
if store, ok := acct.dirlist.SelectedMsgStore(); ok {
|
2019-06-02 10:48:03 +02:00
|
|
|
store.Update(msg)
|
|
|
|
}
|
2019-12-21 16:21:25 +01:00
|
|
|
case *types.LabelList:
|
|
|
|
acct.labels = msg.Labels
|
2019-03-11 04:45:00 +01:00
|
|
|
case *types.Error:
|
|
|
|
acct.logger.Printf("%v", msg.Error)
|
2020-07-08 18:03:34 +02:00
|
|
|
acct.aerc.PushError(fmt.Sprintf("%v", msg.Error))
|
2019-03-11 04:45:00 +01:00
|
|
|
}
|
2019-03-11 02:15:24 +01:00
|
|
|
}
|
2019-09-20 00:37:44 +02:00
|
|
|
|
|
|
|
func (acct *AccountView) getSortCriteria() []*types.SortCriterion {
|
2020-01-23 13:56:48 +01:00
|
|
|
if len(acct.UiConfig().Sort) == 0 {
|
2019-09-20 00:37:44 +02:00
|
|
|
return nil
|
|
|
|
}
|
2020-01-23 13:56:48 +01:00
|
|
|
criteria, err := sort.GetSortCriteria(acct.UiConfig().Sort)
|
2019-09-20 00:37:44 +02:00
|
|
|
if err != nil {
|
2020-05-28 16:32:42 +02:00
|
|
|
acct.aerc.PushError(" ui.sort: " + err.Error())
|
2019-09-20 00:37:44 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return criteria
|
|
|
|
}
|