-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandlers.go
65 lines (55 loc) · 2.11 KB
/
handlers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"fmt"
"github.com/labstack/echo/v4"
"net/http"
)
// Handler: Login | Handles the login part of the app
func loginHandler(c echo.Context) error {
Debugf("Publishing the login page")
return c.Render(http.StatusUnauthorized, "login.html", "")
}
// Handler: Azure Login | Send the page to azure authentication
func azureLoginHandler(c echo.Context) error {
Debugf("Sending the page to azure for authentication")
return c.Redirect(http.StatusTemporaryRedirect, azureAuthUrl())
}
// Handler: Login CallBack | Handles the callback after a successful authentication
func azureCallbackHandler(c echo.Context) error {
Debugf("Request came back from azure, handling the request")
return c.Render(http.StatusOK, "callback.html", "")
}
// Handler: Azure Token | Once successfully logged in its time to handle the toke generated by azure
func azureTokenHandler(c echo.Context) error {
Debugf("Handling the token send by Azure")
err := extractAzureToken(c)
if err != nil {
return echo.NewHTTPError(http.StatusUnauthorized, fmt.Sprintf("%v", err))
}
return c.Redirect(http.StatusTemporaryRedirect, "/")
}
// Handler: Logout | Handles the logout part of the app
func logoutHandler(c echo.Context) error {
Debugf("Trying to the log the user out")
err := deleteSession(c)
if err != nil {
echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to cleanup the session during logout: %v", err))
}
return c.Redirect(http.StatusTemporaryRedirect, "/login")
}
// Handler: Home | Handler send to home page
func homeHandler(c echo.Context) error {
Debugf("Publishing the home page")
return c.Render(http.StatusUnauthorized, "home.html", "")
}
// Handler: Restricted | Handler send to restricted page
func restrictedHandler(c echo.Context) error {
Debugf("Publishing the restricted page")
t, _ := validateJwtToken(c)
return c.Render(http.StatusUnauthorized, "restricted.html", t.Claims)
}
// Handler: UnRestricted | Handler send to unrestricted page
func unrestrictedHandler(c echo.Context) error {
Debugf("Publishing the unrestricted page")
return c.Render(http.StatusUnauthorized, "unrestricted.html", "")
}