pasosdeJesus/sivel2_gen

View on GitHub

Showing 380 of 380 total issues

Method index has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
Open

          def index
            if !Rails.configuration.x.sivel2_consulta_web_publica
              authorize! :index, Sivel2Gen::Caso
            end
            begin
Severity: Minor
Found in lib/sivel2_gen/concerns/controllers/casos_controller.rb - About 4 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 update_gen has 109 lines of code (exceeds 25 allowed). Consider refactoring.
Open

          def update_gen
            respond_to do |format|
              # En etiquetas pone usuario actual por omision
              if (!params[:caso][:caso_etiqueta_attributes].nil?)
                params[:caso][:caso_etiqueta_attributes].each  do |k,v|
Severity: Major
Found in lib/sivel2_gen/concerns/controllers/casos_controller.rb - About 4 hrs to fix

    Method importar_relato has 108 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

              def self.importar_relato(doc, menserror, sintaxis_errores, mensexito, ids_importados,
                                       usuario_id, formato_sexo)
                if !Nokogiri::XML(doc).errors.empty?
                  Nokogiri::XML(doc).errors.each do |error|
                    sintaxis_errores.push(error.message)
    Severity: Major
    Found in lib/sivel2_gen/concerns/controllers/casos_controller.rb - About 4 hrs to fix

      Method sivel2_gen_victima_presenta has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
      Open

                def sivel2_gen_victima_presenta(atr)
                  case atr.to_s
                  when 'fecha_caso'
                    self.caso ? self.caso.fecha : ''
                  when 'nombre'
      Severity: Minor
      Found in lib/sivel2_gen/concerns/models/victima.rb - About 4 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 create_sivel2_gen has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
      Open

                def create_sivel2_gen
                  @merr = "" # Colchon para errores
                  if params[:caso][:id].nil?
                    @merr = 'Falta identificacion del caso' 
                    render inline: @merr, status: :unprocessable_entity
      Severity: Minor
      Found in lib/sivel2_gen/concerns/controllers/actoscolectivos_controller.rb - About 4 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 graficar_conteo_controller.rb has 342 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      module Sivel2Gen
        module Concerns
          module Controllers
            module GraficarConteoController
              extend ActiveSupport::Concern
      Severity: Minor
      Found in lib/sivel2_gen/concerns/controllers/graficar_conteo_controller.rb - About 4 hrs to fix

        File ability.rb has 317 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        module Sivel2Gen
          # Permisos
          class Ability < Msip::Ability
            include CanCan::Ability
        
        
        Severity: Minor
        Found in app/models/sivel2_gen/ability.rb - About 3 hrs to fix

          File conscaso.rb has 312 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          module Sivel2Gen
            module Concerns
              module Models
                module Conscaso 
                  extend ActiveSupport::Concern
          Severity: Minor
          Found in lib/sivel2_gen/concerns/models/conscaso.rb - About 3 hrs to fix

            Function presentarMapaOsm has 87 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              presentarMapaOsm(usuario_autenticado) {
                var usuario_aut_global = usuario_autenticado;
                // Borrar clase container y ocultar pie de página
                document.querySelector('.navbar').classList.add('navbarosm');
                document.querySelector('.card-body').classList.add('cardbodyosm');
            Severity: Major
            Found in app/javascript/controllers/mapaosm_controller.js - About 3 hrs to fix

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

                        def valida_categoria_presponsable
                          consl= "WITH RECURSIVE cteRecursion AS (
                             SELECT id, 1 AS Level
                                 FROM public.sivel2_gen_presponsable
                                 WHERE id = 42
              Severity: Major
              Found in lib/sivel2_gen/concerns/models/acto.rb and 1 other location - About 3 hrs to fix
              lib/sivel2_gen/concerns/models/actocolectivo.rb on lines 24..68

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

              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 valida_categoria_presponsable
                          consl= "WITH RECURSIVE cteRecursion AS (
                             SELECT id, 1 AS Level
                                 FROM public.sivel2_gen_presponsable
                                 WHERE id = 42
              Severity: Major
              Found in lib/sivel2_gen/concerns/models/actocolectivo.rb and 1 other location - About 3 hrs to fix
              lib/sivel2_gen/concerns/models/acto.rb on lines 27..71

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

              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 recorrer_observaciones_co has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
              Open

                            def recorrer_observaciones_co(ele, menserror)
                              case ele[0]
                              when 'filiacion'
                                if Sivel2Gen::Filiacion.where('TRIM(nombre)=?', ele[1].strip).count ==1
                                  self.filiacion_id = Sivel2Gen::Filiacion.
              Severity: Minor
              Found in lib/sivel2_gen/concerns/models/combatiente.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

              Method victimizaciones has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
              Open

                        def victimizaciones
                          authorize! :contar, Sivel2Gen::Caso
              
                          # Filtros
                          pFini = escapar_param(params, [:filtro, 'fechaini'])
              Severity: Minor
              Found in lib/sivel2_gen/concerns/controllers/mapamun_controller.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

              Function actualizarEdad has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
              Open

                actualizarEdad(event){
                  let anio = parseInt(this.anionacTarget.value);
                  let mes = parseInt(this.mesnacTarget.value) - 1;
                  let dia = parseInt(this.dianacTarget.value);
              
              
              Severity: Minor
              Found in app/javascript/controllers/edad_controller.js - 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

              Method importa has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
              Open

                        def importa(datosent, datossal, menserror, opciones = {})
                          pais = Msip::Pais.
                            where('nombre ILIKE ?', datosent['pais']).ids[0]
                          self.pais_id = pais || Msip.paisomision 
                          dep = Msip::Departamento.
              Severity: Minor
              Found in lib/sivel2_gen/concerns/models/ubicacion.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

              Function actualizarEdad has 79 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                actualizarEdad(event){
                  let anio = parseInt(this.anionacTarget.value);
                  let mes = parseInt(this.mesnacTarget.value) - 1;
                  let dia = parseInt(this.dianacTarget.value);
              
              
              Severity: Major
              Found in app/javascript/controllers/edad_controller.js - About 3 hrs to fix

                Method presenta_index has 79 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                          def presenta_index
                            # Presentación
                            respond_to do |format|
                              if current_usuario || (Rails.configuration.x.sivel2_consweb_max &&
                                  @conscaso.count <= Rails.configuration.x.sivel2_consweb_max.to_i)
                Severity: Major
                Found in lib/sivel2_gen/concerns/controllers/casos_controller.rb - About 3 hrs to fix

                  Method presenta_mas_index has 79 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                            def presenta_mas_index(formato)
                              formato.csv {
                                authorize! :exportaCSV, Sivel2Gen::Caso
                                atributos = %w{caso_id fecha ubicaciones victimas presponsables tipificacion memo}
                                r = CSV.generate(headers: true) do |csv|
                  Severity: Major
                  Found in lib/sivel2_gen/concerns/controllers/casos_controller.rb - About 3 hrs to fix

                    Method personas_arma_filtros_sivel2_gen has 78 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                              def personas_arma_filtros_sivel2_gen
                                caniosnac = Msip::Persona.where('anionac IS NOT NULL').
                                  pluck('distinct anionac').sort
                    
                                cmesescasos = Sivel2Gen::Caso.all.pluck('distinct fecha').
                    Severity: Major
                    Found in lib/sivel2_gen/concerns/controllers/conteos_controller.rb - About 3 hrs to fix

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

                            if l5>10000
                              l2 = ((l2/1000)+1)*1000
                              l3 = ((l3/1000)+1)*1000
                              l4 = ((l4/1000)+1)*1000
                              l5 = ((l5/1000)+1)*1000
                      Severity: Major
                      Found in app/helpers/sivel2_gen/vista_helper.rb and 1 other location - About 3 hrs to fix
                      app/helpers/sivel2_gen/vista_helper.rb on lines 149..164

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

                      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

                      Severity
                      Category
                      Status
                      Source
                      Language