redmine/redmine

View on GitHub
app/models/attachment.rb

Summary

Maintainability
D
3 days
Test Coverage

Class Attachment has 50 methods (exceeds 20 allowed). Consider refactoring.
Open

class Attachment < ApplicationRecord
  include Redmine::SafeAttributes
  belongs_to :container, :polymorphic => true
  belongs_to :author, :class_name => "User"

Severity: Minor
Found in app/models/attachment.rb - About 7 hrs to fix

    File attachment.rb has 441 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require "digest"
    require "fileutils"
    require "zip"
    
    class Attachment < ApplicationRecord
    Severity: Minor
    Found in app/models/attachment.rb - About 6 hrs to fix

      Method thumbnail has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

        def thumbnail(options={})
          if thumbnailable? && readable?
            size = options[:size].to_i
            if size > 0
              # Limit the number of thumbnails per image
      Severity: Minor
      Found in app/models/attachment.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 files_to_final_location has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

        def files_to_final_location
          if @temp_file
            self.disk_directory = target_directory
            sha = Digest::SHA256.new
            Attachment.create_diskfile(filename, disk_directory) do |f|
      Severity: Minor
      Found in app/models/attachment.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 update_attachments has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

        def self.update_attachments(attachments, params)
          converted = {}
          params.each {|key, val| converted[key.to_i] = val}
          saved = true
          transaction do
      Severity: Minor
      Found in app/models/attachment.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 reuse_existing_file_if_possible has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

        def reuse_existing_file_if_possible
          original_diskfile = diskfile
          original_filename = disk_filename
          reused = with_lock do
            if existing = Attachment
      Severity: Minor
      Found in app/models/attachment.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 files_to_final_location has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def files_to_final_location
          if @temp_file
            self.disk_directory = target_directory
            sha = Digest::SHA256.new
            Attachment.create_diskfile(filename, disk_directory) do |f|
      Severity: Minor
      Found in app/models/attachment.rb - About 1 hr to fix

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

            def create_diskfile(filename, directory=nil, &block)
              timestamp = DateTime.now.strftime("%y%m%d%H%M%S")
              ascii = ''
              if %r{^[a-zA-Z0-9_\.\-]*$}.match?(filename) && filename.length <= 50
                ascii = filename
        Severity: Minor
        Found in app/models/attachment.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

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

          def move_to_target_directory!
            return unless !new_record? & readable?
        
            src = diskfile
            self.disk_directory = target_directory
        Severity: Minor
        Found in app/models/attachment.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

        Method file= has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          def file=(incoming_file)
            unless incoming_file.nil?
              @temp_file = incoming_file
              if @temp_file.respond_to?(:original_filename)
                self.filename = @temp_file.original_filename
        Severity: Minor
        Found in app/models/attachment.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

        There are no issues that match your filters.

        Category
        Status