func LoginUserHandler(w http.ResponseWriter, r *http.Request) { c := communicator.New(w) username := r.FormValue("username") password := r.FormValue("password") u, err := GetUser("username", username) if err != nil { log.Println(err) c.Fail("Could not get user") return } ok := u.Login(password) if !ok { c.Fail("Incorrect username") return } claims := make(map[string]interface{}) claims["id"] = u.ID claims["exp"] = time.Now().Add(time.Hour * 72).Unix() ts, err := restrict.Token(claims) if err != nil { c.Fail("Failure signing that token!") return } c.OKWithData("Here is your token", ts) }
func LoginHandler(w http.ResponseWriter, r *http.Request) { c := communicator.New(w) username := r.FormValue("username") password := r.FormValue("password") u, err := models.GetUser("username", username) if err != nil { c.Fail("Unable to find that user") return } ok, err := u.Login(password) if err != nil { c.Fail("Authentication error") } if !ok { c.Fail("That was not a matching password") return } claims := make(map[string]interface{}) claims["id"] = u.ID claims["exp"] = time.Now().Add(time.Hour * 72).Unix() ts, err := restrict.Token(claims) if err != nil { c.Fail("Failure signing that token!") return } c.OKWithData("Successfully logged in that user", ts) }
func loginHandler(w http.ResponseWriter, r *http.Request) { coms := communicator.New(w) username := r.FormValue("username") password := r.FormValue("password") u, err := models.FetchUser("username", username) if err != nil { coms.Error("Unable to login user") return } if err := u.Login(password); err != nil { coms.Errorf("Unable to login %v", err) return } claims := make(map[string]interface{}) claims["id"] = u.ID claims["exp"] = time.Now().Add(time.Hour * 72).Unix() ts, err := restrict.Token(claims) if err != nil { coms.Fail("Failure signing the token") sentry.CaptureError(err, nil) return } coms.With(ts).OK() }
func loginHandler(w http.ResponseWriter, r *http.Request) { coms := communicator.New(w) username := r.FormValue("username") password := r.FormValue("password") u, err := models.FetchUser(username) if err != nil { fmt.Println(err) coms.Error("Could not fetch user") return } if !u.Login(password) { coms.Error("Incorrect password") return } claims := make(map[string]interface{}) claims["id"] = u.ID claims["exp"] = time.Now().Add(time.Hour * 72).Unix() ts, err := restrict.Token(claims) if err != nil { coms.Fail("Failure signing the token") return } coms.OKWithData("token", ts) }