Sha256: 2310594c5f10e19add75a6ff2f651751a0efd041ed691a2d6559d2790f462027

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

class SimplificatorInfrastructure::ErrorsController < ActionController::Base
  around_filter :with_locale

  layout 'simplificator_infrastructure/errors'
  helper_method :error_summary


  def render_error
    force_html_type
    render template, status: error_summary.status_code
  end

  private

  def template
    if specific_error_template_exists?
      specific_template
    else
      generic_template
    end
  end

  def specific_template
    "errors/#{error_summary.status_code}"
  end

  def generic_template
    'errors/generic_error'
  end

  def specific_error_template_exists?
    lookup_context.template_exists?(error_summary.status_code, "errors", false)
  end

  def error_summary
    @error_summary ||= begin
      ::SimplificatorInfrastructure::ErrorSummary.new(env)
    end
  end

  # sets the locale and resets afterwards for I18n.t to work in error templates
  def with_locale
    I18n.with_locale(error_summary.locale) do
      yield
    end
  end

  # This allows to find the html error templates even though something non-html was requested.
  # Useful if an error occurs in PDF rendering or JSON API request.
  def force_html_type
    request.format = MIME::Types.type_for('html').first
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simplificator_infrastructure-0.0.6 app/controllers/simplificator_infrastructure/errors_controller.rb