-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.go
75 lines (61 loc) · 1.92 KB
/
web.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
65
66
67
68
69
70
71
72
73
74
75
package main
import (
"github.com/gorilla/sessions"
"github.com/labstack/echo-contrib/session"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"html/template"
"io"
)
type Template struct {
templates *template.Template
}
func main() {
// Kickoff by initializing the logger
initLogger()
// Start the router and serve the API traffic
startWebServer()
}
// HTML Templates Render
func (t *Template) Render(w io.Writer, name string, data interface{}, c echo.Context) error {
return t.templates.ExecuteTemplate(w, name, data)
}
// Start the web server to serve traffic
func startWebServer() {
Debugf("Starting the echo instance and serving the API traffic")
// Starting a new echo instance
e := echo.New()
// Middleware sessions
e.Use(session.Middleware(sessions.NewCookieStore([]byte(sessionName))))
// Middleware remove any "/" from URL, since most of the API we used doesn't have
// trailing slack
e.Pre(middleware.RemoveTrailingSlash())
// Load all the public facing templates
t := &Template{
templates: template.Must(template.ParseGlob("public/views/*.html")),
}
e.Renderer = t
// Error Handler to send all the internal error with a message
e.HTTPErrorHandler = func(err error, c echo.Context) {
if he, ok := err.(*echo.HTTPError); ok {
c.JSON(he.Code, err)
}
}
// Serve the routes
webRouter(e)
// Start server
e.Logger.Fatal(e.Start(":" + IsSettingEmpty("API_PORT")))
}
// The router that is going to server the API traffic
func webRouter(e *echo.Echo) {
// In & Out passage to the app
e.GET("/login", loginHandler)
e.GET("/auth/azure", azureLoginHandler)
e.GET(IsSettingEmpty("AZURE_REDIRECT_URL"), azureCallbackHandler)
e.GET("/auth/azure/token", azureTokenHandler)
e.GET("/logout", logoutHandler)
// Web Pages
e.GET("/", homeHandler, AuthenticateRequestMiddleWare)
e.GET("/restricted", restrictedHandler, AuthenticateRequestMiddleWare)
e.GET("/unrestricted", unrestrictedHandler)
}