Documentation ¶
Overview ¶
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
Index ¶
- Constants
- Variables
- func AddRoute(method string, path string)
- func CleanID(key string, id string) string
- func FormatFilename(content string, filename string) (string, error)
- func FormatJSON(v any) (string, error)
- func FormatLang(content string, lang string) (string, error)
- func FormatMarkdown(s string) (string, error)
- func FormatMarkdownClean(s string, icon string) (string, string, error)
- func FormatString(content string, l chroma.Lexer) (string, error)
- func GetContentType(r *http.Request) string
- func IsContentTypeCSV(c string) bool
- func IsContentTypeDebug(c string) bool
- func IsContentTypeJSON(c string) bool
- func IsContentTypeXML(c string) bool
- func IsContentTypeYAML(c string) bool
- func ParamSetFromRequest(r *http.Request) filter.ParamSet
- func ParseForm(r *http.Request, b []byte) (util.ValueMap, error)
- func ParseFormAsChanges(r *http.Request, b []byte) (util.ValueMap, error)
- func QueryArgsMap(r *http.Request) util.ValueMap
- func QueryStringBool(r *http.Request, key string) bool
- func RCRequiredArray(r *http.Request, key string) ([]string, error)
- func RCRequiredBool(r *http.Request, key string) (bool, error)
- func RCRequiredInt(r *http.Request, key string) (int, error)
- func RCRequiredString(r *http.Request, key string, allowEmpty bool) (string, error)
- func RCRequiredUUID(r *http.Request, key string) (*uuid.UUID, error)
- func RequestCtxToMap(w http.ResponseWriter, r *http.Request, as *app.State, ps *PageState) util.ValueMap
- func RequestHeadersMap(r *http.Request) util.ValueMap
- func RespondCSV(w http.ResponseWriter, filename string, body any) (string, error)
- func RespondDebug(w http.ResponseWriter, r *http.Request, as *app.State, filename string, ...) (string, error)
- func RespondJSON(w http.ResponseWriter, filename string, body any) (string, error)
- func RespondMIME(filename string, mime string, ext string, ba []byte, w http.ResponseWriter) (string, error)
- func RespondXML(w http.ResponseWriter, filename string, body any) (string, error)
- func RespondYAML(w http.ResponseWriter, filename string, body any) (string, error)
- func ResponseHeadersMap(w http.ResponseWriter) util.ValueMap
- func URLAddQuery(u *url.URL, k string, v string)
- func WireRouter(r *mux.Router, notFound http.HandlerFunc, logger util.Logger) (http.Handler, error)
- func WriteCORS(w http.ResponseWriter)
- type Arg
- type ArgResults
- type Args
- type Location
- type Locations
- type PageState
- func (p *PageState) AddIcon(keys ...string)
- func (p *PageState) ClassDecl() string
- func (p *PageState) Clean(_ *http.Request, as *app.State) error
- func (p *PageState) Close()
- func (p *PageState) LogError(msg string, args ...any)
- func (p *PageState) SetTitleAndData(title string, data any)
- func (p *PageState) TitleString() string
- func (p *PageState) Username() string
- type XMLResponse
Constants ¶
const ( HeaderAccessControlAllowCredentials = "Access-Control-Allow-Credentials" HeaderAccessControlAllowHeaders = "Access-Control-Allow-Headers" HeaderAccessControlAllowMethods = "Access-Control-Allow-Methods" HeaderAccessControlAllowOrigin = "Access-Control-Allow-Origin" HeaderAccessControlExposeHeaders = "Access-Control-Expose-Headers" HeaderCacheControl = "Cache-Control" HeaderContentType = "Content-Type" HeaderReferer = "Referer" )
const ( DefaultSearchPath = "/search" DefaultProfilePath = "/profile" )
const (
PageComment = "Thanks for viewing the source; we tried to make it pretty for you"
)
Variables ¶
var ( AllowedRequestHeaders = "*" AllowedResponseHeaders = "*" )
var AppRoutesList = map[string][]string{}
var (
MaxBodySize = int64(1024 * 1024 * 128) // 128MB
)
Functions ¶
func FormatJSON ¶
func FormatMarkdown ¶ added in v0.7.5
func FormatMarkdownClean ¶ added in v1.0.6
func GetContentType ¶
func IsContentTypeCSV ¶ added in v1.1.0
func IsContentTypeDebug ¶ added in v1.1.0
func IsContentTypeJSON ¶
func IsContentTypeXML ¶
func IsContentTypeYAML ¶
func RCRequiredArray ¶ added in v0.6.15
func RCRequiredBool ¶ added in v0.2.38
func RCRequiredString ¶ added in v0.2.38
func RCRequiredUUID ¶ added in v0.2.38
func RequestCtxToMap ¶
func RespondCSV ¶ added in v1.1.0
func RespondDebug ¶
func RespondJSON ¶
func RespondMIME ¶
func RespondXML ¶
func RespondYAML ¶
func ResponseHeadersMap ¶ added in v0.11.6
func ResponseHeadersMap(w http.ResponseWriter) util.ValueMap
func WireRouter ¶ added in v1.2.0
func WriteCORS ¶
func WriteCORS(w http.ResponseWriter)
Types ¶
type ArgResults ¶
type ArgResults struct { Args Args `json:"args"` Values util.ValueMap `json:"values"` Missing []string `json:"missing,omitempty"` }
func CollectArgs ¶
func CollectArgs(r *http.Request, args Args) *ArgResults
func (*ArgResults) HasMissing ¶ added in v0.10.8
func (a *ArgResults) HasMissing() bool
type PageState ¶
type PageState struct { Action string `json:"action,omitempty"` Title string `json:"title,omitempty"` Description string `json:"description,omitempty"` Method string `json:"method,omitempty"` URI *url.URL `json:"-"` Menu menu.Items `json:"menu,omitempty"` Breadcrumbs cmenu.Breadcrumbs `json:"breadcrumbs,omitempty"` Flashes []string `json:"flashes,omitempty"` Session util.ValueMap `json:"-"` Profile *user.Profile `json:"profile,omitempty"` Authed bool `json:"authed,omitempty"` Admin bool `json:"admin,omitempty"` Params filter.ParamSet `json:"params,omitempty"` Icons []string `json:"icons,omitempty"` RootIcon string `json:"rootIcon,omitempty"` RootPath string `json:"rootPath,omitempty"` RootTitle string `json:"rootTitle,omitempty"` SearchPath string `json:"searchPath,omitempty"` ProfilePath string `json:"profilePath,omitempty"` HideMenu bool `json:"hideMenu,omitempty"` ForceRedirect string `json:"forceRedirect,omitempty"` HeaderContent string `json:"headerContent,omitempty"` Browser string `json:"browser,omitempty"` BrowserVersion string `json:"browserVersion,omitempty"` OS string `json:"os,omitempty"` OSVersion string `json:"osVersion,omitempty"` Platform string `json:"platform,omitempty"` Data any `json:"data,omitempty"` Started time.Time `json:"started,omitempty"` RenderElapsed float64 `json:"renderElapsed,omitempty"` RequestBody []byte `json:"-"` Logger util.Logger `json:"-"` Context context.Context `json:"-"` //nolint:containedctx // properly closed, never directly used Span *telemetry.Span `json:"-"` }
func LoadPageState ¶ added in v0.3.15
func (*PageState) SetTitleAndData ¶ added in v1.0.7
func (*PageState) TitleString ¶
type XMLResponse ¶
type XMLResponse struct {
Result any `xml:"result"`
}