daisy/server.go

100 lines
2.5 KiB
Go
Raw Normal View History

2024-05-08 01:10:58 +01:00
package daisy
import (
"git.sr.ht/~sircmpwn/tokidoki/storage"
"github.com/1f349/cardcaldav"
"github.com/emersion/go-webdav"
2024-05-08 01:10:58 +01:00
"github.com/emersion/go-webdav/carddav"
"net/http"
"path/filepath"
2024-05-08 01:10:58 +01:00
"time"
)
type Conf struct {
Listen string `json:"listen"`
DB string `json:"db"`
}
type daisyHandler struct {
2024-05-14 11:11:02 +01:00
auth AuthProvider
backend carddav.Backend
}
func (d *daisyHandler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
principlePath, err := d.auth.CurrentUserPrincipal(req.Context())
if err != nil {
http.Error(rw, http.StatusText(http.StatusBadRequest), http.StatusBadRequest)
return
}
var homeSets []webdav.BackendSuppliedHomeSet
path, err := d.backend.AddressBookHomeSetPath(req.Context())
if err != nil {
http.Error(rw, http.StatusText(http.StatusBadRequest), http.StatusBadRequest)
return
}
homeSets = append(homeSets, carddav.NewAddressBookHomeSet(path))
if req.URL.Path == principlePath {
opts := webdav.ServePrincipalOptions{
CurrentUserPrincipalPath: principlePath,
HomeSets: homeSets,
Capabilities: []webdav.Capability{
carddav.CapabilityAddressBook,
},
}
webdav.ServePrincipal(rw, req, &opts)
return
}
if req.URL.Path == "/" {
http.Error(rw, "Daisy API Endpoint", http.StatusOK)
return
}
http.NotFound(rw, req)
2024-05-08 01:10:58 +01:00
}
2024-05-14 11:11:02 +01:00
type AuthProvider interface {
cardcaldav.ProviderMiddleware
webdav.UserPrincipalBackend
}
2024-05-08 01:10:58 +01:00
func NewHttpServer(conf Conf, wd string) *http.Server {
cardcaldav.SetupLogger(Logger)
2024-05-14 11:11:02 +01:00
principle := NullAuth(cardcaldav.NewAuth(conf.DB, Logger))
_, cardStorage, err := storage.NewFilesystem(filepath.Join(wd, "storage"), "/calendar/", "/contacts/", principle)
if err != nil {
Logger.Fatal("Failed to load storage backend", "err", err)
2024-05-08 01:10:58 +01:00
}
cardHandler := &carddav.Handler{Backend: cardStorage}
handler := &daisyHandler{
auth: principle,
backend: cardStorage,
}
r := http.NewServeMux()
r.Handle("/", handler)
r.Handle("/.well-known/carddav", cardHandler)
r.Handle("/{user}/contacts/", cardHandler)
r2 := http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
t := time.Now()
r.ServeHTTP(rw, req)
td := time.Since(t)
Logger.Debug("Request", "method", req.Method, "url", req.URL.String(), "remote", req.RemoteAddr, "dur", td.String())
})
2024-05-08 01:10:58 +01:00
return &http.Server{
Addr: conf.Listen,
Handler: principle.Middleware(r2),
2024-05-08 01:10:58 +01:00
ReadTimeout: time.Minute,
ReadHeaderTimeout: time.Minute,
WriteTimeout: time.Minute,
IdleTimeout: time.Minute,
MaxHeaderBytes: 2500,
}
}