next-l/enju_ndl

View on GitHub

Showing 14 of 14 total issues

Method import_record has a Cognitive Complexity of 62 (exceeds 5 allowed). Consider refactoring.
Open

      def self.import_record(doc)
        iss_itemno = URI.parse(doc.at('//dcndl:BibAdminResource[@rdf:about]').values.first).path.split('/').last
        ndl_bib_id = NdlBibIdRecord.find_by(body: iss_itemno.split('-')[1].gsub(/^I/, ''))
        return ndl_bib_id.manifestation if ndl_bib_id

Severity: Minor
Found in app/models/concerns/enju_ndl/enju_manifestation.rb - About 1 day 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_additional_attributes has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
Open

      def self.create_additional_attributes(doc, manifestation)
        title = get_title(doc)
        creators = get_creators(doc).uniq
        subjects = get_subjects(doc).uniq
        classifications = get_classifications(doc).uniq
Severity: Minor
Found in app/models/concerns/enju_ndl/enju_manifestation.rb - About 1 day 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 import_record has 139 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def self.import_record(doc)
        iss_itemno = URI.parse(doc.at('//dcndl:BibAdminResource[@rdf:about]').values.first).path.split('/').last
        ndl_bib_id = NdlBibIdRecord.find_by(body: iss_itemno.split('-')[1].gsub(/^I/, ''))
        return ndl_bib_id.manifestation if ndl_bib_id

Severity: Major
Found in app/models/concerns/enju_ndl/enju_manifestation.rb - About 5 hrs to fix

    File enju_manifestation.rb has 360 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    module EnjuNdl
      module EnjuManifestation
        extend ActiveSupport::Concern
    
        included do
    Severity: Minor
    Found in app/models/concerns/enju_ndl/enju_manifestation.rb - About 4 hrs to fix

      Method create_additional_attributes has 49 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

            def self.create_additional_attributes(doc, manifestation)
              title = get_title(doc)
              creators = get_creators(doc).uniq
              subjects = get_subjects(doc).uniq
              classifications = get_classifications(doc).uniq
      Severity: Minor
      Found in app/models/concerns/enju_ndl/enju_manifestation.rb - About 1 hr to fix

        Method search_crd has 39 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              def self.search_crd(options)
                params = { page: 1 }.merge(options)
                crd_page = params[:page].to_i
                crd_page = 1 if crd_page <= 0
                crd_startrecord = (crd_page - 1) * Question.crd_per_page + 1
        Severity: Minor
        Found in app/models/concerns/enju_ndl/enju_question.rb - About 1 hr to fix

          Method create_series_statement has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

                def self.create_series_statement(doc, manifestation)
                  series = series_title = {}
                  series[:title] = doc.at('//dcndl:seriesTitle/rdf:Description/rdf:value').try(:content)
                  series[:title_transcription] = doc.at('//dcndl:seriesTitle/rdf:Description/dcndl:transcription').try(:content)
                  series[:creator] = doc.at('//dcndl:seriesCreator').try(:content)
          Severity: Minor
          Found in app/models/concerns/enju_ndl/enju_manifestation.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 search_crd has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

                def self.search_crd(options)
                  params = { page: 1 }.merge(options)
                  crd_page = params[:page].to_i
                  crd_page = 1 if crd_page <= 0
                  crd_startrecord = (crd_page - 1) * Question.crd_per_page + 1
          Severity: Minor
          Found in app/models/concerns/enju_ndl/enju_question.rb - About 45 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

          Method get_extent has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

                def self.get_extent(doc)
                  extent = doc.at('//dcterms:extent').try(:content)
                  value = { start_page: nil, end_page: nil, height: nil }
                  if extent
                    extent = extent.split(';')
          Severity: Minor
          Found in app/models/concerns/enju_ndl/enju_manifestation.rb - About 45 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

          Method import_from_ndl_search has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

                def self.import_from_ndl_search(options)
                  # if options[:isbn]
                  lisbn = Lisbn.new(options[:isbn])
                  raise EnjuNdl::InvalidIsbn unless lisbn.valid?
                  # end
          Severity: Minor
          Found in app/models/concerns/enju_ndl/enju_manifestation.rb - About 45 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

          Method link_to_import_from_ndl has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

            def link_to_import_from_ndl(iss_itemno)
              if iss_itemno.blank?
                t('enju_ndl.not_available')
              else
                identifier_type = IdentifierType.where(name: 'iss_itemno').first
          Severity: Minor
          Found in app/helpers/ndl_books_helper.rb - About 35 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

          Method create has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

            def create
              if params[:book]
                begin
                  @manifestation = NdlBook.import_from_sru_response(params[:book].try(:[], 'iss_itemno'))
                rescue EnjuNdl::RecordNotFound
          Severity: Minor
          Found in app/controllers/ndl_books_controller.rb - About 35 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 self.get_creators(doc)
                  creators = []
                  doc.xpath('//dcterms:creator/foaf:Agent').each do |creator|
                    creators << {
                      full_name: creator.at('./foaf:name').content,
          Severity: Minor
          Found in app/models/concerns/enju_ndl/enju_manifestation.rb and 1 other location - About 30 mins to fix
          app/models/concerns/enju_ndl/enju_manifestation.rb on lines 351..360

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

          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 self.get_publishers(doc)
                  publishers = []
                  doc.xpath('//dcterms:publisher/foaf:Agent').each do |publisher|
                    publishers << {
                      full_name: publisher.at('./foaf:name').content,
          Severity: Minor
          Found in app/models/concerns/enju_ndl/enju_manifestation.rb and 1 other location - About 30 mins to fix
          app/models/concerns/enju_ndl/enju_manifestation.rb on lines 312..321

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

          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