next-l/enju_leaf

View on GitHub
app/models/concerns/enju_ndl/enju_manifestation.rb

Summary

Maintainability
F
3 days
Test Coverage
A
93%

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

      def import_record(doc)
        iss_itemno = URI.parse(doc.at('//dcndl:BibAdminResource[@rdf:about]').values.first).path.split('/').last
        ndl_bib_id_record =NdlBibIdRecord.find_by(body: iss_itemno)
        return ndl_bib_id_record.manifestation if ndl_bib_id_record

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

      def 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 6 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 import_record has 119 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def import_record(doc)
        iss_itemno = URI.parse(doc.at('//dcndl:BibAdminResource[@rdf:about]').values.first).path.split('/').last
        ndl_bib_id_record =NdlBibIdRecord.find_by(body: iss_itemno)
        return ndl_bib_id_record.manifestation if ndl_bib_id_record

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

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

    module EnjuNdl
      module EnjuManifestation
        extend ActiveSupport::Concern
    
        module ClassMethods
    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 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 import_from_ndl_search has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

              def import_from_ndl_search(options)
                manifestation = isbn = nil
                if options[:jpno]
                  manifestation = JpnoRecord.find_by(body: options[:jpno])&.manifestation
                elsif options[:isbn]
        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 create_series_statement has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

              def 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 25 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 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 341..350

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

        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 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 302..311

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

        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