ManageIQ/manageiq-providers-amazon

View on GitHub

Showing 43 of 43 total issues

Cyclomatic complexity for collect_cloudwatch_api_references! is too high. [31/11]
Open

def collect_cloudwatch_api_references!(target_collection, event_data, depth = 0)
# Check a reasonable depth, so this can't fail with max stack size
raise "Depth 20 reached when scanning EmsEvent for Targets" if depth > 20
 
# Cloud

Method collect_cloudwatch_api_references! has a Cognitive Complexity of 28 (exceeds 11 allowed). Consider refactoring.
Open

def collect_cloudwatch_api_references!(target_collection, event_data, depth = 0)
# Check a reasonable depth, so this can't fail with max stack size
raise "Depth 20 reached when scanning EmsEvent for Targets" if depth > 20
 
# Cloud

Cyclomatic complexity for infer_related_vm_ems_refs_db! is too high. [14/11]
Open

def infer_related_vm_ems_refs_db!
changed_vms = manager.vms.where(:ems_ref => references(:vms)).includes(:key_pairs, :network_ports, :floating_ips,
:orchestration_stack, :cloud_subnets)
changed_vms.each do |vm|
stack = vm.orchestration_stack

Method response_handler_loop has a Cognitive Complexity of 21 (exceeds 11 allowed). Consider refactoring.
Open

def response_handler_loop
@shutdown_instance_wait_thread = nil
@response_data_dir = response_data_dir
until @shutdown_instance_wait_thread
@coordinators_mutex.synchronize do

Cyclomatic complexity for perform_metadata_sync is too high. [12/11]
Open

def perform_metadata_sync(extract_reply)
ost = OpenStruct.new
ost.reply = extract_reply
ost.jobid = extract_reply[:job_id]
job = Job.find_by(:id => ost.jobid)

Method perform_metadata_sync has a Cognitive Complexity of 14 (exceeds 11 allowed). Consider refactoring.
Open

def perform_metadata_sync(extract_reply)
ost = OpenStruct.new
ost.reply = extract_reply
ost.jobid = extract_reply[:job_id]
job = Job.find_by(:id => ost.jobid)

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

def add_value_constraint(parameter, val)
return unless val.key?('MinValue') || val.key?('MaxValue')
 
constraint = OrchestrationTemplate::OrchestrationParameterRange.new
constraint.min_value = to_number(val['MinValue']) if val['MinValue']
app/models/manageiq/providers/amazon/cloud_manager/orchestration_template.rb on lines 198..204

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

def add_length_constraint(parameter, val)
return unless val.key?('MinLength') || val.key?('MaxLength')
 
constraint = OrchestrationTemplate::OrchestrationParameterLength.new
constraint.min_length = val['MinLength'].to_i if val['MinLength']
app/models/manageiq/providers/amazon/cloud_manager/orchestration_template.rb on lines 207..213

Avoid parameter lists longer than 5 parameters. [8/5]
Open

def raw_connect(access_key_id, secret_access_key, service, region,
proxy_uri = nil, validate = false, uri = nil, assume_role: nil)

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

def shared_images
return [] unless options.get_shared_images
 
@shared_images_hashes ||= hash_collection.new(
aws_ec2.client.describe_images(:executable_users => [:self],
app/models/manageiq/providers/amazon/inventory/collector/cloud_manager.rb on lines 30..38

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

def private_images
return [] unless options.get_private_images
 
@private_images_hashes ||= hash_collection.new(
aws_ec2.client.describe_images(:owners => [:self],
app/models/manageiq/providers/amazon/inventory/collector/cloud_manager.rb on lines 40..48

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

def cloud_networks
return [] if references(:cloud_networks).blank?
 
multi_query(references(:cloud_networks)) do |refs|
hash_collection.new(
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 30..37
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 54..59
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 90..95
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 150..155
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 160..167

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

def availability_zones
return [] if references(:availability_zones).blank?
 
multi_query(references(:availability_zones)) do |refs|
hash_collection.new(
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 54..59
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 80..85
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 90..95
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 150..155
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 160..167

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

def cloud_volumes
return [] if references(:cloud_volumes).blank?
 
multi_query(references(:cloud_volumes)) do |refs|
hash_collection.new(
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 30..37
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 54..59
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 80..85
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 90..95
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 160..167

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

def cloud_volume_snapshots
return [] if references(:cloud_volume_snapshots).blank?
 
multi_query(references(:cloud_volume_snapshots)) do |refs|
hash_collection.new(
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 30..37
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 54..59
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 80..85
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 90..95
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 150..155

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

def referenced_images
return [] if references(:miq_templates).blank?
 
multi_query(references(:miq_templates)) do |refs|
hash_collection.new(
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 30..37
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 80..85
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 90..95
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 150..155
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 160..167

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

def cloud_subnets
return [] if references(:cloud_subnets).blank?
 
multi_query(references(:cloud_subnets)) do |refs|
hash_collection.new(
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 30..37
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 54..59
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 80..85
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 150..155
app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb on lines 160..167

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

{
:component => 'text-field',
:name => 'iops',
:id => 'iops',
:label => _('IOPS'),
app/models/manageiq/providers/amazon/storage_manager/ebs/cloud_volume.rb on lines 167..177

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

private_class_method def self.provider_region_options
ManageIQ::Providers::Amazon::Regions
.all
.sort_by { |r| r[:description].downcase }
.map do |r|
Severity: Minor
Found in app/models/manageiq/providers/amazon/cloud_manager.rb and 1 other location - About 20 mins to fix
app/models/manageiq/providers/amazon/container_manager.rb on lines 93..100

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

{
:component => 'text-field',
:name => 'iops',
:id => 'iops',
:label => _('IOPS'),
app/models/manageiq/providers/amazon/storage_manager/ebs/cloud_volume.rb on lines 268..278
Severity
Category
Status
Source
Language