kemal/src/kemal.cr

53 lines
1.4 KiB
Crystal
Raw Normal View History

require "http"
2016-10-01 15:18:28 +00:00
require "multipart"
2015-10-23 19:48:30 +00:00
require "./kemal/*"
require "./kemal/helpers/*"
2014-06-11 23:41:02 +00:00
2016-03-19 13:15:25 +00:00
module Kemal
2016-04-18 18:40:48 +00:00
# The command to run a `Kemal` application.
2016-09-20 23:32:09 +00:00
# The port can be given to `#run` but is optional.
# If not given Kemal will use `Kemal::Config#port`
def self.run(port = nil)
2016-03-19 13:15:25 +00:00
Kemal::CLI.new
config = Kemal.config
config.setup
config.port = port if port
2015-11-16 21:55:02 +00:00
config.server = HTTP::Server.new(config.host_binding, config.port, config.handlers)
2016-09-20 23:32:09 +00:00
{% if !flag?(:without_openssl) %}
config.server.tls = config.ssl
{% end %}
2015-11-19 18:54:58 +00:00
Kemal::Sessions.run_reaper!
unless Kemal.config.error_handlers.has_key?(404)
error 404 do |env|
render_404
end
2016-05-05 19:35:36 +00:00
end
2016-04-18 18:40:48 +00:00
# Test environment doesn't need to have signal trap, built-in images, and logging.
unless config.env == "test"
Signal::INT.trap {
2016-12-03 22:27:26 +00:00
log "Kemal is going to take a rest!\n"
config.server.close
exit
}
2015-11-19 18:54:58 +00:00
# This route serves the built-in images for not_found and exceptions.
get "/__kemal__/:image" do |env|
image = env.params.url["image"]
2016-11-23 17:47:13 +00:00
file_path = File.expand_path("lib/kemal/images/#{image}", Dir.current)
if File.exists? file_path
send_file env, file_path
2016-11-25 19:19:23 +00:00
else
halt env, 404
2016-03-19 13:15:25 +00:00
end
end
2016-03-19 13:15:25 +00:00
2016-12-03 22:27:26 +00:00
log "[#{config.env}] Kemal is ready to lead at #{config.scheme}://#{config.host_binding}:#{config.port}\n"
config.server.listen
end
2015-11-28 10:39:58 +00:00
end
2016-03-19 13:15:25 +00:00
end