Api
Documentation for Oxygen.jl
Starting the webserver
Oxygen.serve — Function
serve(; middleware::Vector=[], handler=stream_handler, host="127.0.0.1", port=8080, async=false, parallel=false, serialize=true, catch_errors=true, docs=true, metrics=true, show_errors=true, show_banner=true, docs_path="/docs", schema_path="/schema", external_url=nothing, revise, kwargs...)Start the webserver with your own custom request handler
sourceOxygen.serveparallel — Function
serveparallel(; middleware::Vector=[], handler=stream_handler, host="127.0.0.1", port=8080, serialize=true, async=false, catch_errors=true, docs=true, metrics=true, kwargs...)sourceRouting
Oxygen.@get — Macro
@get(path::String, func::Function)Used to register a function to a specific endpoint to handle GET requests
sourceOxygen.@post — Macro
@post(path::String, func::Function)Used to register a function to a specific endpoint to handle POST requests
sourceOxygen.@put — Macro
@put(path::String, func::Function)Used to register a function to a specific endpoint to handle PUT requests
sourceOxygen.@patch — Macro
@patch(path::String, func::Function)Used to register a function to a specific endpoint to handle PATCH requests
sourceOxygen.@delete — Macro
@delete(path::String, func::Function)Used to register a function to a specific endpoint to handle DELETE requests
sourceOxygen.@route — Macro
@route(methods::Array{String}, path::String, func::Function)Used to register a function to a specific endpoint to handle mulitiple request types
sourceMissing docstring for patch(path, func). Check Documenter's build log for details.
Missing docstring for delete(path, func). Check Documenter's build log for details.
Missing docstring for route(methods, path, func). Check Documenter's build log for details.
Mounting Files
Oxygen.@staticfiles — Macro
@staticfiles(folder::String, mountdir::String, headers::Vector{Pair{String,String}}=[])Mount all files inside the /static folder (or user defined mount point)
sourceOxygen.@dynamicfiles — Macro
@dynamicfiles(folder::String, mountdir::String, headers::Vector{Pair{String,String}}=[])Mount all files inside the /static folder (or user defined mount point), but files are re-read on each request
sourceOxygen.staticfiles — Function
staticfiles(folder::String, mountdir::String; headers::Vector{Pair{String,String}}=[], loadfile::Union{Function,Nothing}=nothing)Mount all files inside the /static folder (or user defined mount point). The headers array will get applied to all mounted files
Oxygen.dynamicfiles — Function
dynamicfiles(folder::String, mountdir::String; headers::Vector{Pair{String,String}}=[], loadfile::Union{Function,Nothing}=nothing)Mount all files inside the /static folder (or user defined mount point), but files are re-read on each request. The headers array will get applied to all mounted files
Autogenerated Docs
Oxygen.configdocs — Function
configdocs(docspath::String = "/docs", schemapath::String = "/schema")Configure the default docs and schema endpoints
sourceOxygen.mergeschema — Function
Oxygen.setschema — Function
Oxygen.getschema — Function
Helper functions
Oxygen.Core.Util.formdata — Function
Oxygen.Core.Util.html — Function
html(content::String; status::Int, headers::Vector{Pair}) :: HTTP.ResponseA convenience function to return a String that should be interpreted as HTML
sourceOxygen.Core.Util.text — Function
text(content::String; status::Int, headers::Vector{Pair}) :: HTTP.ResponseA convenience function to return a String that should be interpreted as plain text
sourceOxygen.Core.Util.file — Function
file(filepath::String; loadfile=nothing, status = 200, headers = []) :: HTTP.ResponseReads a file and returns a HTTP.Response. The file is read as binary. If the file does not exist, an ArgumentError is thrown. The MIME type and the size of the file are added to the headers.
Arguments
filepath: The path to the file to be read.loadfile: An optional function to load the file. If not provided, the file is read using theopenfunction.status: The HTTP status code to be used in the response. Defaults to 200.headers: Any additional headers to be included in the response. Defaults to an empty array.
Returns
- A HTTP response.
Oxygen.Core.Util.xml — Function
xml(content::String; status::Int, headers::Vector{Pair}) :: HTTP.ResponseA convenience function to return a String that should be interpreted as XML
sourceOxygen.Core.Util.js — Function
js(content::String; status::Int, headers::Vector{Pair}) :: HTTP.ResponseA convenience function to return a String that should be interpreted as JavaScript
sourceOxygen.Core.Util.json — Function
json(request::HTTP.Request; keyword_arguments...)Read the body of a HTTP.Request as JSON with additional arguments for the read/serializer.
sourcejson(request::HTTP.Request, class_type; keyword_arguments...)Read the body of a HTTP.Request as JSON with additional arguments for the read/serializer into a custom struct.
sourcejson(response::HTTP.Response; keyword_arguments)Read the body of a HTTP.Response as JSON with additional keyword arguments
sourcejson(response::HTTP.Response, class_type; keyword_arguments)Read the body of a HTTP.Response as JSON with additional keyword arguments and serialize it into a custom struct
sourcejson(content::Any; status::Int, headers::Vector{Pair}) :: HTTP.ResponseA convenience function to return a String that should be interpreted as JSON
sourcejson(content::Vector{UInt8}; status::Int, headers::Vector{Pair}) :: HTTP.ResponseA helper function that can be passed binary data that should be interpreted as JSON. No conversion is done on the content since it's already in binary format.
sourceOxygen.Core.Util.css — Function
css(content::String; status::Int, headers::Vector{Pair}) :: HTTP.ResponseA convenience function to return a String that should be interpreted as CSS
sourceOxygen.Core.Util.binary — Function
binary(content::Vector{UInt8}; status::Int, headers::Vector{Pair}) :: HTTP.ResponseA convenience function to return a Vector of UInt8 that should be interpreted as binary data
sourceRepeat Tasks & Cron Scheduling
Oxygen.@cron — Macro
@cron(expression::String, func::Function)Registers a function with a cron expression. This will extract either the function name or the random Id julia assigns to each lambda function.
source@cron(expression::String, name::String, func::Function)This variation provides way manually "name" a registered function. This information is used by the server on startup to log out all cron jobs.
sourceOxygen.starttasks — Function
Oxygen.stoptasks — Function
Oxygen.cleartasks — Function
Oxygen.startcronjobs — Function
startcronjobs()Start all the cron cronjobs within their own async task. Each individual task will loop conintually and sleep untill the next time it's suppost to
sourceOxygen.stopcronjobs — Function
stopcronjobs()Stop each background task by toggling a global reference that all cron jobs reference
sourceOxygen.clearcronjobs — Function
Clears all cron job defintions
sourceExtra's
Oxygen.router — Function
Oxygen.internalrequest — Function
internalrequest(req::HTTP.Request; middleware::Vector=[], serialize::Bool=true, catch_errors::Bool=true)Directly call one of our other endpoints registered with the router, using your own middleware and bypassing any globally defined middleware
source