53 lines
1.7 KiB
Ruby
53 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
module Controllers::NonprofitHelper
|
|
private
|
|
|
|
def authenticate_nonprofit_user!
|
|
block_with_sign_in 'Please sign in' unless current_nonprofit_user?
|
|
end
|
|
|
|
def authenticate_nonprofit_admin!
|
|
block_with_sign_in 'Please sign in' unless current_nonprofit_admin?
|
|
end
|
|
|
|
def current_nonprofit_user?
|
|
return false if params[:preview]
|
|
return false unless current_nonprofit_without_exception
|
|
|
|
@current_user_role ||= current_role?(%i[nonprofit_admin nonprofit_associate], current_nonprofit_without_exception.id) || current_role?(:super_admin)
|
|
end
|
|
|
|
def current_nonprofit_admin?
|
|
return false if !current_user || current_user.roles.empty?
|
|
|
|
@current_admin_role ||= current_role?(:nonprofit_admin, current_nonprofit.id) || current_role?(:super_admin)
|
|
end
|
|
|
|
def current_nonprofit
|
|
@nonprofit = current_nonprofit_without_exception
|
|
raise ActionController::RoutingError, 'Nonprofit not found' if @nonprofit.nil?
|
|
|
|
@nonprofit
|
|
end
|
|
|
|
def current_nonprofit_without_exception
|
|
key = "current_nonprofit_#{current_user_id}_params_#{[params[:state_code], params[:city], params[:name], params[:nonprofit_id], params[:id]].join('_')}"
|
|
FetchNonprofit.with_params params, administered_nonprofit
|
|
end
|
|
|
|
def donation_stub
|
|
return current_nonprofit_without_exception.donations.last unless current_nonprofit_without_exception.donations.empty?
|
|
|
|
OpenStruct.new(
|
|
amount: 2000,
|
|
created_at: Time.zone.now,
|
|
nonprofit: current_nonprofit_without_exception,
|
|
campaign: nil,
|
|
designation: "Donor's designation here",
|
|
dedication: "Donor's dedication here",
|
|
id: 1
|
|
)
|
|
end
|
|
end
|