Added documentation to controller.

This commit is contained in:
mikestefanello 2021-12-19 10:03:42 -05:00
parent a1a54a7b7d
commit 3ad6a5f87f

View File

@ -2,6 +2,7 @@ package controller
import (
"bytes"
"errors"
"fmt"
"html/template"
"net/http"
@ -37,37 +38,48 @@ var (
templatePath = getTemplatesDirectoryPath()
)
// Controller provides base functionality and dependencies to routes.
// The proposed pattern is to embed a Controller in each individual route struct and to use
// the router to inject the container so your routes have access to the services within the container
type Controller struct {
// Container stores a services container which contains dependencies
Container *services.Container
}
// NewController creates a new Controller
func NewController(c *services.Container) Controller {
return Controller{
Container: c,
}
}
// TODO: Audit error handling (ie NewHTTPError)
// RenderPage renders a Page as an HTTP response
func (t *Controller) RenderPage(c echo.Context, p Page) error {
// Page name is required
if p.Name == "" {
c.Logger().Error("page render failed due to missing name")
return echo.NewHTTPError(http.StatusInternalServerError, "Internal server error")
}
// Use the app name in configuration if a value was not set
if p.AppName == "" {
p.AppName = t.Container.Config.App.Name
}
// Parse the templates in the page and store them in a cache, if not yet done
if err := t.parsePageTemplates(p); err != nil {
return err
c.Logger().Errorf("failed to parse templates: %v", err)
return echo.NewHTTPError(http.StatusInternalServerError, "Internal server error")
}
// Execute the parsed templates to render the page
buf, err := t.executeTemplates(c, p)
if err != nil {
return err
c.Logger().Errorf("failed to execute templates: %v", err)
return echo.NewHTTPError(http.StatusInternalServerError, "Internal server error")
}
// Cache this page, if caching was enabled
t.cachePage(c, p, buf)
// Set any headers
@ -78,15 +90,19 @@ func (t *Controller) RenderPage(c echo.Context, p Page) error {
return c.HTMLBlob(p.StatusCode, buf.Bytes())
}
// cachePage caches the HTML for a given Page if the Page has caching enabled
func (t *Controller) cachePage(c echo.Context, p Page, html *bytes.Buffer) {
if !p.Cache.Enabled {
return
}
// If no expiration time was provided, default to the configuration value
if p.Cache.Expiration == 0 {
p.Cache.Expiration = t.Container.Config.Cache.Expiration.Page
}
// The request URL is used as the cache key so the middleware can serve the
// cached page on matching requests
key := c.Request().URL.String()
opts := &store.Options{
Expiration: p.Cache.Expiration,
@ -98,6 +114,7 @@ func (t *Controller) cachePage(c echo.Context, p Page, html *bytes.Buffer) {
Headers: p.Headers,
StatusCode: p.StatusCode,
}
err := marshaler.New(t.Container.Cache).Set(c.Request().Context(), key, cp, opts)
if err != nil {
c.Logger().Errorf("failed to cache page: %v", err)
@ -107,10 +124,18 @@ func (t *Controller) cachePage(c echo.Context, p Page, html *bytes.Buffer) {
c.Logger().Infof("cached page")
}
// parsePageTemplates parses the templates for the given Page and caches them to avoid duplicate operations
// If the configuration indicates that the environment is local, the cache is bypassed for template changes
// can be seen without having to restart the application.
// As mentioned in the documentation for the Page struct, the templates used for the page will be:
// 1. The layout/based template specified in Page.Layout
// 2. The content template specified in Page.Name
// 3. All templates within the components directory
func (t *Controller) parsePageTemplates(p Page) error {
// Check if the template has not yet been parsed or if the app environment is local, so that templates reflect
// changes without having the restart the server
if _, ok := templates.Load(p.Name); !ok || t.Container.Config.App.Environment == config.EnvLocal {
// Parse the Layout and Name templates
parsed, err :=
template.New(p.Layout+config.TemplateExt).
Funcs(funcMap).
@ -123,6 +148,7 @@ func (t *Controller) parsePageTemplates(p Page) error {
return err
}
// Parse all templates within the components directory
parsed, err = parsed.ParseGlob(fmt.Sprintf("%s/components/*%s", templatePath, config.TemplateExt))
if err != nil {
@ -136,11 +162,11 @@ func (t *Controller) parsePageTemplates(p Page) error {
return nil
}
// executeTemplates executes the cached templates belonging to Page and renders the Page within them
func (t *Controller) executeTemplates(c echo.Context, p Page) (*bytes.Buffer, error) {
tmpl, ok := templates.Load(p.Name)
if !ok {
c.Logger().Error("uncached page template requested")
return nil, echo.NewHTTPError(http.StatusInternalServerError, "Internal server error")
return nil, errors.New("uncached page template requested")
}
buf := new(bytes.Buffer)
@ -152,10 +178,19 @@ func (t *Controller) executeTemplates(c echo.Context, p Page) (*bytes.Buffer, er
return buf, nil
}
// Redirect redirects to a given route name with optional route parameters
func (t *Controller) Redirect(c echo.Context, route string, routeParams ...interface{}) error {
return c.Redirect(http.StatusFound, c.Echo().Reverse(route, routeParams))
}
// SetValidationErrorMessages sets error flash messages for validation failures of a given struct
// and attempts to provide more user-friendly wording.
// The error should result from the validator module and the data should be the struct that failed
// validation.
// This method supports including a struct tag of "labeL" on each field which will be the name
// of the field used in the error messages, for example:
// - FirstName string `form:"first-name" validate:"required" label:"First name"`
// Only a few validator tags are supported below. Expand them as needed.
func (t *Controller) SetValidationErrorMessages(c echo.Context, err error, data interface{}) {
for _, ve := range err.(validator.ValidationErrors) {
var message string