require 'erb' require 'pathname' require 'hanami/environment' require 'hanami/utils/string' module Hanami class Welcome def initialize(_app) @root = Pathname.new(__dir__).join('templates').realpath end def call(env) @request_path = env['REQUEST_PATH'] || '' @body = [ERB.new(@root.join('welcome.html.erb').read).result(binding)] [200, {}, @body] end def application_name " #{ app }" if container? end private def container? Environment.new.container? end def application_class Hanami.configuration.apps do |app| return app if @request_path.include?(app.path_prefix) end end def app application_class.app_name end end end