-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.go
74 lines (59 loc) · 1.64 KB
/
server.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
package main
import (
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"html/template"
"io"
"net/http"
)
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 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)
}
}
// Render 404 page
echo.NotFoundHandler = func(c echo.Context) error {
return c.Render(http.StatusNotFound, "404.html", "")
}
// 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) {
// Web Page
e.Static("/", "dist")
// GO web pages
e.GET("/backendhome", homeHandler)
e.GET("/backendsecond", secondHandler)
// API Page
e.GET("/backendapi", apiHandler)
}