35 lines
708 B
Go
35 lines
708 B
Go
package event
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log/slog"
|
|
"os"
|
|
|
|
geEvent "github.com/grassrootseconomics/eth-tracker/pkg/event"
|
|
|
|
"git.grassecon.net/urdt/ussd/common"
|
|
)
|
|
|
|
// TODO: this vocabulary should be public in and provided by the eth-tracker repo
|
|
const (
|
|
evGive = "FAUCET_GIVE"
|
|
)
|
|
|
|
var (
|
|
logg = slog.New(slog.NewTextHandler(os.Stderr, &slog.HandlerOptions{Level: slog.LevelDebug}))
|
|
)
|
|
|
|
type Router struct {
|
|
Store *common.UserDataStore
|
|
}
|
|
|
|
func(r *Router) Route(ctx context.Context, gev *geEvent.Event) error {
|
|
logg.Debug("have event", "ev", gev)
|
|
evCC, ok := asCustodialRegistrationEvent(gev)
|
|
if ok {
|
|
return handleCustodialRegistration(ctx, r.Store, evCC)
|
|
}
|
|
return fmt.Errorf("unexpected message")
|
|
}
|