activemerchant/active_merchant

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

Summary

Maintainability
D
1 day
Test Coverage

Class KushkiGateway has 33 methods (exceeds 20 allowed). Consider refactoring.
Open

    class KushkiGateway < Gateway
      self.display_name = 'Kushki'
      self.homepage_url = 'https://www.kushkipagos.com'

      self.test_url = 'https://api-uat.kushkipagos.com/'
Severity: Minor
Found in lib/active_merchant/billing/gateways/kushki.rb - About 4 hrs to fix

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

          def add_amount_by_country(sum, options)
            if amount = options[:amount]
              sum[:subtotalIva] = amount[:subtotal_iva].to_f if amount[:subtotal_iva]
              sum[:iva] = amount[:iva].to_f if amount[:iva]
              sum[:subtotalIva0] = amount[:subtotal_iva_0].to_f if amount[:subtotal_iva_0]
    Severity: Minor
    Found in lib/active_merchant/billing/gateways/kushki.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

    File kushki.rb has 294 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    module ActiveMerchant #:nodoc:
      module Billing #:nodoc:
        class KushkiGateway < Gateway
          self.display_name = 'Kushki'
          self.homepage_url = 'https://www.kushkipagos.com'
    Severity: Minor
    Found in lib/active_merchant/billing/gateways/kushki.rb - About 3 hrs to fix

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

            def add_product_details(post, options)
              return unless options[:product_details]
      
              product_items_array = []
              options[:product_details].each do |item|
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/kushki.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_three_d_secure has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

            def add_three_d_secure(post, payment_method, options)
              three_d_secure = options[:three_d_secure]
              return unless three_d_secure.present?
      
              post[:threeDomainSecure] = {
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/kushki.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_contact_details has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

            def add_contact_details(post, contact_details_options)
              contact_details = {}
              contact_details[:documentType] = contact_details_options[:document_type] if contact_details_options[:document_type]
              contact_details[:documentNumber] = contact_details_options[:document_number] if contact_details_options[:document_number]
              contact_details[:email] = contact_details_options[:email] if contact_details_options[:email]
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/kushki.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

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

            def add_deferred(post, options)
              return unless options[:deferred_grace_months] && options[:deferred_credit_type] && options[:deferred_months]
      
              post[:deferred] = {
                graceMonths: options[:deferred_grace_months],
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/kushki.rb and 1 other location - About 25 mins to fix
      lib/active_merchant/billing/gateways/opp.rb on lines 276..283

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

      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 authorize(amount, payment_method, options = {})
              MultiResponse.run() do |r|
                r.process { tokenize(amount, payment_method, options) }
                r.process { preauthorize(amount, r.authorization, options, payment_method) }
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/kushki.rb and 1 other location - About 15 mins to fix
      lib/active_merchant/billing/gateways/kushki.rb on lines 20..23

      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

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

            def purchase(amount, payment_method, options = {})
              MultiResponse.run() do |r|
                r.process { tokenize(amount, payment_method, options) }
                r.process { charge(amount, r.authorization, options, payment_method) }
      Severity: Minor
      Found in lib/active_merchant/billing/gateways/kushki.rb and 1 other location - About 15 mins to fix
      lib/active_merchant/billing/gateways/kushki.rb on lines 27..30

      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