finish wkd store. add hkp key updates.
This commit is contained in:
		
							parent
							
								
									05df6253db
								
							
						
					
					
						commit
						caa625e2d1
					
				
							
								
								
									
										13
									
								
								main.go
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								main.go
									
									
									
									
									
								
							@ -127,6 +127,15 @@ func run(ctx context.Context) error {
 | 
				
			|||||||
		avatarApp.Routes(mux)
 | 
							avatarApp.Routes(mux)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if env("DISABLE_WKD", "false") == "false" {
 | 
				
			||||||
 | 
							avatarApp, err := keyproofs.NewWKDApp(ctx, env("WKD_PATH", "pub"), env("WKD_DOMAIN", "pub"))
 | 
				
			||||||
 | 
							if err != nil {
 | 
				
			||||||
 | 
								return err
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							avatarApp.Routes(mux)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if env("DISABLE_VCARD", "false") == "false" {
 | 
						if env("DISABLE_VCARD", "false") == "false" {
 | 
				
			||||||
		vcardApp, err := keyproofs.NewVCardApp(ctx)
 | 
							vcardApp, err := keyproofs.NewVCardApp(ctx)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
@ -141,8 +150,8 @@ func run(ctx context.Context) error {
 | 
				
			|||||||
		Str("build-hash", cfg.GetString("build-hash")).
 | 
							Str("build-hash", cfg.GetString("build-hash")).
 | 
				
			||||||
		Str("build-date", cfg.GetString("build-date")).
 | 
							Str("build-date", cfg.GetString("build-date")).
 | 
				
			||||||
		Str("listen", listen).
 | 
							Str("listen", listen).
 | 
				
			||||||
                Int("user", os.Geteuid()).
 | 
							Int("user", os.Geteuid()).
 | 
				
			||||||
                Int("group", os.Getgid()).
 | 
							Int("group", os.Getgid()).
 | 
				
			||||||
		Msg("startup")
 | 
							Msg("startup")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	err := New(&http.Server{
 | 
						err := New(&http.Server{
 | 
				
			||||||
 | 
				
			|||||||
@ -13,6 +13,7 @@ import (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	"github.com/rs/zerolog/log"
 | 
						"github.com/rs/zerolog/log"
 | 
				
			||||||
	"github.com/sour-is/crypto/openpgp"
 | 
						"github.com/sour-is/crypto/openpgp"
 | 
				
			||||||
 | 
						"github.com/sour-is/crypto/openpgp/packet"
 | 
				
			||||||
	"github.com/tv42/zbase32"
 | 
						"github.com/tv42/zbase32"
 | 
				
			||||||
	"golang.org/x/crypto/openpgp/armor"
 | 
						"golang.org/x/crypto/openpgp/armor"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
@ -78,11 +79,17 @@ func (k EntityKey) Key() interface{} {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type Entity struct {
 | 
					type Entity struct {
 | 
				
			||||||
	Primary     *mail.Address
 | 
						Primary       *mail.Address
 | 
				
			||||||
	Emails      []*mail.Address
 | 
						SelfSignature *packet.Signature
 | 
				
			||||||
	Fingerprint string
 | 
						Emails        []*mail.Address
 | 
				
			||||||
	Proofs      []string
 | 
						Fingerprint   string
 | 
				
			||||||
	ArmorText   string
 | 
						Proofs        []string
 | 
				
			||||||
 | 
						ArmorText     string
 | 
				
			||||||
 | 
						entity        *openpgp.Entity
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func (e *Entity) Serialize(f io.Writer) error {
 | 
				
			||||||
 | 
						return e.entity.Serialize(f)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func getEntity(lis openpgp.EntityList) (*Entity, error) {
 | 
					func getEntity(lis openpgp.EntityList) (*Entity, error) {
 | 
				
			||||||
@ -97,6 +104,7 @@ func getEntity(lis openpgp.EntityList) (*Entity, error) {
 | 
				
			|||||||
			continue
 | 
								continue
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							entity.entity = e
 | 
				
			||||||
		entity.Fingerprint = fmt.Sprintf("%X", e.PrimaryKey.Fingerprint)
 | 
							entity.Fingerprint = fmt.Sprintf("%X", e.PrimaryKey.Fingerprint)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		for name, ident := range e.Identities {
 | 
							for name, ident := range e.Identities {
 | 
				
			||||||
@ -126,6 +134,7 @@ func getEntity(lis openpgp.EntityList) (*Entity, error) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
			// If identity is self signed read notation data.
 | 
								// If identity is self signed read notation data.
 | 
				
			||||||
			if ident.SelfSignature != nil && ident.SelfSignature.NotationData != nil {
 | 
								if ident.SelfSignature != nil && ident.SelfSignature.NotationData != nil {
 | 
				
			||||||
 | 
									entity.SelfSignature = ident.SelfSignature
 | 
				
			||||||
				// Get proofs and append to list.
 | 
									// Get proofs and append to list.
 | 
				
			||||||
				if proofs, ok := ident.SelfSignature.NotationData["proof@metacode.biz"]; ok {
 | 
									if proofs, ok := ident.SelfSignature.NotationData["proof@metacode.biz"]; ok {
 | 
				
			||||||
					entity.Proofs = append(entity.Proofs, proofs...)
 | 
										entity.Proofs = append(entity.Proofs, proofs...)
 | 
				
			||||||
@ -148,8 +157,11 @@ func ReadKey(r io.Reader, useArmored bool) (e *Entity, err error) {
 | 
				
			|||||||
	var w io.Writer = &buf
 | 
						var w io.Writer = &buf
 | 
				
			||||||
	e = &Entity{}
 | 
						e = &Entity{}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	defer func(){ if e != nil { e.ArmorText = buf.String() }}()
 | 
						defer func() {
 | 
				
			||||||
 | 
							if e != nil {
 | 
				
			||||||
 | 
								e.ArmorText = buf.String()
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if !useArmored {
 | 
						if !useArmored {
 | 
				
			||||||
		var aw io.WriteCloser
 | 
							var aw io.WriteCloser
 | 
				
			||||||
@ -157,7 +169,7 @@ func ReadKey(r io.Reader, useArmored bool) (e *Entity, err error) {
 | 
				
			|||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return e, fmt.Errorf("Read key: %w", err)
 | 
								return e, fmt.Errorf("Read key: %w", err)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
                defer aw.Close()
 | 
							defer aw.Close()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		w = aw
 | 
							w = aw
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
				
			|||||||
@ -231,6 +231,7 @@ func NewProof(ctx context.Context, uri, fingerprint string) ProofResolver {
 | 
				
			|||||||
				return &httpResolve{p, p.Verify, nil}
 | 
									return &httpResolve{p, p.Verify, nil}
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		p.Icon = "exclamation-triangle"
 | 
							p.Icon = "exclamation-triangle"
 | 
				
			||||||
		p.Service = "unknown"
 | 
							p.Service = "unknown"
 | 
				
			||||||
@ -338,7 +339,7 @@ func (t *twtxtResolve) Resolve(ctx context.Context) error {
 | 
				
			|||||||
		return err
 | 
							return err
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if len(twt.Twts) > 0 {
 | 
						if len(twt.Twts) > 0 {
 | 
				
			||||||
                nick := twt.Twts[0].Twter.Nick
 | 
							nick := twt.Twts[0].Twter.Nick
 | 
				
			||||||
		t.proof.Name = fmt.Sprintf("%s@%s", nick, t.proof.URI.Host)
 | 
							t.proof.Name = fmt.Sprintf("%s@%s", nick, t.proof.URI.Host)
 | 
				
			||||||
		t.proof.Link += "/user/" + nick
 | 
							t.proof.Link += "/user/" + nick
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -64,7 +64,7 @@ func NewAvatarApp(ctx context.Context, path string) (*avatarApp, error) {
 | 
				
			|||||||
					kind := filepath.Base(path)
 | 
										kind := filepath.Base(path)
 | 
				
			||||||
					name := filepath.Base(op.Name)
 | 
										name := filepath.Base(op.Name)
 | 
				
			||||||
					if err := app.createLinks(kind, name); err != nil {
 | 
										if err := app.createLinks(kind, name); err != nil {
 | 
				
			||||||
						fmt.Println(err)
 | 
											log.Err(err).Send()
 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
				case fsnotify.Remove, fsnotify.Rename:
 | 
									case fsnotify.Remove, fsnotify.Rename:
 | 
				
			||||||
					path = filepath.Dir(op.Name)
 | 
										path = filepath.Dir(op.Name)
 | 
				
			||||||
@ -76,7 +76,7 @@ func NewAvatarApp(ctx context.Context, path string) (*avatarApp, error) {
 | 
				
			|||||||
				default:
 | 
									default:
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			case err := <-watch.Errors:
 | 
								case err := <-watch.Errors:
 | 
				
			||||||
				fmt.Println(err)
 | 
									log.Err(err).Send()
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
@ -100,10 +100,12 @@ func (app *avatarApp) CheckFiles(ctx context.Context) error {
 | 
				
			|||||||
			return fmt.Errorf("walk failed: %w", err)
 | 
								return fmt.Errorf("walk failed: %w", err)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		if info.IsDir() {
 | 
							if info.IsDir() {
 | 
				
			||||||
			if info.Name() == ".links" {
 | 
								switch info.Name() {
 | 
				
			||||||
 | 
								case "avatar", "bg", "cover":
 | 
				
			||||||
 | 
									return nil
 | 
				
			||||||
 | 
								default:
 | 
				
			||||||
				return filepath.SkipDir
 | 
									return filepath.SkipDir
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			return nil
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		path = filepath.Dir(path)
 | 
							path = filepath.Dir(path)
 | 
				
			||||||
 | 
				
			|||||||
@ -2,9 +2,13 @@ package keyproofs
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
	"context"
 | 
						"context"
 | 
				
			||||||
 | 
						"crypto/sha1"
 | 
				
			||||||
	"fmt"
 | 
						"fmt"
 | 
				
			||||||
	"io"
 | 
						"io"
 | 
				
			||||||
 | 
						"io/ioutil"
 | 
				
			||||||
 | 
						"net"
 | 
				
			||||||
	"net/http"
 | 
						"net/http"
 | 
				
			||||||
 | 
						"net/url"
 | 
				
			||||||
	"os"
 | 
						"os"
 | 
				
			||||||
	"path/filepath"
 | 
						"path/filepath"
 | 
				
			||||||
	"strings"
 | 
						"strings"
 | 
				
			||||||
@ -12,7 +16,9 @@ import (
 | 
				
			|||||||
	"github.com/fsnotify/fsnotify"
 | 
						"github.com/fsnotify/fsnotify"
 | 
				
			||||||
	"github.com/go-chi/chi"
 | 
						"github.com/go-chi/chi"
 | 
				
			||||||
	"github.com/rs/zerolog/log"
 | 
						"github.com/rs/zerolog/log"
 | 
				
			||||||
 | 
						"github.com/sour-is/crypto/openpgp"
 | 
				
			||||||
	"github.com/sour-is/keyproofs/pkg/graceful"
 | 
						"github.com/sour-is/keyproofs/pkg/graceful"
 | 
				
			||||||
 | 
						"github.com/tv42/zbase32"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type wkdApp struct {
 | 
					type wkdApp struct {
 | 
				
			||||||
@ -22,9 +28,10 @@ type wkdApp struct {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
func NewWKDApp(ctx context.Context, path, domain string) (*wkdApp, error) {
 | 
					func NewWKDApp(ctx context.Context, path, domain string) (*wkdApp, error) {
 | 
				
			||||||
	log := log.Ctx(ctx)
 | 
						log := log.Ctx(ctx)
 | 
				
			||||||
 | 
						log.Debug().Str("domain", domain).Str("path", path).Msg("NewWKDApp")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	path = filepath.Clean(path)
 | 
						path = filepath.Clean(path)
 | 
				
			||||||
	app := &wkdApp{path: path}
 | 
						app := &wkdApp{path: path, domain: domain}
 | 
				
			||||||
	err := app.CheckFiles(ctx)
 | 
						err := app.CheckFiles(ctx)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return nil, err
 | 
							return nil, err
 | 
				
			||||||
@ -57,7 +64,7 @@ func NewWKDApp(ctx context.Context, path, domain string) (*wkdApp, error) {
 | 
				
			|||||||
					kind := filepath.Base(path)
 | 
										kind := filepath.Base(path)
 | 
				
			||||||
					name := filepath.Base(op.Name)
 | 
										name := filepath.Base(op.Name)
 | 
				
			||||||
					if err := app.createLinks(kind, name); err != nil {
 | 
										if err := app.createLinks(kind, name); err != nil {
 | 
				
			||||||
						fmt.Println(err)
 | 
											log.Err(err).Send()
 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
				case fsnotify.Remove, fsnotify.Rename:
 | 
									case fsnotify.Remove, fsnotify.Rename:
 | 
				
			||||||
					path = filepath.Dir(op.Name)
 | 
										path = filepath.Dir(op.Name)
 | 
				
			||||||
@ -69,7 +76,7 @@ func NewWKDApp(ctx context.Context, path, domain string) (*wkdApp, error) {
 | 
				
			|||||||
				default:
 | 
									default:
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			case err := <-watch.Errors:
 | 
								case err := <-watch.Errors:
 | 
				
			||||||
				fmt.Println(err)
 | 
									log.Err(err).Send()
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
@ -80,7 +87,7 @@ func NewWKDApp(ctx context.Context, path, domain string) (*wkdApp, error) {
 | 
				
			|||||||
func (app *wkdApp) CheckFiles(ctx context.Context) error {
 | 
					func (app *wkdApp) CheckFiles(ctx context.Context) error {
 | 
				
			||||||
	log := log.Ctx(ctx)
 | 
						log := log.Ctx(ctx)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for _, name := range []string{".links", "wkd"} {
 | 
						for _, name := range []string{".links", "keys"} {
 | 
				
			||||||
		log.Debug().Msgf("mkdir: %s", filepath.Join(app.path, name))
 | 
							log.Debug().Msgf("mkdir: %s", filepath.Join(app.path, name))
 | 
				
			||||||
		err := os.MkdirAll(filepath.Join(app.path, name), 0700)
 | 
							err := os.MkdirAll(filepath.Join(app.path, name), 0700)
 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
@ -92,12 +99,18 @@ func (app *wkdApp) CheckFiles(ctx context.Context) error {
 | 
				
			|||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return err
 | 
								return err
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		if info.IsDir() {
 | 
							log.Debug().Msg(info.Name())
 | 
				
			||||||
			if info.Name() == ".links" {
 | 
							if path == app.path {
 | 
				
			||||||
				return filepath.SkipDir
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			return nil
 | 
								return nil
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
							if info.IsDir() {
 | 
				
			||||||
 | 
								switch info.Name() {
 | 
				
			||||||
 | 
								case "keys":
 | 
				
			||||||
 | 
									return nil
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
 | 
								return filepath.SkipDir
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		path = filepath.Dir(path)
 | 
							path = filepath.Dir(path)
 | 
				
			||||||
		kind := filepath.Base(path)
 | 
							kind := filepath.Base(path)
 | 
				
			||||||
@ -109,26 +122,48 @@ func (app *wkdApp) CheckFiles(ctx context.Context) error {
 | 
				
			|||||||
	})
 | 
						})
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (app *wkdApp) get(w http.ResponseWriter, r *http.Request) {
 | 
					func (app *wkdApp) getRedirect(w http.ResponseWriter, r *http.Request) {
 | 
				
			||||||
	log := log.Ctx(r.Context())
 | 
						ctx := r.Context()
 | 
				
			||||||
 | 
						log := log.Ctx(ctx)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	log.Print(r.Host)
 | 
						log.Print(r.Host)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	kind := chi.URLParam(r, "kind")
 | 
					 | 
				
			||||||
	hash := chi.URLParam(r, "hash")
 | 
						hash := chi.URLParam(r, "hash")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if strings.ContainsRune(hash, '@') {
 | 
						if strings.ContainsRune(hash, '@') {
 | 
				
			||||||
		avatarHost, _, err := styleSRV(r.Context(), hash)
 | 
							hash, domain := hashHuman(hash)
 | 
				
			||||||
		if err != nil {
 | 
							log.Debug().Str("hash", hash).Str("domain", domain).Msg("redirect")
 | 
				
			||||||
			writeText(w, 500, err.Error())
 | 
							if host, adv := getWKDDomain(ctx, domain); adv {
 | 
				
			||||||
			return
 | 
								log.Debug().Str("host", host).Str("domain", domain).Bool("adv", adv).Msg("redirect")
 | 
				
			||||||
 | 
								http.Redirect(w, r, fmt.Sprintf("https://%s/.well-known/openpgpkey/hu/%s/%s", host, domain, hash), http.StatusTemporaryRedirect)
 | 
				
			||||||
 | 
							} else {
 | 
				
			||||||
 | 
								log.Debug().Str("host", host).Str("domain", domain).Bool("adv", adv).Msg("redirect")
 | 
				
			||||||
 | 
								http.Redirect(w, r, fmt.Sprintf("https://%s/.well-known/openpgpkey/hu/%s", domain, hash), http.StatusTemporaryRedirect)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		hash = hashSHA256(strings.ToLower(hash))
 | 
					
 | 
				
			||||||
		http.Redirect(w, r, fmt.Sprintf("https://%s/%s/%s?%s", avatarHost, kind, hash, r.URL.RawQuery), 301)
 | 
					 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	fname := filepath.Join(app.path, ".links", strings.Join([]string{kind, hash}, "-"))
 | 
						writeText(w, http.StatusBadRequest, "Bad Request")
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func (app *wkdApp) get(w http.ResponseWriter, r *http.Request) {
 | 
				
			||||||
 | 
						ctx := r.Context()
 | 
				
			||||||
 | 
						log := log.Ctx(ctx)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						log.Print(r.Host)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						hash := chi.URLParam(r, "hash")
 | 
				
			||||||
 | 
						domain := chi.URLParam(r, "domain")
 | 
				
			||||||
 | 
						if domain == "" {
 | 
				
			||||||
 | 
							domain = app.domain
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if strings.ContainsRune(hash, '@') {
 | 
				
			||||||
 | 
							hash, domain = hashHuman(hash)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						fname := filepath.Join(app.path, ".links", strings.Join([]string{"keys", domain, hash}, "-"))
 | 
				
			||||||
	log.Debug().Msgf("path: %s", fname)
 | 
						log.Debug().Msgf("path: %s", fname)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	f, err := os.Open(fname)
 | 
						f, err := os.Open(fname)
 | 
				
			||||||
@ -145,6 +180,9 @@ func (app *wkdApp) get(w http.ResponseWriter, r *http.Request) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (app *wkdApp) Routes(r *chi.Mux) {
 | 
					func (app *wkdApp) Routes(r *chi.Mux) {
 | 
				
			||||||
 | 
						r.MethodFunc("GET", "/wkd/{hash}", app.getRedirect)
 | 
				
			||||||
 | 
						r.MethodFunc("GET", "/key/{hash}", app.get)
 | 
				
			||||||
 | 
						r.MethodFunc("POST", "/pks/add", app.postKey)
 | 
				
			||||||
	r.MethodFunc("GET", "/.well-known/openpgpkey/hu/{hash}", app.get)
 | 
						r.MethodFunc("GET", "/.well-known/openpgpkey/hu/{hash}", app.get)
 | 
				
			||||||
	r.MethodFunc("GET", "/.well-known/openpgpkey/hu/{domain}/{hash}", app.get)
 | 
						r.MethodFunc("GET", "/.well-known/openpgpkey/hu/{domain}/{hash}", app.get)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@ -157,8 +195,8 @@ func (app *wkdApp) createLinks(kind, name string) error {
 | 
				
			|||||||
	src := filepath.Join("..", kind, name)
 | 
						src := filepath.Join("..", kind, name)
 | 
				
			||||||
	name = strings.ToLower(name)
 | 
						name = strings.ToLower(name)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	hash := hashMD5(name)
 | 
						hash, domain := hashHuman(name)
 | 
				
			||||||
	link := filepath.Join(app.path, ".links", strings.Join([]string{kind, hash}, "-"))
 | 
						link := filepath.Join(app.path, ".links", strings.Join([]string{kind, domain, hash}, "-"))
 | 
				
			||||||
	err := app.replaceLink(src, link)
 | 
						err := app.replaceLink(src, link)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return err
 | 
							return err
 | 
				
			||||||
@ -166,6 +204,14 @@ func (app *wkdApp) createLinks(kind, name string) error {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	return err
 | 
						return err
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					func hashHuman(name string) (string, string) {
 | 
				
			||||||
 | 
						name = strings.ToLower(name)
 | 
				
			||||||
 | 
						parts := strings.SplitN(name, "@", 2)
 | 
				
			||||||
 | 
						hash := sha1.Sum([]byte(parts[0]))
 | 
				
			||||||
 | 
						lp := zbase32.EncodeToString(hash[:])
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return lp, parts[1]
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (app *wkdApp) removeLinks(kind, name string) error {
 | 
					func (app *wkdApp) removeLinks(kind, name string) error {
 | 
				
			||||||
	if !strings.ContainsRune(name, '@') {
 | 
						if !strings.ContainsRune(name, '@') {
 | 
				
			||||||
@ -173,17 +219,13 @@ func (app *wkdApp) removeLinks(kind, name string) error {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	name = strings.ToLower(name)
 | 
						name = strings.ToLower(name)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	hash := hashMD5(name)
 | 
						hash, domain := hashHuman(name)
 | 
				
			||||||
	link := filepath.Join(app.path, ".links", strings.Join([]string{kind, hash}, "-"))
 | 
						link := filepath.Join(app.path, ".links", strings.Join([]string{kind, domain, hash}, "-"))
 | 
				
			||||||
	err := os.Remove(link)
 | 
						err := os.Remove(link)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return err
 | 
							return err
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	hash = hashSHA256(name)
 | 
					 | 
				
			||||||
	link = filepath.Join(app.path, ".links", strings.Join([]string{kind, hash}, "-"))
 | 
					 | 
				
			||||||
	err = os.Remove(link)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	return err
 | 
						return err
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -210,3 +252,129 @@ func (app *wkdApp) replaceLink(src, link string) error {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	return nil
 | 
						return nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func getWKDDomain(ctx context.Context, domain string) (string, bool) {
 | 
				
			||||||
 | 
						cname, err := net.DefaultResolver.LookupCNAME(ctx, "openpgpkey."+domain)
 | 
				
			||||||
 | 
						if err == nil {
 | 
				
			||||||
 | 
							return strings.Trim(cname, "."), true
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						return domain, false
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func (app *wkdApp) postKey(w http.ResponseWriter, r *http.Request) {
 | 
				
			||||||
 | 
						ctx := r.Context()
 | 
				
			||||||
 | 
						log := log.Ctx(ctx)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						body, err := ioutil.ReadAll(r.Body)
 | 
				
			||||||
 | 
						r.Body.Close()
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							log.Err(err).Send()
 | 
				
			||||||
 | 
							writeText(w, http.StatusBadRequest, "ERR BODY")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						q, err := url.ParseQuery(string(body))
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							log.Err(err).Send()
 | 
				
			||||||
 | 
							writeText(w, http.StatusBadRequest, "ERR PARSE")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						lis, err := openpgp.ReadArmoredKeyRing(strings.NewReader(q.Get("keytext")))
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							log.Err(err).Send()
 | 
				
			||||||
 | 
							writeText(w, http.StatusBadRequest, "ERR READ KEY")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						entity, err := getEntity(lis)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							log.Err(err).Send()
 | 
				
			||||||
 | 
							writeText(w, http.StatusBadRequest, "ERR ENTITY")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						fname := filepath.Join(app.path, "keys", entity.Primary.Address)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						f, err := os.Open(fname)
 | 
				
			||||||
 | 
						if os.IsNotExist(err) {
 | 
				
			||||||
 | 
							out, err := os.Create(fname)
 | 
				
			||||||
 | 
							if err != nil {
 | 
				
			||||||
 | 
								log.Err(err).Send()
 | 
				
			||||||
 | 
								writeText(w, http.StatusInternalServerError, "ERR CREATE")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								return
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							err = entity.Serialize(out)
 | 
				
			||||||
 | 
							if err != nil {
 | 
				
			||||||
 | 
								log.Err(err).Send()
 | 
				
			||||||
 | 
								writeText(w, http.StatusInternalServerError, "ERR WRITE")
 | 
				
			||||||
 | 
								return
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							w.Header().Set("X-HKP-Status", "Created key")
 | 
				
			||||||
 | 
							writeText(w, http.StatusOK, "OK CREATED")
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						current, err := openpgp.ReadKeyRing(f)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							log.Err(err).Send()
 | 
				
			||||||
 | 
							writeText(w, http.StatusInternalServerError, "ERR READ")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						f.Close()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						compare, err := getEntity(current)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							log.Err(err).Send()
 | 
				
			||||||
 | 
							writeText(w, http.StatusInternalServerError, "ERR PARSE")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if entity.Fingerprint != compare.Fingerprint {
 | 
				
			||||||
 | 
							w.Header().Set("X-HKP-Status", "Mismatch fingerprint")
 | 
				
			||||||
 | 
							writeText(w, http.StatusBadRequest, "ERR FINGERPRINT")
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						if entity.SelfSignature == nil || compare.SelfSignature == nil {
 | 
				
			||||||
 | 
							w.Header().Set("X-HKP-Status", "Missing signature")
 | 
				
			||||||
 | 
							writeText(w, http.StatusBadRequest, "ERR SIGNATURE")
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						log.Debug().Msgf("%v < %v", entity.SelfSignature.CreationTime, compare.SelfSignature.CreationTime)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if !compare.SelfSignature.CreationTime.Before(entity.SelfSignature.CreationTime) {
 | 
				
			||||||
 | 
							w.Header().Set("X-HKP-Status", "out of date")
 | 
				
			||||||
 | 
							writeText(w, http.StatusBadRequest, "ERR OUT OF DATE")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						out, err := os.Create(fname)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							log.Err(err).Send()
 | 
				
			||||||
 | 
							writeText(w, http.StatusInternalServerError, "ERR CREATE")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						err = entity.Serialize(out)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							log.Err(err).Send()
 | 
				
			||||||
 | 
							writeText(w, http.StatusInternalServerError, "ERR WRITE")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						w.Header().Set("X-HKP-Status", "Updated key")
 | 
				
			||||||
 | 
						writeText(w, http.StatusOK, "OK UPDATED")
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
@ -55,6 +55,8 @@ func NewXMPP(ctx context.Context, config *xmpp.Config) (*connection, error) {
 | 
				
			|||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return nil, err
 | 
							return nil, err
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						conn.client = cl
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sc := xmpp.NewStreamManager(cl, func(c xmpp.Sender) { log.Info().Msg("XMPP Client connected.") })
 | 
						sc := xmpp.NewStreamManager(cl, func(c xmpp.Sender) { log.Info().Msg("XMPP Client connected.") })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	wg.Go(func() error {
 | 
						wg.Go(func() error {
 | 
				
			||||||
@ -68,13 +70,16 @@ func NewXMPP(ctx context.Context, config *xmpp.Config) (*connection, error) {
 | 
				
			|||||||
		log.Info().Msg("XMPP Client shutdown.")
 | 
							log.Info().Msg("XMPP Client shutdown.")
 | 
				
			||||||
	}()
 | 
						}()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	conn.client = cl
 | 
					 | 
				
			||||||
	return conn, err
 | 
						return conn, err
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (conn *connection) GetXMPPVCard(ctx context.Context, jid string) (vc *VCard, err error) {
 | 
					func (conn *connection) GetXMPPVCard(ctx context.Context, jid string) (vc *VCard, err error) {
 | 
				
			||||||
	log := log.Ctx(ctx)
 | 
						log := log.Ctx(ctx)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if err := conn.client.Resume(); err != nil {
 | 
				
			||||||
 | 
							return nil, err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	var iq *stanza.IQ
 | 
						var iq *stanza.IQ
 | 
				
			||||||
	iq, err = stanza.NewIQ(stanza.Attrs{To: jid, Type: "get"})
 | 
						iq, err = stanza.NewIQ(stanza.Attrs{To: jid, Type: "get"})
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user