activemerchant/active_merchant

View on GitHub
lib/active_merchant/billing/gateways/wirecard.rb

Summary

Maintainability
D
1 day
Test Coverage

Class WirecardGateway has 28 methods (exceeds 20 allowed). Consider refactoring.
Open

    class WirecardGateway < Gateway
      self.test_url = 'https://c3-test.wirecard.com/secure/ssl-gateway'
      self.live_url = 'https://c3.wirecard.com/secure/ssl-gateway'

      # The Namespaces are not really needed, because it just tells the System, that there's actually no namespace used.
Severity: Minor
Found in lib/active_merchant/billing/gateways/wirecard.rb - About 3 hrs to fix

    File wirecard.rb has 296 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require 'base64'
    
    module ActiveMerchant #:nodoc:
      module Billing #:nodoc:
        class WirecardGateway < Gateway
    Severity: Minor
    Found in lib/active_merchant/billing/gateways/wirecard.rb - About 3 hrs to fix

      Method parse_response has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

            def parse_response(response, root)
              status = nil
      
              root.elements.to_a.each do |node|
                status = REXML::XPath.first(node, 'CC_TRANSACTION/PROCESSING_STATUS') if node.name =~ /FNC_CC_/
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/wirecard.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 add_transaction_data has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

            def add_transaction_data(xml, money, options)
              options[:order_id] ||= generate_unique_id
      
              xml.tag! "FNC_CC_#{options[:action].to_s.upcase}" do
                xml.tag! 'FunctionID', clean_description(options[:description])
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/wirecard.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 errors_to_string has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

            def errors_to_string(root)
              # Get context error messages (can be 0..*)
              errors = []
              REXML::XPath.each(root, '//ERROR') do |error_elem|
                error = {}
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/wirecard.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 add_address has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

            def add_address(xml, address)
              return if address.nil?
      
              xml.tag! 'CORPTRUSTCENTER_DATA' do
                xml.tag! 'ADDRESS' do
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/wirecard.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 commit has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

            def commit(action, money, options)
              request = build_request(action, money, options)
      
              headers = { 'Content-Type' => 'text/xml',
                          'Authorization' => encoded_credentials }
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/wirecard.rb - About 45 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 5 locations. Consider refactoring.
      Open

            self.supported_countries = %w(AD CY GI IM MT RO CH AT DK GR IT MC SM TR BE EE HU LV NL SK GB BG FI IS LI NO SI VA FR IL LT PL ES CZ DE IE LU PT SE)
      Severity: Major
      Found in lib/active_merchant/billing/gateways/wirecard.rb and 4 other locations - About 50 mins to fix
      lib/active_merchant/billing/gateways/adyen.rb on lines 9..9
      lib/active_merchant/billing/gateways/commercegate.rb on lines 6..9
      lib/active_merchant/billing/gateways/monei.rb on lines 16..16
      lib/active_merchant/billing/gateways/securion_pay.rb on lines 7..8

      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 42.

      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