Shopify/active_merchant

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

Summary

Maintainability
F
3 days
Test Coverage

File decidir.rb has 327 lines of code (exceeds 250 allowed). Consider refactoring.
Open

module ActiveMerchant #:nodoc:
  module Billing #:nodoc:
    class DecidirGateway < Gateway
      self.test_url = 'https://developers.decidir.com/api/v2'
      self.live_url = 'https://live.decidir.com/api/v2'
Severity: Minor
Found in lib/active_merchant/billing/gateways/decidir.rb - About 3 hrs to fix

    Class DecidirGateway has 30 methods (exceeds 20 allowed). Consider refactoring.
    Open

        class DecidirGateway < Gateway
          self.test_url = 'https://developers.decidir.com/api/v2'
          self.live_url = 'https://live.decidir.com/api/v2'
    
          self.supported_countries = ['AR']
    Severity: Minor
    Found in lib/active_merchant/billing/gateways/decidir.rb - About 3 hrs to fix

      Method add_fraud_detection has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
      Open

            def add_fraud_detection(options = {})
              {}.tap do |hsh|
                hsh[:send_to_cs] = options[:send_to_cs] if valid_fraud_detection_option?(options[:send_to_cs]) # true/false
                hsh[:channel] = options[:channel] if valid_fraud_detection_option?(options[:channel])
                hsh[:dispatch_method] = options[:dispatch_method] if valid_fraud_detection_option?(options[:dispatch_method])
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/decidir.rb - About 3 hrs 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_aggregate_data has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

            def add_aggregate_data(post, options)
              aggregate_data = {}
              data = options[:aggregate_data]
              aggregate_data[:indicator] = data[:indicator] if data[:indicator]
              aggregate_data[:identification_number] = data[:identification_number] if data[:identification_number]
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/decidir.rb - About 2 hrs 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 error_code_from has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

            def error_code_from(response)
              error_code = nil
              if error = response.dig('status_details', 'error')
                code = error.dig('reason', 'id')
                standard_error_code = STANDARD_ERROR_CODE_MAPPING[code]
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/decidir.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_payment_method_id has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

            def add_payment_method_id(credit_card, options)
              if options[:payment_method_id]
                options[:payment_method_id].to_i
              elsif options[:debit]
                if CreditCard.brand?(credit_card.number) == 'visa'
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/decidir.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_auth_purchase_params has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

            def add_auth_purchase_params(post, money, credit_card, options)
              post[:payment_method_id] = add_payment_method_id(credit_card, options)
              post[:site_transaction_id] = options[:order_id]
              post[:bin] = credit_card.number[0..5]
              post[:payment_type] = options[:payment_type] || 'single'
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/decidir.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 message_from has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

            def message_from(success, response)
              return response['status'] if success
              return response['message'] if response['message']
      
              message = nil
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/decidir.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

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

            def add_aggregate_data(post, options)
              aggregate_data = {}
              data = options[:aggregate_data]
              aggregate_data[:indicator] = data[:indicator] if data[:indicator]
              aggregate_data[:identification_number] = data[:identification_number] if data[:identification_number]
      Severity: Major
      Found in lib/active_merchant/billing/gateways/decidir.rb and 1 other location - About 5 hrs to fix
      lib/active_merchant/billing/gateways/decidir_plus.rb on lines 138..158

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

      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

                error = response.dig('error')
                validation_errors = error.dig('validation_errors', 0)
                code = validation_errors['code'] if validation_errors && validation_errors['code']
                param = validation_errors['param'] if validation_errors && validation_errors['param']
                error_code = "#{error['error_type']} | #{code} | #{param}" if error['error_type']
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/decidir.rb and 1 other location - About 55 mins to fix
      lib/active_merchant/billing/gateways/decidir_plus.rb on lines 308..312

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

      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 add_sub_payments(post, options)
              # sub_payments field is required for purchase transactions, even if empty
              post[:sub_payments] = []
      
              return unless sub_payments = options[:sub_payments]
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/decidir.rb and 1 other location - About 40 mins to fix
      lib/active_merchant/billing/gateways/decidir_plus.rb on lines 161..173

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

      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