mutable struct WebRenderable
Represents an object that can be rendered on the web as a HTTP Response
Sets redirect headers and prepares the Response
. It accepts 3 parameters: 1 - Label of a Route (to learn more, see the advanced routes section) 2 - Default HTTP 302 Found Status: indicates that the provided resource will be changed to a URL provided 3 - Tuples (key, value) to define the HTTP request header
Example: julia> Genie.Renderer.redirect(:index, 302, Dict("Content-Type" => "application/json; charset=UTF-8"))
HTTP.Messages.Response: HTTP/1.1 302 Moved Temporarily Content-Type: application/json; charset=UTF-8 Location: /index
Redirecting you to /index
hasrequested(content_type::Symbol) :: Bool
Checks wheter or not the requested content type matches content_type
.
Constructs a Response
corresponding to the Content-Type of the request.
view_file_info(path::String, supported_extensions::Vector{String}) :: Tuple{String,String}
Extracts path and extension info about a file
vars_signature() :: String
Collects the names of the view vars in order to create a unique hash/salt to identify compiled views with different vars.
build_is_stale(file_path::String, build_path::String) :: Bool
Checks if the view template has been changed since the last time the template was compiled.
build_module(content::String, path::String, mod_name::String) :: String
Persists compiled Julia view data to file and returns the path
preparebuilds() :: Bool
Sets up the build folder and the build module file for generating the compiled views.
purgebuilds(subfolder = BUILD_NAME) :: Bool
Removes the views builds folders with all the generated views.
set_negotiated_content(req::HTTP.Request, res::HTTP.Response, params::Dict{Symbol,Any})
Configures the request, response, and params response content type based on the request and defaults.
negotiate_content(req::Request, res::Response, params::Params) :: Response
Computes the content-type of the Response
, based on the information in the Request
.