Sha256: f9deadedd2d56baa44b2c88746cbcda5a205fa2e80b28ed8c2e2cb254838596c
Contents?: true
Size: 1.75 KB
Versions: 5
Compression:
Stored size: 1.75 KB
Contents
module Scrivito class CmsDispatchController < ActionController::Metal include ActionController::Redirecting include Rails.application.routes.url_helpers include Scrivito::RoutingHelper def process(action) CmsEnv.new(env).load if !obj_not_found? && action == 'legacy' if Scrivito::Configuration.legacy_routing action = 'index' else redirect_to scrivito_path(loaded_obj) return self.response end end controller = target_controller(env) env["action_dispatch.request.path_parameters"]["controller"] = controller.controller_path if !obj_not_found? && action == 'index' action = loaded_obj.controller_action_name end env["action_dispatch.request.path_parameters"]["action"] = action self.response = controller.action(action).call(env) end private def main_app Rails.application.routes.url_helpers end def target_controller(env) return default_controller if obj_not_found? controller = "#{loaded_obj.controller_name}Controller".constantize if controller.respond_to?(:use_for_obj_dispatch?) && controller.use_for_obj_dispatch? controller else default_controller end rescue NameError default_controller end def loaded_obj env[CmsEnv::OBJ_ENV_KEY] end def obj_not_found? loaded_obj.is_a?(StandardError) end def default_controller CmsController rescue NameError => e if e.message.include?('CmsController') raise 'Your application does not define the "CmsController" needed for Scrivito. '\ 'Did you forget to run "rails generate scrivito:install"?' else raise end end end end
Version data entries
5 entries across 5 versions & 1 rubygems