hydroxide-push/carddav/carddav.go

134 lines
2.4 KiB
Go
Raw Normal View History

2017-09-03 21:11:01 +03:00
package carddav
import (
"net/http"
2017-09-04 13:06:36 +03:00
"os"
2017-09-03 21:11:01 +03:00
"strings"
"github.com/emersion/hydroxide/protonmail"
"github.com/emersion/go-vcard"
"github.com/emersion/go-webdav/carddav"
)
2017-09-09 16:37:03 +03:00
type contextKey string
const ClientContextKey = contextKey("client")
2017-09-03 21:11:01 +03:00
type addressObject struct {
c *protonmail.Client
contact *protonmail.ContactExport
}
func (ao *addressObject) ID() string {
return ao.contact.ID
}
func (ao *addressObject) Card() (vcard.Card, error) {
card := make(vcard.Card)
for _, c := range ao.contact.Cards {
if c.Type.Encrypted() {
// TODO: decrypt
continue
}
if c.Type.Signed() {
// TODO: check signature
}
decoded, err := vcard.NewDecoder(strings.NewReader(c.Data)).Decode()
if err != nil {
return nil, err
}
for k, fields := range decoded {
for _, f := range fields {
card.Add(k, f)
}
}
}
return card, nil
}
2017-09-04 13:06:36 +03:00
func (ao *addressObject) Stat() (os.FileInfo, error) {
return nil, nil
}
2017-09-03 21:11:01 +03:00
type addressBook struct {
2017-09-04 12:41:26 +03:00
c *protonmail.Client
cache map[string]carddav.AddressObject
total int
}
func (ab *addressBook) cacheComplete() bool {
return ab.total >= 0 && len(ab.cache) == ab.total
2017-09-03 21:11:01 +03:00
}
func (ab *addressBook) ListAddressObjects() ([]carddav.AddressObject, error) {
2017-09-04 12:41:26 +03:00
if ab.cacheComplete() {
aos := make([]carddav.AddressObject, 0, len(ab.cache))
for _, ao := range ab.cache {
aos = append(aos, ao)
}
return aos, nil
}
2017-09-04 12:46:14 +03:00
var aos []carddav.AddressObject
page := 0
for {
total, contacts, err := ab.c.ListContactsExport(page, 0)
if err != nil {
return nil, err
}
ab.total = total
2017-09-03 21:11:01 +03:00
2017-09-04 12:46:14 +03:00
if aos == nil {
aos = make([]carddav.AddressObject, 0, total)
}
2017-09-04 12:41:26 +03:00
2017-09-04 12:46:14 +03:00
for _, contact := range contacts {
ao := &addressObject{c: ab.c, contact: contact}
ab.cache[contact.ID] = ao
aos = append(aos, ao)
}
if len(aos) == total || len(contacts) == 0 {
break
}
page++
2017-09-03 21:11:01 +03:00
}
return aos, nil
}
func (ab *addressBook) GetAddressObject(id string) (carddav.AddressObject, error) {
2017-09-04 12:41:26 +03:00
if ao, ok := ab.cache[id]; ok {
return ao, nil
} else if ab.cacheComplete() {
return nil, carddav.ErrNotFound
}
2017-09-03 21:11:01 +03:00
contact, err := ab.c.GetContact(id)
if err != nil {
return nil, err
}
2017-09-04 12:41:26 +03:00
ao := &addressObject{
2017-09-03 21:11:01 +03:00
c: ab.c,
contact: &protonmail.ContactExport{
ID: contact.ID,
Cards: contact.Cards,
},
2017-09-04 12:41:26 +03:00
}
ab.cache[id] = ao
return ao, nil
2017-09-03 21:11:01 +03:00
}
func NewHandler(c *protonmail.Client) http.Handler {
2017-09-04 12:41:26 +03:00
return carddav.NewHandler(&addressBook{
c: c,
cache: make(map[string]carddav.AddressObject),
total: -1,
})
2017-09-03 21:11:01 +03:00
}