2018-10-13 20:16:35 +02:00
|
|
|
# Controller concern to handle foodcoop scope
|
|
|
|
#
|
2019-10-28 21:11:35 +01:00
|
|
|
# Includes a +before_action+ for selecting foodcoop from url.
|
2018-10-13 20:16:35 +02:00
|
|
|
#
|
|
|
|
module Concerns::FoodcoopScope
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2020-11-09 12:22:16 +01:00
|
|
|
prepend_before_action :select_foodcoop
|
2018-10-13 20:16:35 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Set config and database connection for each request
|
|
|
|
# It uses the subdomain to select the appropriate section in the config files
|
|
|
|
# Use this method as a before filter (first filter!) in ApplicationController
|
|
|
|
def select_foodcoop
|
|
|
|
return unless FoodsoftConfig[:multi_coop_install]
|
|
|
|
|
|
|
|
foodcoop = params[:foodcoop]
|
|
|
|
if foodcoop.blank?
|
|
|
|
FoodsoftConfig.select_default_foodcoop
|
|
|
|
redirect_to root_url
|
|
|
|
elsif FoodsoftConfig.allowed_foodcoop? foodcoop
|
|
|
|
FoodsoftConfig.select_foodcoop foodcoop
|
|
|
|
else
|
|
|
|
raise ActionController::RoutingError.new 'Foodcoop Not Found'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Always stay in foodcoop url scope
|
|
|
|
def default_url_options(options = {})
|
2021-03-01 15:27:26 +01:00
|
|
|
super().merge({ foodcoop: FoodsoftConfig.scope })
|
2018-10-13 20:16:35 +02:00
|
|
|
end
|
|
|
|
end
|