cd19995557
Do not pass logger objects around anymore. Shuffle some messages to make them consistent with the new logging API. Avoid using %v when a more specific verb exists for the argument types. The loggers are completely disabled (i.e. Sprintf is not even called) by default. They are only enabled when redirecting stdout to a file. Signed-off-by: Robin Jarry <robin@jarry.cc> Acked-by: Moritz Poldrack <moritz@poldrack.dev>
28 lines
617 B
Go
28 lines
617 B
Go
package worker
|
|
|
|
import (
|
|
"net/url"
|
|
"strings"
|
|
|
|
"git.sr.ht/~rjarry/aerc/worker/handlers"
|
|
"git.sr.ht/~rjarry/aerc/worker/types"
|
|
)
|
|
|
|
// Guesses the appropriate worker type based on the given source string
|
|
func NewWorker(source string) (*types.Worker, error) {
|
|
u, err := url.Parse(source)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
worker := types.NewWorker()
|
|
scheme := u.Scheme
|
|
if strings.ContainsRune(scheme, '+') {
|
|
scheme = scheme[:strings.IndexRune(scheme, '+')]
|
|
}
|
|
backend, err := handlers.GetHandlerForScheme(scheme, worker)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
worker.Backend = backend
|
|
return worker, nil
|
|
}
|