Sha256: 04f84a56b8b37b16a0f01a4c8e2c7868a8e32d711eab8e0d5e591a33d35b2920
Contents?: true
Size: 1.12 KB
Versions: 4
Compression:
Stored size: 1.12 KB
Contents
require "padrino-core" require "haml" require "pact_broker/services" require "pact_broker/string_refinements" module PactBroker module UI module Controllers class Base < Padrino::Application using PactBroker::StringRefinements set :root, File.join(File.dirname(__FILE__), "..") set :show_exceptions, ENV["RACK_ENV"] == "development" # The padrino logger logs these for us, but only in production. If this is enabled we get duplicate logging. set :dump_errors, ENV["RACK_ENV"] != "production" set :raise_errors, ENV["RACK_ENV"] == "test" def base_url # Using the X-Forwarded headers in the UI can leave the app vulnerable # https://www.acunetix.com/blog/articles/automated-detection-of-host-header-attacks/ # Either use the explicitly configured base url or an empty string, # rather than request.base_url, which uses the X-Forwarded headers. env["pactbroker.base_url"] || "" end helpers do def ellipsisize(string) string.ellipsisize end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems