rubyjedi/soap4r

View on GitHub
lib/soap/rpc/router.rb

Summary

Maintainability
F
3 days
Test Coverage

File router.rb has 554 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require 'soap/soap'
require 'soap/processor'
require 'soap/mapping'
require 'soap/mapping/literalregistry'
require 'soap/rpc/rpc'
Severity: Major
Found in lib/soap/rpc/router.rb - About 1 day to fix

    Class Router has 23 methods (exceeds 20 allowed). Consider refactoring.
    Open

    class Router
      include SOAP
    
      attr_reader :actor
      attr_accessor :mapping_registry
    Severity: Minor
    Found in lib/soap/rpc/router.rb - About 2 hrs to fix

      Method route has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def route(conn_data)
          # we cannot set request_default_encodingsyle before parsing the content.
          env = unmarshal(conn_data)
          if env.nil?
            raise ArgumentError.new("illegal SOAP marshal format")
      Severity: Minor
      Found in lib/soap/rpc/router.rb - About 1 hr to fix

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

            def initialize(soapaction, name, param_def, opt)
              @soapaction = soapaction
              @name = name
              @request_style = opt[:request_style]
              @response_style = opt[:response_style]
        Severity: Minor
        Found in lib/soap/rpc/router.rb - About 1 hr to fix

          Method fault has 30 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            def fault(e, wsdl_fault_details)
              if e.is_a?(UnhandledMustUnderstandHeaderError)
                faultcode = FaultCode::MustUnderstand
              else
                faultcode = FaultCode::Server
          Severity: Minor
          Found in lib/soap/rpc/router.rb - About 1 hr to fix

            Method unmarshal has 28 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              def unmarshal(conn_data)
                xml = nil
                opt = {}
                contenttype = conn_data.receive_contenttype
                if /#{MIMEMessage::MultipartContentType}/i =~ contenttype
            Severity: Minor
            Found in lib/soap/rpc/router.rb - About 1 hr to fix

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

                def unmarshal(conn_data)
                  xml = nil
                  opt = {}
                  contenttype = conn_data.receive_contenttype
                  if /#{MIMEMessage::MultipartContentType}/i =~ contenttype
              Severity: Minor
              Found in lib/soap/rpc/router.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 fault has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                def fault(e, wsdl_fault_details)
                  if e.is_a?(UnhandledMustUnderstandHeaderError)
                    faultcode = FaultCode::MustUnderstand
                  else
                    faultcode = FaultCode::Server
              Severity: Minor
              Found in lib/soap/rpc/router.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 add_rpc_request_operation has 6 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                def add_rpc_request_operation(factory, qname, soapaction, name, param_def, opt = {})
              Severity: Minor
              Found in lib/soap/rpc/router.rb - About 45 mins to fix

                Method add_rpc_operation has 6 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                  def add_rpc_operation(receiver, qname, soapaction, name, param_def, opt = {})
                Severity: Minor
                Found in lib/soap/rpc/router.rb - About 45 mins to fix

                  Method add_document_request_operation has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                    def add_document_request_operation(factory, soapaction, name, param_def, opt = {})
                  Severity: Minor
                  Found in lib/soap/rpc/router.rb - About 35 mins to fix

                    Method initialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        def initialize(soapaction, receiver_factory, name, param_def, opt)
                    Severity: Minor
                    Found in lib/soap/rpc/router.rb - About 35 mins to fix

                      Method add_document_operation has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                        def add_document_operation(receiver, soapaction, name, param_def, opt = {})
                      Severity: Minor
                      Found in lib/soap/rpc/router.rb - About 35 mins to fix

                        Method initialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            def initialize(soapaction, receiver, name, param_def, opt)
                        Severity: Minor
                        Found in lib/soap/rpc/router.rb - About 35 mins to fix

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

                            def add_rpc_request_servant(factory, namespace)
                              unless factory.respond_to?(:create)
                                raise TypeError.new("factory must respond to 'create'")
                              end
                              obj = factory.create        # a dummy instance for introspection
                          Severity: Minor
                          Found in lib/soap/rpc/router.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 ensure_styleuse_option has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                          Open

                            def ensure_styleuse_option(opt, style, use)
                              if opt[:request_style] || opt[:response_style] || opt[:request_use] || opt[:response_use]
                                # do not edit
                              else
                                opt[:request_style] ||= style
                          Severity: Minor
                          Found in lib/soap/rpc/router.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 route has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                            def route(conn_data)
                              # we cannot set request_default_encodingsyle before parsing the content.
                              env = unmarshal(conn_data)
                              if env.nil?
                                raise ArgumentError.new("illegal SOAP marshal format")
                          Severity: Minor
                          Found in lib/soap/rpc/router.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 initialize has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                              def initialize(soapaction, name, param_def, opt)
                                @soapaction = soapaction
                                @name = name
                                @request_style = opt[:request_style]
                                @response_style = opt[:response_style]
                          Severity: Minor
                          Found in lib/soap/rpc/router.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 call has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                              def call(body, mapping_registry, literal_mapping_registry, opt)
                                if @request_style == :rpc
                                  values = request_rpc(body, mapping_registry, literal_mapping_registry,
                                    opt)
                                else
                          Severity: Minor
                          Found in lib/soap/rpc/router.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

                          Similar blocks of code found in 2 locations. Consider refactoring.
                          Open

                              ::SOAP::RPC.defined_methods(obj).each do |name|
                                begin
                                  qname = XSD::QName.new(namespace, name)
                                  param_def = ::SOAP::RPC::SOAPMethod.derive_rpc_param_def(obj, name)
                                  opt = create_styleuse_option(:rpc, :encoded)
                          Severity: Minor
                          Found in lib/soap/rpc/router.rb and 1 other location - About 55 mins to fix
                          lib/soap/rpc/router.rb on lines 74..82

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 44.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          Similar blocks of code found in 2 locations. Consider refactoring.
                          Open

                              ::SOAP::RPC.defined_methods(obj).each do |name|
                                begin
                                  qname = XSD::QName.new(namespace, name)
                                  param_def = ::SOAP::RPC::SOAPMethod.derive_rpc_param_def(obj, name)
                                  opt = create_styleuse_option(:rpc, :encoded)
                          Severity: Minor
                          Found in lib/soap/rpc/router.rb and 1 other location - About 55 mins to fix
                          lib/soap/rpc/router.rb on lines 87..95

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 44.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          Similar blocks of code found in 2 locations. Consider refactoring.
                          Open

                                  @doc_request_qnames = []
                                  @doc_response_qnames = []
                                  param_def.each do |param|
                                    param = MethodDef.to_param(param)
                                    case param.io_type
                          Severity: Minor
                          Found in lib/soap/rpc/router.rb and 1 other location - About 45 mins to fix
                          lib/soap/rpc/proxy.rb on lines 386..397

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 40.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          Identical blocks of code found in 2 locations. Consider refactoring.
                          Open

                            def ensure_styleuse_option(opt, style, use)
                              if opt[:request_style] || opt[:response_style] || opt[:request_use] || opt[:response_use]
                                # do not edit
                              else
                                opt[:request_style] ||= style
                          Severity: Minor
                          Found in lib/soap/rpc/router.rb and 1 other location - About 45 mins to fix
                          lib/soap/rpc/proxy.rb on lines 202..210

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 39.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          Similar blocks of code found in 2 locations. Consider refactoring.
                          Open

                            def add_rpc_request_operation(factory, qname, soapaction, name, param_def, opt = {})
                              ensure_styleuse_option(opt, :rpc, :encoded)
                              opt[:request_qname] = qname
                              op = RequestScopeOperation.new(soapaction, factory, name, param_def, opt)
                              if opt[:request_style] != :rpc
                          Severity: Minor
                          Found in lib/soap/rpc/router.rb and 1 other location - About 35 mins to fix
                          lib/soap/rpc/router.rb on lines 103..111

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 34.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          Similar blocks of code found in 2 locations. Consider refactoring.
                          Open

                            def add_rpc_operation(receiver, qname, soapaction, name, param_def, opt = {})
                              ensure_styleuse_option(opt, :rpc, :encoded)
                              opt[:request_qname] = qname
                              op = ApplicationScopeOperation.new(soapaction, receiver, name, param_def,
                                opt)
                          Severity: Minor
                          Found in lib/soap/rpc/router.rb and 1 other location - About 35 mins to fix
                          lib/soap/rpc/router.rb on lines 116..123

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 34.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          Identical blocks of code found in 2 locations. Consider refactoring.
                          Open

                                mime.parts.each do |part|
                              value = Attachment.new(part.content)
                              value.contentid = part.contentid
                              obj = SOAPAttachment.new(value)
                              opt[:external_content][value.contentid] = obj if value.contentid
                          Severity: Minor
                          Found in lib/soap/rpc/router.rb and 1 other location - About 25 mins to fix
                          lib/soap/rpc/proxy.rb on lines 274..278

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 29.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          Similar blocks of code found in 2 locations. Consider refactoring.
                          Open

                              def response_doc_enc(result, mapping_registry, opt)
                                (0...result.size).collect { |idx|
                                  ele = Mapping.obj2soap(result[idx], mapping_registry, nil, opt)
                                  ele.elename = @doc_response_qnames[idx]
                                  ele
                          Severity: Minor
                          Found in lib/soap/rpc/router.rb and 1 other location - About 15 mins to fix
                          lib/soap/rpc/proxy.rb on lines 501..505

                          Duplicated Code

                          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                          Tuning

                          This issue has a mass of 25.

                          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                          Refactorings

                          Further Reading

                          There are no issues that match your filters.

                          Category
                          Status