lib/fog/aws/iam.rb

Summary

Maintainability
C
7 hrs
Test Coverage
B
80%

File iam.rb has 297 lines of code (exceeds 250 allowed). Consider refactoring.
Open

module Fog
  module AWS
    class IAM < Fog::Service
      extend Fog::AWS::CredentialFetcher::ServiceMethods

Severity: Minor
Found in lib/fog/aws/iam.rb - About 3 hrs to fix

    Method data has 66 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            def self.data
              @data ||= Hash.new do |hash, key|
                owner_id = Fog::AWS::Mock.owner_id
    
                hash[key] = {
    Severity: Major
    Found in lib/fog/aws/iam.rb - About 2 hrs to fix

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

              def request(params)
                refresh_credentials_if_expired
                idempotent  = params.delete(:idempotent)
                parser      = params.delete(:parser)
      
      
      Severity: Major
      Found in lib/fog/aws/iam.rb and 2 other locations - About 1 hr to fix
      lib/fog/aws/cloud_formation.rb on lines 94..119
      lib/fog/aws/kms.rb on lines 126..151

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

      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 20 locations. Consider refactoring.
      Open

              def setup_credentials(options)
                @aws_access_key_id         = options[:aws_access_key_id]
                @aws_secret_access_key     = options[:aws_secret_access_key]
                @aws_session_token         = options[:aws_session_token]
                @aws_credentials_expire_at = options[:aws_credentials_expire_at]
      Severity: Major
      Found in lib/fog/aws/iam.rb and 19 other locations - About 20 mins to fix
      lib/fog/aws/auto_scaling.rb on lines 175..181
      lib/fog/aws/beanstalk.rb on lines 94..100
      lib/fog/aws/cloud_formation.rb on lines 85..91
      lib/fog/aws/cloud_watch.rb on lines 113..119
      lib/fog/aws/compute.rb on lines 588..594
      lib/fog/aws/data_pipeline.rb on lines 130..136
      lib/fog/aws/dynamodb.rb on lines 95..101
      lib/fog/aws/ecs.rb on lines 82..88
      lib/fog/aws/efs.rb on lines 95..103
      lib/fog/aws/elasticache.rb on lines 79..85
      lib/fog/aws/emr.rb on lines 85..91
      lib/fog/aws/glacier.rb on lines 199..205
      lib/fog/aws/kinesis.rb on lines 59..65
      lib/fog/aws/lambda.rb on lines 111..117
      lib/fog/aws/rds.rb on lines 241..247
      lib/fog/aws/redshift.rb on lines 93..99
      lib/fog/aws/sns.rb on lines 108..114
      lib/fog/aws/sqs.rb on lines 101..107
      lib/fog/aws/support.rb on lines 110..118

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

      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