2025-01-21 16:42:59 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2025-02-02 08:20:51 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2025-01-21 16:42:59 +00:00
|
|
|
|
2025-02-02 08:20:51 +00:00
|
|
|
"github.com/Jaculabilis/intake/core"
|
2025-01-21 16:42:59 +00:00
|
|
|
"github.com/spf13/cobra"
|
2025-02-02 08:20:51 +00:00
|
|
|
"golang.org/x/term"
|
2025-01-21 16:42:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var passwdCmd = &cobra.Command{
|
|
|
|
Use: "passwd",
|
|
|
|
Short: "Set the password for the web interface",
|
2025-02-02 08:20:51 +00:00
|
|
|
Long: `Set the password for the web interface.
|
|
|
|
|
|
|
|
Access through the command line should be controlled by standard filesystem
|
|
|
|
permissions.
|
2025-01-21 16:42:59 +00:00
|
|
|
`,
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2025-02-02 08:20:51 +00:00
|
|
|
passwd(boolArg(cmd, "verify"))
|
2025-01-21 16:42:59 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
rootCmd.AddCommand(passwdCmd)
|
2025-02-02 08:20:51 +00:00
|
|
|
|
|
|
|
passwdCmd.Flags().Bool("verify", false, "Compare the input password instead of setting it.")
|
|
|
|
}
|
|
|
|
|
|
|
|
func passwd(verify bool) {
|
|
|
|
db := openAndMigrateDb()
|
|
|
|
|
|
|
|
fmt.Print("Enter your password: ")
|
|
|
|
bytes, err := term.ReadPassword(int(os.Stdin.Fd()))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("error: failed to read password: %v\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
password := string(bytes)
|
|
|
|
fmt.Println()
|
|
|
|
|
|
|
|
if verify {
|
|
|
|
match, err := core.CheckPassword(db, password)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("error: failed to check password: %v\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
if match {
|
|
|
|
fmt.Println("correct!")
|
|
|
|
os.Exit(0)
|
|
|
|
} else {
|
|
|
|
fmt.Println("incorrect")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err = core.SetPassword(db, password)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("failed to set password: %v\n", err)
|
|
|
|
}
|
|
|
|
fmt.Println("password set")
|
2025-01-21 16:42:59 +00:00
|
|
|
}
|