blob: 2a43083229fbf1f7c008e4ae2bd9279405534be9 (
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
|
package worker
import (
"git.sr.ht/~sircmpwn/aerc/worker/imap"
"git.sr.ht/~sircmpwn/aerc/worker/types"
"fmt"
"log"
"net/url"
)
// Guesses the appropriate worker type based on the given source string
func NewWorker(source string, logger *log.Logger) (*types.Worker, error) {
u, err := url.Parse(source)
if err != nil {
return nil, err
}
worker := types.NewWorker(logger)
switch u.Scheme {
case "imap":
fallthrough
case "imaps":
worker.Backend = imap.NewIMAPWorker(worker)
default:
return nil, fmt.Errorf("Unknown backend %s", u.Scheme)
}
return worker, nil
}
|