aboutsummaryrefslogtreecommitdiff
path: root/worker/worker.go
blob: da7928e9a22c4ad3a85fc345ca3cc4c6f16c64fa (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
package worker

import (
	"git.sr.ht/~sircmpwn/aerc2/worker/imap"
	"git.sr.ht/~sircmpwn/aerc2/worker/types"

	"fmt"
	"net/url"
)

type Worker interface {
	GetMessage() types.WorkerMessage
	PostAction(types.WorkerMessage)
	Run()
}

// Guesses the appropriate worker type based on the given source string
func NewWorker(source string) (Worker, error) {
	u, err := url.Parse(source)
	if err != nil {
		return nil, err
	}
	switch u.Scheme {
	case "imap":
	case "imaps":
		return imap.NewIMAPWorker(), nil
	}
	return nil, fmt.Errorf("Unknown backend %s", u.Scheme)
}