1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00
wakapi/routes/home.go

174 lines
5.1 KiB
Go
Raw Normal View History

package routes
import (
2020-05-24 17:34:32 +03:00
"fmt"
"github.com/gorilla/schema"
2020-10-09 22:37:16 +03:00
conf "github.com/muety/wakapi/config"
"github.com/muety/wakapi/middlewares"
"github.com/muety/wakapi/models"
2020-11-06 23:19:54 +03:00
"github.com/muety/wakapi/models/view"
"github.com/muety/wakapi/services"
"github.com/muety/wakapi/utils"
"net/http"
2020-05-24 17:34:32 +03:00
"net/url"
"time"
)
2020-11-06 23:19:54 +03:00
type HomeHandler struct {
config *conf.Config
userSrvc *services.UserService
}
var loginDecoder = schema.NewDecoder()
2020-05-24 17:34:32 +03:00
var signupDecoder = schema.NewDecoder()
2020-11-06 23:19:54 +03:00
func NewHomeHandler(userService *services.UserService) *HomeHandler {
return &HomeHandler{
config: conf.Get(),
userSrvc: userService,
}
}
2020-11-06 23:19:54 +03:00
func (h *HomeHandler) GetIndex(w http.ResponseWriter, r *http.Request) {
if h.config.IsDev() {
loadTemplates()
}
if cookie, err := r.Cookie(models.AuthCookieKey); err == nil && cookie.Value != "" {
http.Redirect(w, r, fmt.Sprintf("%s/summary", h.config.Server.BasePath), http.StatusFound)
return
}
2020-11-06 23:19:54 +03:00
templates[conf.IndexTemplate].Execute(w, h.buildViewModel(r))
}
2020-11-06 23:19:54 +03:00
func (h *HomeHandler) PostLogin(w http.ResponseWriter, r *http.Request) {
if h.config.IsDev() {
loadTemplates()
}
2020-05-24 17:34:32 +03:00
if cookie, err := r.Cookie(models.AuthCookieKey); err == nil && cookie.Value != "" {
http.Redirect(w, r, fmt.Sprintf("%s/summary", h.config.Server.BasePath), http.StatusFound)
2020-05-24 17:34:32 +03:00
return
}
var login models.Login
if err := r.ParseForm(); err != nil {
2020-11-06 23:19:54 +03:00
w.WriteHeader(http.StatusBadRequest)
templates[conf.IndexTemplate].Execute(w, h.buildViewModel(r).WithError("missing parameters"))
return
}
if err := loginDecoder.Decode(&login, r.PostForm); err != nil {
2020-11-06 23:19:54 +03:00
w.WriteHeader(http.StatusBadRequest)
templates[conf.IndexTemplate].Execute(w, h.buildViewModel(r).WithError("missing parameters"))
return
}
user, err := h.userSrvc.GetUserById(login.Username)
if err != nil {
2020-11-06 23:19:54 +03:00
w.WriteHeader(http.StatusNotFound)
templates[conf.IndexTemplate].Execute(w, h.buildViewModel(r).WithError("resource not found"))
return
}
// TODO: depending on middleware package here is a hack
if !middlewares.CheckAndMigratePassword(user, &login, h.config.Security.PasswordSalt, h.userSrvc) {
2020-11-06 23:19:54 +03:00
w.WriteHeader(http.StatusUnauthorized)
templates[conf.IndexTemplate].Execute(w, h.buildViewModel(r).WithError("invalid credentials"))
return
}
encoded, err := h.config.Security.SecureCookie.Encode(models.AuthCookieKey, login)
if err != nil {
2020-11-06 23:19:54 +03:00
w.WriteHeader(http.StatusInternalServerError)
templates[conf.IndexTemplate].Execute(w, h.buildViewModel(r).WithError("internal server error"))
return
}
user.LastLoggedInAt = models.CustomTime(time.Now())
h.userSrvc.Update(user)
cookie := &http.Cookie{
Name: models.AuthCookieKey,
Value: encoded,
Path: "/",
Secure: !h.config.Security.InsecureCookies,
HttpOnly: true,
}
http.SetCookie(w, cookie)
http.Redirect(w, r, fmt.Sprintf("%s/summary", h.config.Server.BasePath), http.StatusFound)
}
2020-11-06 23:19:54 +03:00
func (h *HomeHandler) PostLogout(w http.ResponseWriter, r *http.Request) {
if h.config.IsDev() {
loadTemplates()
}
utils.ClearCookie(w, models.AuthCookieKey, !h.config.Security.InsecureCookies)
http.Redirect(w, r, fmt.Sprintf("%s/", h.config.Server.BasePath), http.StatusFound)
}
2020-11-06 23:19:54 +03:00
func (h *HomeHandler) GetSignup(w http.ResponseWriter, r *http.Request) {
2020-05-24 17:34:32 +03:00
if h.config.IsDev() {
loadTemplates()
}
if cookie, err := r.Cookie(models.AuthCookieKey); err == nil && cookie.Value != "" {
http.Redirect(w, r, fmt.Sprintf("%s/summary", h.config.Server.BasePath), http.StatusFound)
2020-05-24 17:34:32 +03:00
return
}
2020-11-06 23:19:54 +03:00
templates[conf.SignupTemplate].Execute(w, h.buildViewModel(r))
2020-05-24 17:34:32 +03:00
}
2020-11-06 23:19:54 +03:00
func (h *HomeHandler) PostSignup(w http.ResponseWriter, r *http.Request) {
2020-05-24 17:34:32 +03:00
if h.config.IsDev() {
loadTemplates()
}
if cookie, err := r.Cookie(models.AuthCookieKey); err == nil && cookie.Value != "" {
http.Redirect(w, r, fmt.Sprintf("%s/summary", h.config.Server.BasePath), http.StatusFound)
2020-05-24 17:34:32 +03:00
return
}
var signup models.Signup
if err := r.ParseForm(); err != nil {
2020-11-06 23:19:54 +03:00
w.WriteHeader(http.StatusBadRequest)
templates[conf.SignupTemplate].Execute(w, h.buildViewModel(r).WithError("missing parameters"))
2020-05-24 17:34:32 +03:00
return
}
if err := signupDecoder.Decode(&signup, r.PostForm); err != nil {
2020-11-06 23:19:54 +03:00
w.WriteHeader(http.StatusBadRequest)
templates[conf.SignupTemplate].Execute(w, h.buildViewModel(r).WithError("missing parameters"))
2020-05-24 17:34:32 +03:00
return
}
2020-05-24 22:42:15 +03:00
if !signup.IsValid() {
2020-11-06 23:19:54 +03:00
w.WriteHeader(http.StatusBadRequest)
templates[conf.SignupTemplate].Execute(w, h.buildViewModel(r).WithError("invalid parameters"))
2020-05-24 17:34:32 +03:00
return
}
_, created, err := h.userSrvc.CreateOrGet(&signup)
if err != nil {
2020-11-06 23:19:54 +03:00
w.WriteHeader(http.StatusInternalServerError)
templates[conf.SignupTemplate].Execute(w, h.buildViewModel(r).WithError("failed to create new user"))
2020-05-24 17:34:32 +03:00
return
}
if !created {
2020-11-06 23:19:54 +03:00
w.WriteHeader(http.StatusConflict)
templates[conf.SignupTemplate].Execute(w, h.buildViewModel(r).WithError("user already existing"))
2020-05-24 17:34:32 +03:00
return
}
msg := url.QueryEscape("account created successfully")
http.Redirect(w, r, fmt.Sprintf("%s/?success=%s", h.config.Server.BasePath, msg), http.StatusFound)
2020-05-24 17:34:32 +03:00
}
2020-11-06 23:19:54 +03:00
func (h *HomeHandler) buildViewModel(r *http.Request) *view.HomeViewModel {
return &view.HomeViewModel{
Success: r.URL.Query().Get("success"),
Error: r.URL.Query().Get("error"),
}
}