50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
| package router
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| 	"io"
 | |
| 	"text/template"
 | |
| 
 | |
| 	"github.com/labstack/echo/v4"
 | |
| 	"github.com/labstack/echo/v4/middleware"
 | |
| 	"github.com/labstack/gommon/log"
 | |
| )
 | |
| 
 | |
| // TemplateRegistry is a custom html/template renderer for Echo framework
 | |
| type TemplateRegistry struct {
 | |
| 	templates map[string]*template.Template
 | |
| }
 | |
| 
 | |
| // Render e.Renderer interface
 | |
| func (t *TemplateRegistry) Render(w io.Writer, name string, data interface{}, c echo.Context) error {
 | |
| 	tmpl, ok := t.templates[name]
 | |
| 	if !ok {
 | |
| 		err := errors.New("Template not found -> " + name)
 | |
| 		return err
 | |
| 	}
 | |
| 	return tmpl.ExecuteTemplate(w, "base.html", data)
 | |
| }
 | |
| 
 | |
| // New function
 | |
| func New() *echo.Echo {
 | |
| 	e := echo.New()
 | |
| 	templates := make(map[string]*template.Template)
 | |
| 	templates["home.html"] = template.Must(template.ParseFiles("templates/home.html", "templates/base.html"))
 | |
| 
 | |
| 	e.Logger.SetLevel(log.DEBUG)
 | |
| 	e.Pre(middleware.RemoveTrailingSlash())
 | |
| 	e.Use(middleware.Logger())
 | |
| 	e.Use(middleware.CORSWithConfig(middleware.CORSConfig{
 | |
| 		AllowOrigins: []string{"*"},
 | |
| 		AllowHeaders: []string{echo.HeaderOrigin, echo.HeaderContentType, echo.HeaderAccept, echo.HeaderAuthorization},
 | |
| 		AllowMethods: []string{echo.GET, echo.HEAD, echo.PUT, echo.PATCH, echo.POST, echo.DELETE},
 | |
| 	}))
 | |
| 	e.Validator = NewValidator()
 | |
| 	e.Static("/static", "assets")
 | |
| 	e.Renderer = &TemplateRegistry{
 | |
| 		templates: templates,
 | |
| 	}
 | |
| 
 | |
| 	return e
 | |
| }
 |