mirror of
https://github.com/jeremyd/ergo.git
synced 2026-08-03 20:53:06 -07:00
eb43ff69c4
Rebuilt the nostr registration feature cleanly on top of current ergo mainline (origin/master), dropping the stale ergo reversions that were entangled in the original squashed branch. - New irc/nostr package: NIP-04/NIP-17 DMs, NIP-05 resolution, relay connect/auth, and identifier helpers. - Registration/verification via nostr: parseCallback auto-detects nostr identifiers (NIP-05, npub, hex pubkey) and dispatches a verification DM. - Nostr-based cloaked hostnames for accounts (opt-in via ip-cloaking.nostr-hostnames), applied at the account-cloak sites. - Config: accounts.registration.nostr-verification and the nostr-hostnames cloak option, with matching default.yaml and help text. - Adds github.com/nbd-wtf/go-nostr and vendored dependencies.
27 lines
420 B
Go
27 lines
420 B
Go
package xsync
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime/debug"
|
|
)
|
|
|
|
// Go allows running a function in another goroutine
|
|
// and waiting for its error.
|
|
func Go(fn func() error) <-chan error {
|
|
errs := make(chan error, 1)
|
|
go func() {
|
|
defer func() {
|
|
r := recover()
|
|
if r != nil {
|
|
select {
|
|
case errs <- fmt.Errorf("panic in go fn: %v, %s", r, debug.Stack()):
|
|
default:
|
|
}
|
|
}
|
|
}()
|
|
errs <- fn()
|
|
}()
|
|
|
|
return errs
|
|
}
|