Showing 10 of 10 total issues
Method package_metadata
has a Cognitive Complexity of 41 (exceeds 5 allowed). Consider refactoring. Open
def package_metadata(d, f)
o = {}
o['filename'] = 'objects/' + f.name
o['dc.title'] = d.title
if d.description
- Read upRead up
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 package_metadata
has 82 lines of code (exceeds 25 allowed). Consider refactoring. Open
def package_metadata(d, f)
o = {}
o['filename'] = 'objects/' + f.name
o['dc.title'] = d.title
if d.description
Method prepare
has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring. Open
def prepare(uuid: nil,
dir_scheme: :uuid,
delay: 0)
success = false
- Read upRead up
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 prepare
has 63 lines of code (exceeds 25 allowed). Consider refactoring. Open
def prepare(uuid: nil,
dir_scheme: :uuid,
delay: 0)
success = false
Method build_directory_name
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
def self.build_directory_name(metadata_record, directory_name_scheme)
doi = metadata_record[:doi]
uuid = metadata_record[:uuid]
title = metadata_record[:title].strip.gsub(' ', '-').gsub('/', '-')
time = Time.new
Method row_to_hash
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def self.row_to_hash(row)
id = row['id']
uuid = row['uuid']
# Archivematica stores path as BLOB, so need to convert path to Hex, to search for it
# and use hex function in DB query
- Read upRead up
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 pending
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def self.pending
entries = Dir.entries Preservation.ingest_path
dirs = []
entries.each do |entry|
path = File.join(Preservation.ingest_path, entry)
- Read upRead up
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
Consider simplifying this complex logical expression. Open
if !dir_name.nil? &&
!dir_name.empty? &&
!Preservation::Report::Transfer.in_db?(dir_name) &&
d.doi &&
!d.files.empty? &&
Method prepare_batch
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def prepare_batch(max: nil,
dir_scheme: :uuid,
delay: 30)
collection_extractor = Puree::Extractor::Collection.new config: @config,
resource: :dataset
- Read upRead up
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 build_directory_name
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def self.build_directory_name(metadata_record, directory_name_scheme)
doi = metadata_record[:doi]
uuid = metadata_record[:uuid]
title = metadata_record[:title].strip.gsub(' ', '-').gsub('/', '-')
time = Time.new
- Read upRead up
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"