theforeman/foreman_fog_proxmox

View on GitHub

Showing 52 of 52 total issues

Class Proxmox has 24 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Proxmox < ComputeResource
    include ProxmoxVmHelper
    include ProxmoxConnection
    include ProxmoxVmNew
    include ProxmoxVmCommands
Severity: Minor
Found in app/models/foreman_fog_proxmox/proxmox.rb - About 2 hrs to fix

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

        def update_volume(vm, disk, volume_attributes)
          id = disk.id
          if volume_type?(volume_attributes, 'cdrom')
            update_cdrom(vm, disk, volume_attributes)
          elsif volume_type?(volume_attributes, 'hard_disk')
    Severity: Minor
    Found in app/models/foreman_fog_proxmox/proxmox_volumes.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 setVmDetails has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

          def setVmDetails
            attrs = compute_resource.provided_attributes
            result = true
            attrs.each do |foreman_attr, fog_attr|
              if foreman_attr == :mac
    Severity: Minor
    Found in app/models/concerns/orchestration/proxmox/compute.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

    File proxmox_vm.js has 254 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    // Copyright 2018 Tristan Robert
    
    // This file is part of ForemanFogProxmox.
    
    // ForemanFogProxmox is free software: you can redistribute it and/or modify
    Severity: Minor
    Found in app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js - About 2 hrs to fix

      Method parse_server_cloudinit has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

        def parse_server_cloudinit(args)
          cloudinit_h = {}
          cloudinit = args['cloudinit']
          unless ['none'].include? cloudinit
            volid = args['volid']
      Severity: Minor
      Found in app/helpers/proxmox_vm_cloudinit_helper.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 create_vm has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def create_vm(args = {})
            type = args[:type]
            node = client.nodes.get(args[:node_id])
            vmid = args[:vmid] = assign_vmid(args[:vmid].to_i, node)
            raise ::Foreman::Exception, format(N_('invalid vmid=%<vmid>s'), vmid: vmid) unless node.servers.id_valid?(vmid)
      Severity: Minor
      Found in app/models/foreman_fog_proxmox/proxmox_vm_commands.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

      Function updateOptions has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function updateOptions(options_path, start_options_id, end_options_id, start_second_options_id, end_second_options_id, option_id, node_id, second_id) {
        
        var select_ids = selectIds(start_options_id, end_options_id);
        var select_second_ids;
        if ( start_second_options_id != undefined && end_second_options_id != undefined) {
      Severity: Minor
      Found in app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js - About 1 hr to fix

        Method host_interfaces_attrs has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

            def host_interfaces_attrs(host)
              host.interfaces.select(&:physical?).each.with_index.reduce({}) do |hash, (nic, index)|
                set_nic_identifier(nic, index)
                set_container_interface_name(host, nic, index) if container?(host)
                ForemanFogProxmox::HashCollection.remove_empty_values(nic.compute_attributes)
        Severity: Minor
        Found in app/models/foreman_fog_proxmox/proxmox_interfaces.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

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

        function getIndex(item) {
          var index_id = $(item).attr('id');
          var pattern = /(host_compute_attributes_volumes_attributes_||compute_attribute_vm_attrs_volumes_attributes_)(\d+)[_](.*)/i;
          pattern_a = pattern.exec(index_id);
          var index = pattern_a[2];
        app/assets/javascripts/foreman_fog_proxmox/proxmox_vm_server.js on lines 26..32

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

        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

        function getIndex(item) {
          var index_id = $(item).attr('id');
          var pattern = /(host_compute_attributes_volumes_attributes_||compute_attribute_vm_attrs_volumes_attributes_)(\d+)[_](.*)/i;
          pattern_a = pattern.exec(index_id);
          var index = pattern_a[2];
        app/assets/javascripts/foreman_fog_proxmox/proxmox_volume.js on lines 18..24

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

        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

        Method proxmox_cpus_map has 29 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def proxmox_cpus_map
            [OpenStruct.new(id: '486', name: '486'),
             OpenStruct.new(id: 'athlon', name: 'athlon'),
             OpenStruct.new(id: 'core2duo', name: 'core2duo'),
             OpenStruct.new(id: 'coreduo', name: 'coreduo'),
        Severity: Minor
        Found in app/helpers/proxmox_compute_selectors_helper.rb - About 1 hr to fix

          Function updateOptions has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

          function updateOptions(options_path, start_options_id, end_options_id, start_second_options_id, end_second_options_id, option_id, node_id, second_id) {
            
            var select_ids = selectIds(start_options_id, end_options_id);
            var select_second_ids;
            if ( start_second_options_id != undefined && end_second_options_id != undefined) {
          Severity: Minor
          Found in app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js - 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 password_proxmox_f has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

            def password_proxmox_f(f, attr, options = {})
              unset_button = options.delete(:unset)
              value = f.object[attr] if options.delete(:keep_value)
              password_field_tag(:fakepassword, value, :style => 'display: none', :autocomplete => 'new-password-fake') +
                field(f, attr, options) do
          Severity: Minor
          Found in app/helpers/proxmox_form_helper.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 new_typed_vm has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

              def new_typed_vm(new_attr, type)
                convert_config_attributes(new_attr) if new_attr.key?(:config_attributes)
                node_id = new_attr['node_id']
                node = node_id ? client.nodes.get(node_id) : default_node
                new_attr_type = new_attr['type']
          Severity: Minor
          Found in app/models/foreman_fog_proxmox/proxmox_vm_new.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_or_delete_typed_interface has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            def add_or_delete_typed_interface(interface_attributes, interfaces_to_delete, interfaces_to_add, type)
              logger.debug("add_or_delete_typed_interface(#{type}): interface_attributes=#{interface_attributes}")
              ForemanFogProxmox::HashCollection.remove_empty_values(interface_attributes)
              if interface_attributes['compute_attributes']
                ForemanFogProxmox::HashCollection.remove_empty_values(interface_attributes['compute_attributes'])
          Severity: Minor
          Found in app/helpers/proxmox_vm_interfaces_helper.rb - About 1 hr to fix

            Function updateOptions has 8 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            function updateOptions(options_path, start_options_id, end_options_id, start_second_options_id, end_second_options_id, option_id, node_id, second_id) {
            Severity: Major
            Found in app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js - About 1 hr to fix

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

                ['qemu', 'lxc'].forEach(function(type){
                  fieldsets(type).forEach(function(fieldsetId){
                    toggleFieldset(fieldsetId, fieldset, fieldset.selected, type);
                  });
                });
              Severity: Major
              Found in app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js and 1 other location - About 1 hr to fix
              app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js on lines 211..215

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

              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

                ['qemu', 'lxc'].forEach(function(type){
                  fieldsets(type).forEach(function(fieldsetId){
                    toggleConfig(fieldsetId, fieldset, fieldset.selected, type);
                  });
                });
              Severity: Major
              Found in app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js and 1 other location - About 1 hr to fix
              app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js on lines 167..171

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

              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 proxmox_scsi_controllers_map
                  [OpenStruct.new(id: 'lsi', name: 'LSI 53C895A (Default)'),
                   OpenStruct.new(id: 'lsi53c810', name: 'LSI 53C810'),
                   OpenStruct.new(id: 'virtio-scsi-pci', name: 'VirtIO SCSI'),
                   OpenStruct.new(id: 'virtio-scsi-single', name: 'VirtIO SCSI Single'),
              Severity: Minor
              Found in app/helpers/proxmox_compute_controllers_helper.rb and 1 other location - About 55 mins to fix
              app/helpers/proxmox_compute_selectors_helper.rb on lines 126..132

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

              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

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

                def parse_hard_disk_volume(args)
                  logger.debug(format(_('parse_hard_disk_volume(): args=%<args>s'), args: args))
                  disk = {}
                  disk[:id] = args['id'] if args.key?('id')
                  disk[:volid] = args['volid'] if args.key?('volid')
              Severity: Minor
              Found in app/helpers/proxmox_vm_volumes_helper.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

              Severity
              Category
              Status
              Source
              Language