udemy-go-web-1/pkg/handlers/handlers.go

50 lines
1.2 KiB
Go
Raw Normal View History

2024-06-26 20:06:32 +00:00
package handlers
2024-06-26 19:56:58 +00:00
import (
"go-udemy-web-1/pkg/config"
"go-udemy-web-1/pkg/models"
2024-06-26 20:06:32 +00:00
"go-udemy-web-1/pkg/render"
2024-06-26 19:56:58 +00:00
"net/http"
)
// Repo the repository used by the handlers
var Repo *Repository
// Repository is the repository type
type Repository struct {
App *config.AppConfig
}
// NewRepo creates a new repository
func NewRepo(a *config.AppConfig) *Repository {
return &Repository{
App: a,
}
}
// NewHandlers sets the repository for the handlers
func NewHandlers(r *Repository) {
Repo = r
}
2024-06-26 19:56:58 +00:00
// Home is the about page handler
func (m *Repository) Home(w http.ResponseWriter, r *http.Request) {
2024-06-28 13:41:25 +00:00
remoteIP := r.RemoteAddr
m.App.Session.Put(r.Context(), "remote_ip", remoteIP)
render.RenderTemplate(w, "home.page.tmpl", &models.TemplateData{})
2024-06-26 19:56:58 +00:00
}
// About is the about page handler
func (m *Repository) About(w http.ResponseWriter, r *http.Request) {
// perform some logic
stringMap := make(map[string]string)
stringMap["test"] = "Hello world!"
2024-06-28 13:41:25 +00:00
remoteIP := m.App.Session.GetString(r.Context(), "remote_ip")
stringMap["remote_ip"] = remoteIP
// send the data to the template
render.RenderTemplate(w, "about.page.tmpl", &models.TemplateData{StringMap: stringMap})
2024-06-26 19:56:58 +00:00
}