1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- class ApplicationController < ActionController::Base
- protect_from_forgery
- before_action :authenticate_user!
- before_action :configure_permitted_parameters, if: :devise_controller?
- helper :all
- rescue_from 'ActiveRecord::SubclassNotFound' do
- @undefined_agent_types = current_user.undefined_agent_types
- render template: 'application/undefined_agents'
- end
- def redirect_back(fallback_path, **args)
- super(fallback_location: fallback_path, **args)
- end
- protected
- def configure_permitted_parameters
- devise_parameter_sanitizer.permit(:sign_up, keys: [:username, :email, :password, :password_confirmation, :remember_me, :invitation_code])
- devise_parameter_sanitizer.permit(:sign_in, keys: [:login, :username, :email, :password, :remember_me])
- devise_parameter_sanitizer.permit(:account_update, keys: [:username, :email, :password, :password_confirmation, :current_password])
- end
- def authenticate_admin!
- redirect_to(root_path, alert: 'Admin access required to view that page.') unless current_user && current_user.admin?
- end
- def upgrade_warning
- return unless current_user
- twitter_oauth_check
- basecamp_auth_check
- end
- def filtered_agent_return_link(options = {})
- case ret = params[:return].presence || options[:return]
- when "show"
- if @agent && !@agent.destroyed?
- agent_path(@agent)
- else
- agents_path
- end
- when /\A
- ret
- end
- end
- helper_method :filtered_agent_return_link
- private
- def twitter_oauth_check
- unless Devise.omniauth_providers.include?(:twitter)
- if @twitter_agent = current_user.agents.where("type like 'Agents::Twitter%'").first
- @twitter_oauth_key = @twitter_agent.options['consumer_key'].presence || @twitter_agent.credential('twitter_consumer_key')
- @twitter_oauth_secret = @twitter_agent.options['consumer_secret'].presence || @twitter_agent.credential('twitter_consumer_secret')
- end
- end
- end
- def basecamp_auth_check
- unless Devise.omniauth_providers.include?(:'37signals')
- @basecamp_agent = current_user.agents.where(type: 'Agents::BasecampAgent').first
- end
- end
- def agent_params
- return {} unless params[:agent]
- @agent_params ||= begin
- options = params[:agent].delete(:options) if params[:agent][:options].present?
- params[:agent].permit(:memory, :name, :type, :schedule, :disabled, :keep_events_for, :propagate_immediately, :drop_pending_events, :service_id,
- source_ids: [], receiver_ids: [], scenario_ids: [], controller_ids: [], control_target_ids: []).tap do |agent_params|
- agent_params[:options] = options if options
- agent_params[:options].permit! if agent_params[:options].respond_to?(:permit!)
- end
- end
- end
- end
|