application_controller.rb 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. class ApplicationController < ActionController::Base
  2. protect_from_forgery
  3. before_action :authenticate_user!
  4. before_action :configure_permitted_parameters, if: :devise_controller?
  5. helper :all
  6. rescue_from 'ActiveRecord::SubclassNotFound' do
  7. @undefined_agent_types = current_user.undefined_agent_types
  8. render template: 'application/undefined_agents'
  9. end
  10. def redirect_back(fallback_path, *args)
  11. redirect_to :back, *args
  12. rescue ActionController::RedirectBackError
  13. redirect_to fallback_path, *args
  14. end
  15. protected
  16. def configure_permitted_parameters
  17. devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(:username, :email, :password, :password_confirmation, :remember_me, :invitation_code) }
  18. devise_parameter_sanitizer.for(:sign_in) { |u| u.permit(:login, :username, :email, :password, :remember_me) }
  19. devise_parameter_sanitizer.for(:account_update) { |u| u.permit(:username, :email, :password, :password_confirmation, :current_password) }
  20. end
  21. def authenticate_admin!
  22. redirect_to(root_path, alert: 'Admin access required to view that page.') unless current_user && current_user.admin?
  23. end
  24. def upgrade_warning
  25. return unless current_user
  26. twitter_oauth_check
  27. basecamp_auth_check
  28. end
  29. def filtered_agent_return_link(options = {})
  30. case ret = params[:return].presence || options[:return]
  31. when "show"
  32. if @agent && !@agent.destroyed?
  33. agent_path(@agent)
  34. else
  35. agents_path
  36. end
  37. when /\A#{(Regexp::escape scenarios_path)}/, /\A#{(Regexp::escape agents_path)}/, /\A#{(Regexp::escape events_path)}/
  38. ret
  39. end
  40. end
  41. helper_method :filtered_agent_return_link
  42. private
  43. def twitter_oauth_check
  44. unless Devise.omniauth_providers.include?(:twitter)
  45. if @twitter_agent = current_user.agents.where("type like 'Agents::Twitter%'").first
  46. @twitter_oauth_key = @twitter_agent.options['consumer_key'].presence || @twitter_agent.credential('twitter_consumer_key')
  47. @twitter_oauth_secret = @twitter_agent.options['consumer_secret'].presence || @twitter_agent.credential('twitter_consumer_secret')
  48. end
  49. end
  50. end
  51. def basecamp_auth_check
  52. unless Devise.omniauth_providers.include?(:'37signals')
  53. @basecamp_agent = current_user.agents.where(type: 'Agents::BasecampAgent').first
  54. end
  55. end
  56. def agent_params
  57. return {} unless params[:agent]
  58. @agent_params ||= begin
  59. options = params[:agent].delete(:options) if params[:agent][:options].present?
  60. params[:agent].permit(:memory, :name, :type, :schedule, :disabled, :keep_events_for, :propagate_immediately, :drop_pending_events, :service_id,
  61. source_ids: [], receiver_ids: [], scenario_ids: [], controller_ids: [], control_target_ids: []).tap do |agent_params|
  62. agent_params[:options] = options if options
  63. end
  64. end
  65. end
  66. end