helpyio/helpy

View on GitHub
lib/email_processor.rb

Summary

Maintainability
D
1 day
Test Coverage

Method process has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

  def process




Severity: Minor
Found in lib/email_processor.rb - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method create_reply_from_email has 13 arguments (exceeds 4 allowed). Consider refactoring.
Open

  def self.create_reply_from_email(email, email_address, email_name, subject, raw, message, token, to, sitename, cc, number_of_attachments, spam_score, spam_report)      
Severity: Major
Found in lib/email_processor.rb - About 1 hr to fix

    Method create_reply_from_email has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

      def self.create_reply_from_email(email, email_address, email_name, subject, raw, message, token, to, sitename, cc, number_of_attachments, spam_score, spam_report)      
        
        # flag as spam if below spam score threshold
        ticket_status = (spam_score > AppSettings["email.spam_assassin_filter"].to_f) ? "spam" : "new"
            
    Severity: Minor
    Found in lib/email_processor.rb - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method create_new_ticket_from_email has 12 arguments (exceeds 4 allowed). Consider refactoring.
    Open

      def self.create_new_ticket_from_email(email, email_address, email_name, subject, raw, message, token, to, cc, number_of_attachments, spam_score, spam_report)
    Severity: Major
    Found in lib/email_processor.rb - About 1 hr to fix

      Method create_new_ticket_from_email has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def self.create_new_ticket_from_email(email, email_address, email_name, subject, raw, message, token, to, cc, number_of_attachments, spam_score, spam_report)
      
          # flag as spam if below spam score threshold
          ticket_status = (spam_score > AppSettings["email.spam_assassin_filter"].to_f) ? "spam" : "new"
      
      
      Severity: Minor
      Found in lib/email_processor.rb - About 1 hr to fix

        Method create_forwarded_message_from_email has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def self.create_forwarded_message_from_email(email, subject, raw, message, token, to, cc, number_of_attachments, spam_score, spam_report)
        
            # Parse from out of the forwarded raw body
            from = raw[/From: .*<(.*?)>/, 1]
            from_token = from.split("@")[0]
        Severity: Minor
        Found in lib/email_processor.rb - About 1 hr to fix

          Method create_new_ticket_from_email has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

            def self.create_new_ticket_from_email(email, email_address, email_name, subject, raw, message, token, to, cc, number_of_attachments, spam_score, spam_report)
          
              # flag as spam if below spam score threshold
              ticket_status = (spam_score > AppSettings["email.spam_assassin_filter"].to_f) ? "spam" : "new"
          
          
          Severity: Minor
          Found in lib/email_processor.rb - About 1 hr to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Method create_forwarded_message_from_email has 10 arguments (exceeds 4 allowed). Consider refactoring.
          Open

            def self.create_forwarded_message_from_email(email, subject, raw, message, token, to, cc, number_of_attachments, spam_score, spam_report)
          Severity: Major
          Found in lib/email_processor.rb - About 1 hr to fix

            Method create_forwarded_message_from_email has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

              def self.create_forwarded_message_from_email(email, subject, raw, message, token, to, cc, number_of_attachments, spam_score, spam_report)
            
                # Parse from out of the forwarded raw body
                from = raw[/From: .*<(.*?)>/, 1]
                from_token = from.split("@")[0]
            Severity: Minor
            Found in lib/email_processor.rb - About 55 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method handle_attachments has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

              def self.handle_attachments(email, post)
                return unless email.attachments.present?
                if AppSettings['cloudinary.cloud_name'].present? && AppSettings['cloudinary.api_key'].present? && AppSettings['cloudinary.api_secret'].present?
                  array_of_files = []
                  email.attachments.each do |attachment|
            Severity: Minor
            Found in lib/email_processor.rb - About 35 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method create_user_for_email has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

              def self.create_user_for_email(email_address, token, name, ticket_status)
                # create user
                @user = User.new
            
                @token, enc = Devise.token_generator.generate(User, :reset_password_token)
            Severity: Minor
            Found in lib/email_processor.rb - About 35 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            TODO found
            Open

                elsif subject.include?("Fwd: ") # this is a forwarded message TODO: Expand this to handle foreign email formatting
            Severity: Minor
            Found in lib/email_processor.rb by fixme

            There are no issues that match your filters.

            Category
            Status