town/cmd/welcome/main.go

119 lines
2.2 KiB
Go

package main
import (
"errors"
"fmt"
"os"
"strings"
"git.tilde.town/tildetown/town/invites"
"github.com/AlecAivazis/survey/v2"
"github.com/charmbracelet/lipgloss"
_ "embed"
)
//go:embed welcome.txt
var welcomeArt string
// TODO move magic key machine to static page
type newUserData struct {
Username string
DisplayName string
Email string
PubKey string
}
func surveyIconSet(icons *survey.IconSet) {
icons.Question.Text = "~"
icons.Question.Format = "magenta:b"
}
func promptCode() (code string, err error) {
codePrompt := &survey.Input{
Message: "invite code?",
}
err = survey.AskOne(codePrompt, &code,
survey.WithValidator(survey.Required),
survey.WithIcons(surveyIconSet))
code = strings.TrimSpace(code)
return
}
func promptUsername() (un string, err error) {
unPrompt := &survey.Input{
Message: "desired username?",
}
err = survey.AskOne(unPrompt, &un,
survey.WithValidator(survey.Required),
survey.WithIcons(surveyIconSet),
survey.WithValidator(func(val interface{}) error {
un := val.(string)
// TODO check for exising username
fmt.Println(un)
return nil
}))
return "", nil
}
func _main() error {
inviteDB, err := invites.ConnectDB()
if err != nil {
return err
}
data := &newUserData{}
s := lipgloss.NewStyle().
Foreground(lipgloss.AdaptiveColor{
Light: "#7D19BD",
Dark: "#E0B0FF",
})
s = s.SetString(welcomeArt)
fmt.Println(s)
code, err := promptCode()
if err != nil {
return err
}
invite, err := invites.Get(inviteDB, code)
if err != nil {
return fmt.Errorf("could not look up invite code: %w", err)
}
if invite.Used {
return errors.New("that invite code has already been used.")
}
s = s.SetString("thanks!! just gotta collect some information now and then your account will be ready.")
fmt.Println(s)
data.Username, err = promptUsername()
if err != nil {
return err
}
// TODO collect username
// TODO collect email
// TODO collect public key
// TODO have enough to make account; can now do that
// TODO assuming account creation succeeded, mark invite as used
return nil
}
func main() {
// TODO friendlier error handling
err := _main()
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}