eventmachine/eventmachine

View on GitHub
lib/em/protocols/smtpserver.rb

Summary

Maintainability
D
2 days
Test Coverage

Class SmtpServer has 37 methods (exceeds 20 allowed). Consider refactoring.
Open

    class SmtpServer < EventMachine::Connection
      include Protocols::LineText2

      HeloRegex = /\AHELO\s*/i
      EhloRegex = /\AEHLO\s*/i
Severity: Minor
Found in lib/em/protocols/smtpserver.rb - About 4 hrs to fix

    File smtpserver.rb has 319 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    module EventMachine
      module Protocols
    
        # This is a protocol handler for the server side of SMTP.
        # It's NOT a complete SMTP server obeying all the semantics of servers conforming to
    Severity: Minor
    Found in lib/em/protocols/smtpserver.rb - About 3 hrs to fix

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

            def process_data_line ln
              if ln == "."
                if @databuffer.length > 0
                  receive_data_chunk @databuffer
                  @databuffer.clear
      Severity: Minor
      Found in lib/em/protocols/smtpserver.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 process_rcpt_to has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

            def process_rcpt_to rcpt
              unless @state.include?(:mail_from)
                send_data "503 MAIL is required before RCPT\r\n"
              else
                succeeded = proc {
      Severity: Minor
      Found in lib/em/protocols/smtpserver.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 receive_line has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

            def receive_line ln
              @@parms[:verbose] and $>.puts ">>> #{ln}"
      
              return process_data_line(ln) if @state.include?(:data)
              return process_auth_line(ln) if @state.include?(:auth_incomplete)
      Severity: Minor
      Found in lib/em/protocols/smtpserver.rb - About 1 hr to fix

        Method process_data_line has 29 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              def process_data_line ln
                if ln == "."
                  if @databuffer.length > 0
                    receive_data_chunk @databuffer
                    @databuffer.clear
        Severity: Minor
        Found in lib/em/protocols/smtpserver.rb - About 1 hr to fix

          Method process_rcpt_to has 26 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                def process_rcpt_to rcpt
                  unless @state.include?(:mail_from)
                    send_data "503 MAIL is required before RCPT\r\n"
                  else
                    succeeded = proc {
          Severity: Minor
          Found in lib/em/protocols/smtpserver.rb - About 1 hr to fix

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

                  def process_data
                    unless @state.include?(:rcpt)
                      send_data "503 Operation sequence error\r\n"
                    else
                      succeeded = proc {
            Severity: Minor
            Found in lib/em/protocols/smtpserver.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 process_starttls has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                  def process_starttls
                    if @@parms[:starttls]
                      if @state.include?(:starttls)
                        send_data "503 TLS Already negotiated\r\n"
                      elsif ! @state.include?(:ehlo)
            Severity: Minor
            Found in lib/em/protocols/smtpserver.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 process_auth has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                  def process_auth str
                    if @state.include?(:auth)
                      send_data "503 auth already issued\r\n"
                    elsif str =~ /\APLAIN\s?/i
                      if $'.length == 0
            Severity: Minor
            Found in lib/em/protocols/smtpserver.rb - About 25 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 process_ehlo has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                  def process_ehlo domain
                    if receive_ehlo_domain domain
                      send_data "250-#{get_server_domain}\r\n"
                      if @@parms[:starttls]
                        send_data "250-STARTTLS\r\n"
            Severity: Minor
            Found in lib/em/protocols/smtpserver.rb - About 25 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 process_mail_from has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                  def process_mail_from sender
                    if (@@parms[:starttls]==:required and !@state.include?(:starttls))
                      send_data "550 This server requires STARTTLS before MAIL FROM\r\n"
                    elsif (@@parms[:auth]==:required and !@state.include?(:auth))
                      send_data "550 This server requires authentication before MAIL FROM\r\n"
            Severity: Minor
            Found in lib/em/protocols/smtpserver.rb - About 25 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

            There are no issues that match your filters.

            Category
            Status