mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-05 11:10:47 -06:00
62 lines
1.5 KiB
Go
62 lines
1.5 KiB
Go
package user
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"syscall"
|
|
|
|
"codeberg.org/shroff/phylum/server/internal/auth"
|
|
"codeberg.org/shroff/phylum/server/internal/db"
|
|
"github.com/spf13/cobra"
|
|
"golang.org/x/term"
|
|
)
|
|
|
|
func setupPasswdCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "passwd email",
|
|
Short: "Change Password",
|
|
Args: cobra.ExactArgs(1),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
email := args[0]
|
|
password, err := cmd.Flags().GetString("password")
|
|
if err != nil {
|
|
fmt.Println("invalid password: " + err.Error())
|
|
os.Exit(1)
|
|
} else if password == "" {
|
|
os.Stdout.WriteString("Password: ")
|
|
bytes, err := term.ReadPassword(syscall.Stdin)
|
|
os.Stdout.WriteString("\n")
|
|
if err != nil {
|
|
fmt.Println("unable to read password: " + err.Error())
|
|
os.Exit(1)
|
|
}
|
|
password = string(bytes)
|
|
|
|
os.Stdout.WriteString("Confirm Password: ")
|
|
bytes, err = term.ReadPassword(syscall.Stdin)
|
|
os.Stdout.WriteString("\n")
|
|
if err != nil {
|
|
fmt.Println("unable to read password: " + err.Error())
|
|
os.Exit(1)
|
|
}
|
|
passwordConf := string(bytes)
|
|
|
|
if password != passwordConf {
|
|
fmt.Println("password does not match confirmation")
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
if err := db.RunInTx(context.Background(), func(db db.TxHandler) error {
|
|
return auth.UpdateUserPassword(db, email, password)
|
|
}); err != nil {
|
|
fmt.Println("could not change password: " + err.Error())
|
|
os.Exit(1)
|
|
}
|
|
},
|
|
}
|
|
cmd.Flags().StringP("password", "p", "", "Password")
|
|
return cmd
|
|
}
|