adding a little more view models
This commit is contained in:
parent
ed1ca5831a
commit
f5cbdc115b
@ -5,7 +5,7 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"git.jamestombleson.com/jtom38/newsbot-portal/internal/domain"
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/domain"
|
||||||
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/models"
|
||||||
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/users"
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/views/users"
|
||||||
"github.com/labstack/echo/v4"
|
"github.com/labstack/echo/v4"
|
||||||
)
|
)
|
||||||
@ -20,7 +20,10 @@ func (h *Handler) UserAfterLogin(c echo.Context) error {
|
|||||||
|
|
||||||
resp, err := h.api.Users.Login(user, password)
|
resp, err := h.api.Users.Login(user, password)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return Render(c, http.StatusBadRequest, users.AfterLogin(err.Error(), false))
|
return Render(c, http.StatusBadRequest, users.AfterLogin(models.AfterLoginViewModel{
|
||||||
|
Success: false,
|
||||||
|
Message: err.Error(),
|
||||||
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
if user == "" {
|
if user == "" {
|
||||||
@ -31,7 +34,11 @@ func (h *Handler) UserAfterLogin(c echo.Context) error {
|
|||||||
SetCookie(c, domain.CookieRefreshToken, resp.RefreshToken, "/")
|
SetCookie(c, domain.CookieRefreshToken, resp.RefreshToken, "/")
|
||||||
SetCookie(c, domain.CookieUser, user, "/")
|
SetCookie(c, domain.CookieUser, user, "/")
|
||||||
|
|
||||||
return Render(c, http.StatusOK, users.AfterLogin("Login Successful!", true))
|
vm := models.AfterLoginViewModel{
|
||||||
|
Success: true,
|
||||||
|
Message: "Login Successful!",
|
||||||
|
}
|
||||||
|
return Render(c, http.StatusOK, users.AfterLogin(vm))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *Handler) UserSignUp(c echo.Context) error {
|
func (h *Handler) UserSignUp(c echo.Context) error {
|
||||||
@ -44,11 +51,17 @@ func (h *Handler) UserAfterSignUp(c echo.Context) error {
|
|||||||
|
|
||||||
resp, err := h.api.Users.SignUp(user, password)
|
resp, err := h.api.Users.SignUp(user, password)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return Render(c, http.StatusBadRequest, users.AfterLogin(err.Error(), false))
|
return Render(c, http.StatusBadRequest, users.AfterLogin(models.AfterLoginViewModel{
|
||||||
|
Success: false,
|
||||||
|
Message: err.Error(),
|
||||||
|
}))
|
||||||
}
|
}
|
||||||
if resp.Message != "OK" {
|
if resp.Message != "OK" {
|
||||||
msg := fmt.Sprintf("Failed to create account. Message: %s", resp.Message)
|
msg := fmt.Sprintf("Failed to create account. Message: %s", resp.Message)
|
||||||
return Render(c, http.StatusBadRequest, users.AfterLogin(msg, false))
|
return Render(c, http.StatusBadRequest, users.AfterLogin(models.AfterLoginViewModel{
|
||||||
|
Message: msg,
|
||||||
|
Success: false,
|
||||||
|
}))
|
||||||
}
|
}
|
||||||
return Render(c, http.StatusOK, users.AfterSignUp("Registration Successful!", true))
|
return Render(c, http.StatusOK, users.AfterSignUp("Registration Successful!", true))
|
||||||
}
|
}
|
||||||
@ -58,9 +71,9 @@ func (h *Handler) UserProfile(c echo.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (h *Handler) ForceLogout(c echo.Context) error {
|
func (h *Handler) ForceLogout(c echo.Context) error {
|
||||||
_, err := ValidateJwt(c, h.config.JwtSecret, h.config.ServerAddress)
|
err := IsLoggedIn(c)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return Render(c, http.StatusOK, layout.Error(err))
|
return RenderError(c, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
h.api.Users.RefreshSessionToken(GetJwtToken(c))
|
h.api.Users.RefreshSessionToken(GetJwtToken(c))
|
||||||
|
6
internal/models/users.go
Normal file
6
internal/models/users.go
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
package models
|
||||||
|
|
||||||
|
type AfterLoginViewModel struct {
|
||||||
|
Message string
|
||||||
|
Success bool
|
||||||
|
}
|
@ -1,15 +1,17 @@
|
|||||||
package users
|
package users
|
||||||
|
|
||||||
|
import "git.jamestombleson.com/jtom38/newsbot-portal/internal/models"
|
||||||
|
|
||||||
// This is returned after the user logs into the application.
|
// This is returned after the user logs into the application.
|
||||||
// It just returns a partial view because it will overlap with the existing template.
|
// It just returns a partial view because it will overlap with the existing template.
|
||||||
templ AfterLogin(message string, success bool) {
|
templ AfterLogin(vm models.AfterLoginViewModel) {
|
||||||
if success {
|
if vm.Success {
|
||||||
<div class="notification is-success">
|
<div class="notification is-success">
|
||||||
{ message }
|
{ vm.Message }
|
||||||
</div>
|
</div>
|
||||||
} else {
|
} else {
|
||||||
<div class="notification is-error">
|
<div class="notification is-error">
|
||||||
{ message }
|
{ vm.Message }
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user