kemal/src/kemal/ext/context.cr

64 lines
1.5 KiB
Crystal
Raw Normal View History

2017-10-06 11:53:53 +00:00
# `HTTP::Server::Context` is the class which holds `HTTP::Request` and
# `HTTP::Server::Response` alongside with information such as request params,
# request/response content_type, session data and alike.
2016-07-17 11:26:22 +00:00
#
# Instances of this class are passed to an `HTTP::Server` handler.
2016-01-24 10:22:25 +00:00
class HTTP::Server
class Context
# :nodoc:
2017-05-08 14:33:19 +00:00
STORE_MAPPINGS = [Nil, String, Int32, Int64, Float64, Bool]
macro finished
alias StoreTypes = Union({{ *STORE_MAPPINGS }})
@store = {} of String => StoreTypes
end
2016-07-14 18:56:01 +00:00
2016-01-24 10:22:25 +00:00
def params
@params ||= Kemal::ParamParser.new(@request, route_lookup.params)
2016-01-24 10:22:25 +00:00
end
2016-01-24 10:52:41 +00:00
def redirect(url : String, status_code : Int32 = 302, *, body : String? = nil, close : Bool = true)
2016-01-24 10:52:41 +00:00
@response.headers.add "Location", url
@response.status_code = status_code
@response.print(body) if body
@response.close if close
2016-01-24 10:52:41 +00:00
end
def route
2017-09-05 09:03:37 +00:00
route_lookup.payload
end
def websocket
ws_route_lookup.payload
end
def route_lookup
2018-06-30 12:12:13 +00:00
Kemal::RouteHandler::INSTANCE.lookup_route(@request.method.as(String), @request.path)
end
2018-08-13 16:21:18 +00:00
def route_found?
route_lookup.found?
end
def ws_route_lookup
Kemal::WebSocketHandler::INSTANCE.lookup_ws_route(@request.path)
end
2018-08-13 16:21:18 +00:00
def ws_route_found?
ws_route_lookup.found?
end
2017-08-24 20:32:43 +00:00
def get(name : String)
2016-07-14 18:56:01 +00:00
@store[name]
end
2017-08-24 20:32:43 +00:00
def set(name : String, value : StoreTypes)
2016-07-14 18:56:01 +00:00
@store[name] = value
end
def get?(name : String)
@store[name]?
end
end
end