Sha256: 4cb6aec64a7f775d7a70750afa5a15805411134b36a094b344a9747dbf68b49e

Contents?: true

Size: 1.69 KB

Versions: 28

Compression:

Stored size: 1.69 KB

Contents

module Workarea
  module Storefront
    class ErrorsController < Storefront::ApplicationController
      after_action :skip_session

      def not_found
        redirect_url = Navigation::Redirect.find_destination(
          request.env['action_dispatch.original_path']
        )

        if redirect_url.present?
          redirect_to redirect_url, status: :moved_permanently
        else
          render_error_page(404)
        end
      end

      def internal
        # This ensures any exception handling (e.g. Airbrake or Sentry) will see
        # the error in their middleware, and then report on it.
        request.env['rack.exception'] = request.env['action_dispatch.exception']
        render_error_page(500)
      end

      def offline
        content = Content.for('offline')
        @content = ContentViewModel.wrap(content)

        render('workarea/storefront/errors/show')
      end

      private

      def render_error_page(error_status)
        name = Rack::Utils::HTTP_STATUS_CODES[error_status].titleize

        respond_to do |format|
          format.all do
            if !request.format.html?
              head error_status
            elsif content = Content.for(name)
              @content = ContentViewModel.new(content)

              render(
                template: 'workarea/storefront/errors/show',
                status: error_status
              )
            else
              render(
                file: "#{Rails.root}/public/#{error_status}.html",
                layout: nil,
                status: error_status
              )
            end
          end
        end
      end

      def skip_session
        request.session_options[:skip] = true
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
workarea-storefront-3.5.27 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.26 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.25 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.23 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.22 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.21 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.20 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.19 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.18 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.17 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.16 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.15 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.14 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.13 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.12 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.11 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.10 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.9 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.8 app/controllers/workarea/storefront/errors_controller.rb
workarea-storefront-3.5.7 app/controllers/workarea/storefront/errors_controller.rb