mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Root package now contains only initialization code and 'dummy' module. Each module now got its own package. Module packages are grouped by their main purpose (storage/, target/, auth/, etc). Shared code is placed in these "group" packages. Parser for module references in config is moved into config/module. Code shared by tests (mock modules, etc) is placed in testutils.
52 lines
839 B
Go
52 lines
839 B
Go
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/foxcpp/maddy/auth/shadow"
|
|
)
|
|
|
|
func main() {
|
|
scnr := bufio.NewScanner(os.Stdin)
|
|
|
|
if !scnr.Scan() {
|
|
fmt.Fprintln(os.Stderr, scnr.Err())
|
|
os.Exit(2)
|
|
}
|
|
username := scnr.Text()
|
|
|
|
if !scnr.Scan() {
|
|
fmt.Fprintln(os.Stderr, scnr.Err())
|
|
os.Exit(2)
|
|
}
|
|
password := scnr.Text()
|
|
|
|
ent, err := shadow.Lookup(username)
|
|
if err != nil {
|
|
if err == shadow.ErrNoSuchUser {
|
|
os.Exit(1)
|
|
}
|
|
fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(2)
|
|
}
|
|
|
|
if !ent.IsAccountValid() {
|
|
fmt.Fprintln(os.Stderr, "account is expired")
|
|
os.Exit(1)
|
|
}
|
|
|
|
if !ent.IsPasswordValid() {
|
|
fmt.Fprintln(os.Stderr, "password is expired")
|
|
os.Exit(1)
|
|
}
|
|
|
|
if err := ent.VerifyPassword(password); err != nil {
|
|
if err == shadow.ErrWrongPassword {
|
|
os.Exit(1)
|
|
}
|
|
fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
}
|