Make storage backend configurable via -storage.url

Same mechanism as for configuring the auth backend.
This commit is contained in:
Conrad Hoffmann 2022-02-23 21:01:58 +01:00
parent 3e464747d8
commit edd01ff7a3
2 changed files with 31 additions and 7 deletions

24
storage/url.go Normal file
View file

@ -0,0 +1,24 @@
package storage
import (
"fmt"
"net/url"
"github.com/emersion/go-webdav/carddav"
)
func NewFromURL(storageURL string) (carddav.Backend, error) {
u, err := url.Parse(storageURL)
if err != nil {
return nil, fmt.Errorf("error parsing storage URL: %s", err.Error())
}
switch u.Scheme {
case "file":
return NewFilesystem(u.Path)
case "postgresql":
return NewPostgreSQL(), nil
default:
return nil, fmt.Errorf("no storage provider found for %s:// URL", u.Scheme)
}
}