Sha256: bab5cedfee50510ab7eee8dc8f3057d196681cde2c92a288ba8d178c2dcf453a

Contents?: true

Size: 1.83 KB

Versions: 2

Compression:

Stored size: 1.83 KB

Contents

module ErrornotNotifier
  module Rails
    module ControllerMethods
      private

      # This method should be used for sending manual notifications while you are still
      # inside the controller. Otherwise it works like ErrornotNotifier.notify.
      def notify_errornot(hash_or_exception)
        unless consider_all_requests_local || local_request?
          ErrornotNotifier.notify(hash_or_exception, errornot_request_data)
        end
      end

      def errornot_ignore_user_agent? #:nodoc:
        # Rails 1.2.6 doesn't have request.user_agent, so check for it here
        user_agent = request.respond_to?(:user_agent) ? request.user_agent : request.env["HTTP_USER_AGENT"]
        ErrornotNotifier.configuration.ignore_user_agent.flatten.any? { |ua| ua === user_agent }
      end

      def errornot_request_data
        { :parameters       => errornot_filter_if_filtering(params.to_hash),
          :session_data     => errornot_filter_if_filtering(errornot_session_data),
          :controller       => params[:controller],
          :action           => params[:action],
          :url              => errornot_request_url,
          :cgi_data         => errornot_filter_if_filtering(request.env) }
      end

      def errornot_filter_if_filtering(hash)
        return hash if ! hash.is_a?(Hash)

        if respond_to?(:filter_parameters)
          filter_parameters(hash) rescue hash
        else
          hash
        end
      end

      def errornot_session_data
        if session.respond_to?(:to_hash)
          session.to_hash
        else
          session.data
        end
      end

      def errornot_request_url
        url = "#{request.protocol}#{request.host}"

        unless [80, 443].include?(request.port)
          url << ":#{request.port}"
        end

        url << request.request_uri
        url
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
errornot_notifier-1.1.1 lib/errornot_notifier/rails/controller_methods.rb
errornot_notifier-1.1.0 lib/errornot_notifier/rails/controller_methods.rb