templates: Clarify include args docs, add .ClientIP (#5898)

This commit is contained in:
Francis Lavoie 2023-10-15 20:58:46 -04:00 committed by GitHub
parent 7984e6f6fd
commit 0900844c81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 46 additions and 21 deletions

View File

@ -46,7 +46,8 @@ func init() {
// //
// ##### `.Args` // ##### `.Args`
// //
// A slice of arguments passed to this page/context, for example as the result of a `include`. // A slice of arguments passed to this page/context, for example
// as the result of a [`include`](#include).
// //
// ``` // ```
// {{index .Args 0}} // first argument // {{index .Args 0}} // first argument
@ -103,8 +104,8 @@ func init() {
// Reads and returns the contents of another file, and parses it // Reads and returns the contents of another file, and parses it
// as a template, adding any template definitions to the template // as a template, adding any template definitions to the template
// stack. If there are no definitions, the filepath will be the // stack. If there are no definitions, the filepath will be the
// definition name. Any {{ define }} blocks will be accessible by // definition name. Any `{{ define }}` blocks will be accessible by
// {{ template }} or {{ block }}. Imports must happen before the // `{{ template }}` or `{{ block }}`. Imports must happen before the
// template or block action is called. Note that the contents are // template or block action is called. Note that the contents are
// NOT escaped, so you should only import trusted template files. // NOT escaped, so you should only import trusted template files.
// //
@ -125,12 +126,13 @@ func init() {
// //
// Includes the contents of another file, rendering it in-place. // Includes the contents of another file, rendering it in-place.
// Optionally can pass key-value pairs as arguments to be accessed // Optionally can pass key-value pairs as arguments to be accessed
// by the included file. Note that the contents are NOT escaped, // by the included file. Use [`.Args N`](#args) to access the N-th
// so you should only include trusted template files. // argument, 0-indexed. Note that the contents are NOT escaped, so
// you should only include trusted template files.
// //
// ``` // ```
// {{include "path/to/file.html"}} // no arguments // {{include "path/to/file.html"}} // no arguments
// {{include "path/to/file.html" "arg1" 2 "value 3"}} // with arguments // {{include "path/to/file.html" "arg0" 1 "value 2"}} // with arguments
// ``` // ```
// //
// ##### `readFile` // ##### `readFile`
@ -145,7 +147,8 @@ func init() {
// //
// ##### `listFiles` // ##### `listFiles`
// //
// Returns a list of the files in the given directory, which is relative to the template context's file root. // Returns a list of the files in the given directory, which is relative
// to the template context's file root.
// //
// ``` // ```
// {{listFiles "/mydir"}} // {{listFiles "/mydir"}}
@ -165,12 +168,21 @@ func init() {
// //
// ##### `.RemoteIP` // ##### `.RemoteIP`
// //
// Returns the client's IP address. // Returns the connection's IP address.
// //
// ``` // ```
// {{.RemoteIP}} // {{.RemoteIP}}
// ``` // ```
// //
// ##### `.ClientIP`
//
// Returns the real client's IP address, if `trusted_proxies` was configured,
// otherwise returns the connection's IP address.
//
// ```
// {{.ClientIP}}
// ```
//
// ##### `.Req` // ##### `.Req`
// //
// Accesses the current HTTP request, which has various fields, including: // Accesses the current HTTP request, which has various fields, including:
@ -186,7 +198,8 @@ func init() {
// //
// ##### `.OriginalReq` // ##### `.OriginalReq`
// //
// Like .Req, except it accesses the original HTTP request before rewrites or other internal modifications. // Like [`.Req`](#req), except it accesses the original HTTP
// request before rewrites or other internal modifications.
// //
// ##### `.RespHeader.Add` // ##### `.RespHeader.Add`
// //
@ -222,11 +235,13 @@ func init() {
// //
// ##### `splitFrontMatter` // ##### `splitFrontMatter`
// //
// Splits front matter out from the body. Front matter is metadata that appears at the very beginning of a file or string. Front matter can be in YAML, TOML, or JSON formats: // Splits front matter out from the body. Front matter is metadata that
// appears at the very beginning of a file or string. Front matter can
// be in YAML, TOML, or JSON formats:
// //
// **TOML** front matter starts and ends with `+++`: // **TOML** front matter starts and ends with `+++`:
// //
// ``` // ```toml
// +++ // +++
// template = "blog" // template = "blog"
// title = "Blog Homepage" // title = "Blog Homepage"
@ -236,7 +251,7 @@ func init() {
// //
// **YAML** is surrounded by `---`: // **YAML** is surrounded by `---`:
// //
// ``` // ```yaml
// --- // ---
// template: blog // template: blog
// title: Blog Homepage // title: Blog Homepage
@ -246,14 +261,12 @@ func init() {
// //
// **JSON** is simply `{` and `}`: // **JSON** is simply `{` and `}`:
// //
// ``` // ```json
// // {
// { // "template": "blog",
// "template": "blog", // "title": "Blog Homepage",
// "title": "Blog Homepage", // "sitename": "A Caddy site"
// "sitename": "A Caddy site" // }
// }
//
// ``` // ```
// //
// The resulting front matter will be made available like so: // The resulting front matter will be made available like so:

View File

@ -265,7 +265,7 @@ func (c TemplateContext) Cookie(name string) string {
return "" return ""
} }
// RemoteIP gets the IP address of the client making the request. // RemoteIP gets the IP address of the connection's remote IP.
func (c TemplateContext) RemoteIP() string { func (c TemplateContext) RemoteIP() string {
ip, _, err := net.SplitHostPort(c.Req.RemoteAddr) ip, _, err := net.SplitHostPort(c.Req.RemoteAddr)
if err != nil { if err != nil {
@ -274,6 +274,18 @@ func (c TemplateContext) RemoteIP() string {
return ip return ip
} }
// ClientIP gets the IP address of the real client making the request
// if the request is trusted (see trusted_proxies), otherwise returns
// the connection's remote IP.
func (c TemplateContext) ClientIP() string {
address := caddyhttp.GetVar(c.Req.Context(), caddyhttp.ClientIPVarKey).(string)
clientIP, _, err := net.SplitHostPort(address)
if err != nil {
clientIP = address // no port
}
return clientIP
}
// Host returns the hostname portion of the Host header // Host returns the hostname portion of the Host header
// from the HTTP request. // from the HTTP request.
func (c TemplateContext) Host() (string, error) { func (c TemplateContext) Host() (string, error) {