mirror of
https://github.com/1f349/lavender.git
synced 2025-01-21 06:06:30 +00:00
49 lines
825 B
Go
49 lines
825 B
Go
package authContext
|
|
|
|
import (
|
|
"context"
|
|
"github.com/1f349/lavender/database"
|
|
"net/http"
|
|
)
|
|
|
|
func NewTemplateContext(req *http.Request, user *database.User) TemplateContext {
|
|
return &BaseTemplateContext{
|
|
req: req,
|
|
user: user,
|
|
}
|
|
}
|
|
|
|
type TemplateContext interface {
|
|
Context() context.Context
|
|
Request() *http.Request
|
|
User() *database.User
|
|
Render(data any)
|
|
Data() any
|
|
}
|
|
|
|
type BaseTemplateContext struct {
|
|
req *http.Request
|
|
user *database.User
|
|
data any
|
|
}
|
|
|
|
func (t *BaseTemplateContext) Context() context.Context {
|
|
return t.req.Context()
|
|
}
|
|
|
|
func (t *BaseTemplateContext) Request() *http.Request {
|
|
return t.req
|
|
}
|
|
|
|
func (t *BaseTemplateContext) User() *database.User {
|
|
return t.user
|
|
}
|
|
|
|
func (t *BaseTemplateContext) Render(data any) {
|
|
t.data = data
|
|
}
|
|
|
|
func (t *BaseTemplateContext) Data() any {
|
|
return t.data
|
|
}
|