3scale/porta

View on GitHub
app/models/web_hook_failures.rb

Summary

Maintainability
A
35 mins
Test Coverage

WebHookFailures#to_xml refers to 'options' more than self (maybe move it to another class?)
Open

    builder = options[:builder] || ThreeScale::XML::Builder.new
    builder.tag!(options[:root] || 'webhooks-failures') do |xml|
      all.each do |failure|
        failure.to_xml(options.merge(builder: builder))
Severity: Minor
Found in app/models/web_hook_failures.rb by reek

Feature Envy occurs when a code fragment references another object more often than it references itself, or when several clients do the same series of manipulations on a particular type of object.

Feature Envy reduces the code's ability to communicate intent: code that "belongs" on one class but which is located in another can be hard to find, and may upset the "System of Names" in the host class.

Feature Envy also affects the design's flexibility: A code fragment that is in the wrong class creates couplings that may not be natural within the application's domain, and creates a loss of cohesion in the unwilling host class.

Feature Envy often arises because it must manipulate other objects (usually its arguments) to get them into a useful form, and one force preventing them (the arguments) doing this themselves is that the common knowledge lives outside the arguments, or the arguments are of too basic a type to justify extending that type. Therefore there must be something which 'knows' about the contents or purposes of the arguments. That thing would have to be more than just a basic type, because the basic types are either containers which don't know about their contents, or they are single objects which can't capture their relationship with their fellows of the same type. So, this thing with the extra knowledge should be reified into a class, and the utility method will most likely belong there.

Example

Running Reek on:

class Warehouse
  def sale_price(item)
    (item.price - item.rebate) * @vat
  end
end

would report:

Warehouse#total_price refers to item more than self (FeatureEnvy)

since this:

(item.price - item.rebate)

belongs to the Item class, not the Warehouse.

WebHookFailures#to_xml contains iterators nested 2 deep
Open

      all.each do |failure|
Severity: Minor
Found in app/models/web_hook_failures.rb by reek

A Nested Iterator occurs when a block contains another block.

Example

Given

class Duck
  class << self
    def duck_names
      %i!tick trick track!.each do |surname|
        %i!duck!.each do |last_name|
          puts "full name is #{surname} #{last_name}"
        end
      end
    end
  end
end

Reek would report the following warning:

test.rb -- 1 warning:
  [5]:Duck#duck_names contains iterators nested 2 deep (NestedIterators)

WebHookFailures#self.add has 5 parameters
Open

  def self.add(provider_id, exception, id, url, xml)
Severity: Minor
Found in app/models/web_hook_failures.rb by reek

A Long Parameter List occurs when a method has a lot of parameters.

Example

Given

class Dummy
  def long_list(foo,bar,baz,fling,flung)
    puts foo,bar,baz,fling,flung
  end
end

Reek would report the following warning:

test.rb -- 1 warning:
  [2]:Dummy#long_list has 5 parameters (LongParameterList)

A common solution to this problem would be the introduction of parameter objects.

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

  def self.add(provider_id, exception, id, url, xml)
Severity: Minor
Found in app/models/web_hook_failures.rb - About 35 mins to fix

    WebHookFailures#all has the variable name 'e'
    Open

        _all.map { |e| WebHook::Failure.parse(e) }
    Severity: Minor
    Found in app/models/web_hook_failures.rb by reek

    An Uncommunicative Variable Name is a variable name that doesn't communicate its intent well enough.

    Poor names make it hard for the reader to build a mental picture of what's going on in the code. They can also be mis-interpreted; and they hurt the flow of reading, because the reader must slow down to interpret the names.

    There are no issues that match your filters.

    Category
    Status