lib/fog/aws/requests/compute/authorize_security_group_ingress.rb

Summary

Maintainability
D
2 days
Test Coverage
D
61%

Method normalize_permissions has 82 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        def normalize_permissions(options)
          normalized_permissions = []
          if options['SourceSecurityGroupName']
            group_name = if options['SourceSecurityGroupName'] =~ /default_elb/
                           "default"
Severity: Major
Found in lib/fog/aws/requests/compute/authorize_security_group_ingress.rb - About 3 hrs to fix

    Method normalize_permissions has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

            def normalize_permissions(options)
              normalized_permissions = []
              if options['SourceSecurityGroupName']
                group_name = if options['SourceSecurityGroupName'] =~ /default_elb/
                               "default"
    Severity: Minor
    Found in lib/fog/aws/requests/compute/authorize_security_group_ingress.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 authorize_security_group_ingress has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

            def authorize_security_group_ingress(group_name, options = {})
              options = Fog::AWS.parse_security_group_options(group_name, options)
    
              group = if options.key?('GroupName')
                        self.data[:security_groups].values.find { |v| v['groupName'] == options['GroupName'] }
    Severity: Minor
    Found in lib/fog/aws/requests/compute/authorize_security_group_ingress.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 authorize_security_group_ingress has 35 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            def authorize_security_group_ingress(group_name, options = {})
              options = Fog::AWS.parse_security_group_options(group_name, options)
    
              group = if options.key?('GroupName')
                        self.data[:security_groups].values.find { |v| v['groupName'] == options['GroupName'] }
    Severity: Minor
    Found in lib/fog/aws/requests/compute/authorize_security_group_ingress.rb - About 1 hr to fix

      Consider simplifying this complex logical expression.
      Open

                elsif options['IpPermissions']
                  options['IpPermissions'].each do |permission|
      
                    groups = (permission['Groups'] || []).map do |authorized_group|
                      security_group = if group_name = authorized_group['GroupName']
      Severity: Major
      Found in lib/fog/aws/requests/compute/authorize_security_group_ingress.rb - About 1 hr to fix

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

                def verify_permission_options(options, is_vpc)
                  if options.size <= 1
                    raise Fog::AWS::Compute::Error.new("InvalidRequest => The request received was invalid.")
                  end
                  if !is_vpc && options['IpProtocol'] && !['tcp', 'udp', 'icmp'].include?(options['IpProtocol'])
        Severity: Minor
        Found in lib/fog/aws/requests/compute/authorize_security_group_ingress.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

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

                def authorize_security_group_ingress(group_name, options = {})
                  options = Fog::AWS.parse_security_group_options(group_name, options)
        
                  group = if options.key?('GroupName')
                            self.data[:security_groups].values.find { |v| v['groupName'] == options['GroupName'] }
        lib/fog/aws/requests/compute/authorize_security_group_egress.rb on lines 58..101

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

        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 find_matching_permission(group, permission)
                  group['ipPermissions'].find {|group_permission|
                    permission['ipProtocol'] == group_permission['ipProtocol'] &&
                      permission['fromPort'] == group_permission['fromPort'] &&
                      permission['toPort'] == group_permission['toPort'] }
        lib/fog/aws/requests/compute/authorize_security_group_egress.rb on lines 104..109

        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

                    normalized_permissions << {
                      'ipProtocol' => options['IpProtocol'],
                      'fromPort'   => Integer(options['FromPort']),
                      'toPort'     => Integer(options['ToPort']),
                      'groups'     => [],
        lib/fog/aws/requests/compute/authorize_security_group_ingress.rb on lines 197..202

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

        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

                    normalized_permissions << {
                      'ipProtocol' => options['IpProtocol'],
                      'fromPort'   => Integer(options['FromPort']),
                      'toPort'     => Integer(options['ToPort']),
                      'groups'     => [],
        lib/fog/aws/requests/compute/authorize_security_group_ingress.rb on lines 189..194

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

        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