Documentation ¶
Overview ¶
Content managed by Project Forge, see [projectforge.md] for details.
Content managed by Project Forge, see [projectforge.md] for details.
Content managed by Project Forge, see [projectforge.md] for details.
Content managed by Project Forge, see [projectforge.md] for details.
Content managed by Project Forge, see [projectforge.md] for details.
Content managed by Project Forge, see [projectforge.md] for details.
Content managed by Project Forge, see [projectforge.md] for details.
Content managed by Project Forge, see [projectforge.md] for details.
Content managed by Project Forge, see [projectforge.md] for details.
Content managed by Project Forge, see [projectforge.md] for details.
Index ¶
- Constants
- Variables
- func CleanID(key string, id string) string
- func FormatCleanMarkup(s string, icon string) (string, string, error)
- func FormatFilename(content string, filename string) (string, error)
- func FormatJSON(v any) (string, error)
- func FormatLang(content string, lang string) (string, error)
- func FormatLangIgnoreErrors(content string, lang string) string
- func FormatMarkdown(s string) (string, error)
- func FormatString(content string, l chroma.Lexer) (string, error)
- func GetContentType(rc *fasthttp.RequestCtx) string
- func IsContentTypeJSON(c string) bool
- func IsContentTypeXML(c string) bool
- func IsContentTypeYAML(c string) bool
- func ParamSetFromRequest(rc *fasthttp.RequestCtx) filter.ParamSet
- func ParseForm(rc *fasthttp.RequestCtx) (util.ValueMap, error)
- func ParseFormAsChanges(rc *fasthttp.RequestCtx) (util.ValueMap, error)
- func QueryStringBool(rc *fasthttp.RequestCtx, key string) bool
- func RCRequiredArray(rc *fasthttp.RequestCtx, key string) ([]string, error)
- func RCRequiredBool(rc *fasthttp.RequestCtx, key string) (bool, error)
- func RCRequiredInt(rc *fasthttp.RequestCtx, key string) (int, error)
- func RCRequiredString(rc *fasthttp.RequestCtx, key string, allowEmpty bool) (string, error)
- func RCRequiredUUID(rc *fasthttp.RequestCtx, key string) (*uuid.UUID, error)
- func RequestCtxToMap(rc *fasthttp.RequestCtx, data any) util.ValueMap
- func RespondDebug(rc *fasthttp.RequestCtx, filename string, body any) (string, error)
- func RespondJSON(rc *fasthttp.RequestCtx, filename string, body any) (string, error)
- func RespondMIME(filename string, mime string, ext string, ba []byte, rc *fasthttp.RequestCtx) (string, error)
- func RespondXML(rc *fasthttp.RequestCtx, filename string, body any) (string, error)
- func RespondYAML(rc *fasthttp.RequestCtx, filename string, body any) (string, error)
- func WriteCORS(rc *fasthttp.RequestCtx)
- type Arg
- type ArgResults
- type Args
- type Location
- type Locations
- type PageState
- func (p *PageState) AddIcon(keys ...string)
- func (p *PageState) AuthString() string
- func (p *PageState) ClassDecl() string
- func (p *PageState) Clean(_ *fasthttp.RequestCtx, as *app.State) error
- func (p *PageState) Close()
- func (p *PageState) TitleString() string
- func (p *PageState) Username() string
- type WorkspaceRequest
- type XMLResponse
Constants ¶
View Source
const ( DefaultSearchPath = "/search" DefaultProfilePath = "/profile" )
View Source
const (
PageComment = "Thanks for viewing the source; we tried to make it pretty for you"
)
Variables ¶
View Source
var ( AllowedRequestHeaders = "*" AllowedResponseHeaders = "*" )
Functions ¶
func FormatCleanMarkup ¶ added in v0.2.12
func FormatJSON ¶
func FormatLangIgnoreErrors ¶
func FormatMarkdown ¶ added in v0.2.12
func GetContentType ¶
func GetContentType(rc *fasthttp.RequestCtx) string
func IsContentTypeJSON ¶
func IsContentTypeXML ¶
func IsContentTypeYAML ¶
func ParamSetFromRequest ¶
func ParamSetFromRequest(rc *fasthttp.RequestCtx) filter.ParamSet
func ParseFormAsChanges ¶
func ParseFormAsChanges(rc *fasthttp.RequestCtx) (util.ValueMap, error)
func QueryStringBool ¶ added in v0.2.5
func QueryStringBool(rc *fasthttp.RequestCtx, key string) bool
func RCRequiredArray ¶ added in v0.2.12
func RCRequiredArray(rc *fasthttp.RequestCtx, key string) ([]string, error)
func RCRequiredBool ¶ added in v0.2.5
func RCRequiredBool(rc *fasthttp.RequestCtx, key string) (bool, error)
func RCRequiredInt ¶ added in v0.2.5
func RCRequiredInt(rc *fasthttp.RequestCtx, key string) (int, error)
func RCRequiredString ¶ added in v0.2.5
func RCRequiredUUID ¶ added in v0.2.5
func RequestCtxToMap ¶
func RequestCtxToMap(rc *fasthttp.RequestCtx, data any) util.ValueMap
func RespondDebug ¶
func RespondJSON ¶
func RespondMIME ¶
func RespondXML ¶
func RespondYAML ¶
func WriteCORS ¶
func WriteCORS(rc *fasthttp.RequestCtx)
Types ¶
type ArgResults ¶
type ArgResults struct { Args Args `json:"args"` Values map[string]string `json:"values"` Missing []string `json:"missing,omitempty"` }
func CollectArgs ¶
func CollectArgs(rc *fasthttp.RequestCtx, args Args) *ArgResults
func (*ArgResults) HasMissing ¶ added in v0.2.12
func (a *ArgResults) HasMissing() bool
type PageState ¶
type PageState struct { Title string `json:"title,omitempty"` Description string `json:"description,omitempty"` Method string `json:"method,omitempty"` URI *fasthttp.URI `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"` Accounts user.Accounts `json:"accounts,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"` Logger util.Logger `json:"-"` Context context.Context `json:"-"` //nolint:containedctx // properly closed, never directly used Span *telemetry.Span `json:"-"` }
func LoadPageState ¶ added in v0.2.5
func (*PageState) AuthString ¶ added in v0.2.12
func (*PageState) TitleString ¶
type WorkspaceRequest ¶
type WorkspaceRequest struct { T string `json:"t"` K string `json:"k"` RC *fasthttp.RequestCtx `json:"-"` PS *PageState `json:"-"` Item any `json:"item,omitempty"` Path []string `json:"path,omitempty"` Project *project.Project `json:"-"` Sources source.Sources `json:"-"` Schemata schema.Schemata `json:"-"` Context context.Context `json:"-"` //nolint:containedctx // properly closed, never directly used }
func (*WorkspaceRequest) Clone ¶
func (r *WorkspaceRequest) Clone() *WorkspaceRequest
func (*WorkspaceRequest) Route ¶
func (r *WorkspaceRequest) Route(path ...string) string
type XMLResponse ¶
type XMLResponse struct {
Result any `xml:"result"`
}
Click to show internal directories.
Click to hide internal directories.