team-umlaut/umlaut

View on GitHub

Showing 236 of 236 total issues

Method enhance_referent has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

  def enhance_referent(key, value, metadata=true, private_data=false, options = {})
Severity: Minor
Found in app/models/referent.rb - About 35 mins to fix

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

      def url_resolves(url)
        uri_obj = URI.parse(url)
        response = Net::HTTP.start(uri_obj.host, uri_obj.port) {|http|
          http.head(uri_obj.request_uri)
        }
    Severity: Minor
    Found in app/service_adaptors/ulrichs_cover.rb and 1 other location - About 35 mins to fix
    app/service_adaptors/elsevier_cover.rb on lines 40..52

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

    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

      def url_resolves(url)
        uri_obj = URI.parse(url)
        response = Net::HTTP.start(uri_obj.host, uri_obj.port) {|http|
          http.head(uri_obj.request_uri)
        }
    Severity: Minor
    Found in app/service_adaptors/elsevier_cover.rb and 1 other location - About 35 mins to fix
    app/service_adaptors/ulrichs_cover.rb on lines 40..52

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

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

      def calculate_url_for_response(svc_response)
        svc = ServiceStore.instantiate_service!(svc_response.service_id, nil)
        destination =  svc.response_url(svc_response, params)
    
        raise_missing_url!(svc_response) if destination.blank?
    Severity: Minor
    Found in app/controllers/link_router_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

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

      def render_service_credits
        if @collection
          content = "".html_safe
                
          content << t('umlaut.misc.powered_by_umlaut').html_safe + " " + link_to("Umlaut", "https://github.com/team-umlaut/umlaut") + ". ".html_safe
    Severity: Minor
    Found in app/helpers/umlaut/footer_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_download_link has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def create_download_link(request, editions)
        return nil unless editions
        ed = editions[0] if editions.length
        return nil unless ed['ocaid']
        server = "www.archive.org"
    Severity: Minor
    Found in app/service_adaptors/open_library.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 proxy has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def proxy
        svc_resp = ServiceResponse.find(params[:id])
        url_str =  svc_resp.view_data[:url]
        uri = nil
        begin
    Severity: Minor
    Found in app/controllers/resource_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

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

      def config
        # cache hash loaded from YAML, ensure it has the keys we expect.
        unless defined? @services_config_list
          yaml_path = File.expand_path("config/umlaut_services.yml", Rails.root)
    
    
    Severity: Minor
    Found in app/models/service_store.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 calc_highlighted_sections! has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def calc_highlighted_sections!
          sections = []
    
          if umlaut_request.get_service_type("fulltext").present?
            sections << "fulltext"
    Severity: Minor
    Found in app/helpers/umlaut/section_highlights.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 co_params_fingerprint has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def self.co_params_fingerprint(params)
    
        # Don't use ctx_time, consider two co's equal if they are equal but for ctx_tim. 
        # exclude cache-busting "_" key that JQuery adds. Fine to bust HTTP cache, but
        # don't want to it to force new Umlaut processing. 
    Severity: Minor
    Found in app/models/request.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 add_service_response has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def add_service_response(response_data)
    
        raise ArgumentError.new("missing required `:service` key") unless response_data[:service].kind_of?(Service)
        raise ArgumentError.new("missing required `:service_type_value` key") unless response_data[:service_type_value]
        
    Severity: Minor
    Found in app/models/request.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 send_txt has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def send_txt
        @number = params[:number]
        # Remove any punctuation or spaces etc
        @number.gsub!(/[^\d]/, '') if @number
        @provider = params[:provider]
    Severity: Minor
    Found in app/controllers/export_email_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

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

      def sort_boosted_responses(list)
        return list unless @boost_targets.present?
    
        preferred = []
        other_targets = list
    Severity: Minor
    Found in app/service_adaptors/sfx.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

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

          if (@include_similar)
            url = more_like_this_url(first_hit)
            # Pre-checking for actual hits not currently working, disabled.
            if (true || ( hits = check_for_hits(url) ) > 0 )
              request.add_service_response( 
    Severity: Minor
    Found in app/service_adaptors/scopus.rb and 1 other location - About 35 mins to fix
    app/service_adaptors/scopus2.rb on lines 179..188

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

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

      def is_conference?(marc)
        # Check the leader/008 for books and serials
        return true if marc['008'].value[29,1] == '1' && marc.leader[6,1].match(/[at]/) && marc.leader[7,1].match(/[abcdms]/)      
        # Check the leader/008 for scores and recordings
        return true if marc['008'].value[30,2] == 'c' && marc.leader[6,1].match(/[cdij]/) && marc.leader[7,1].match(/[abcdms]/)
    Severity: Minor
    Found in app/service_adaptors/opac.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 get_epage(rft)
        if rft.metadata['epage'].present?
          return rft.metadata['epage']
        elsif rft.metadata['pages'] =~ /\A.*\- *(.*) *\Z/
          return $1
    Severity: Minor
    Found in app/mixin_logic/metadata_helper.rb and 1 other location - About 35 mins to fix
    app/mixin_logic/metadata_helper.rb on lines 316..325

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

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

      def sort_sunk_responses(list)
        return list unless @sink_targets.present?
        
        sunk = []
        other_targets = list
    Severity: Minor
    Found in app/service_adaptors/sfx.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 do_truncate_to_db_limit! has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def do_truncate_to_db_limit!
        
        
        self.class._truncate_to_db_limit_attributes.each do |attribute_name|
    
    
    Severity: Minor
    Found in lib/truncate_to_db_limit.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 get_spage(rft)
        if rft.metadata['spage'].present?
          return rft.metadata['spage']
        elsif rft.metadata['pages'] =~ /\A *(.*?) *\-.*\Z/
          return $1
    Severity: Minor
    Found in app/mixin_logic/metadata_helper.rb and 1 other location - About 35 mins to fix
    app/mixin_logic/metadata_helper.rb on lines 329..338

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

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

      def parse_for_fulltext_links(marc, request)    
        eight_fifty_sixes = []    
        marc.find_all { | f| '856' === f.tag}.each do | link |
          eight_fifty_sixes << link
        end    
    Severity: Minor
    Found in app/service_adaptors/opac.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

    Severity
    Category
    Status
    Source
    Language