3scale/porta

View on GitHub
app/models/proxy.rb

Summary

Maintainability
D
2 days
Test Coverage

Mass assignment is not restricted using attr_accessible
Open

class Proxy < ApplicationRecord # rubocop:disable Metrics/ClassLength
Severity: Critical
Found in app/models/proxy.rb by brakeman

This warning comes up if a model does not limit what attributes can be set through mass assignment.

In particular, this check looks for attr_accessible inside model definitions. If it is not found, this warning will be issued.

Brakeman also warns on use of attr_protected - especially since it was found to be vulnerable to bypass. Warnings for mass assignment on models using attr_protected will be reported, but at a lower confidence level.

Note that disabling mass assignment globally will suppress these warnings.

Class Proxy has 59 methods (exceeds 20 allowed). Consider refactoring.
Open

class Proxy < ApplicationRecord # rubocop:disable Metrics/ClassLength
  include AfterCommitQueue
  include BackendApiLogic::ProxyExtension
  prepend BackendApiLogic::RoutingPolicy
  include GatewaySettings::ProxyExtension
Severity: Major
Found in app/models/proxy.rb - About 1 day to fix

    File proxy.rb has 510 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require 'ipaddr'
    require 'resolv'
    
    class Proxy < ApplicationRecord # rubocop:disable Metrics/ClassLength
      include AfterCommitQueue
    Severity: Major
    Found in app/models/proxy.rb - About 1 day to fix

      Proxy#authorization_credentials refers to 'params' more than self (maybe move it to another class?)
      Open

          params.values_at(:user_key).compact.presence || params.values_at(:app_id, :app_key)
      Severity: Minor
      Found in app/models/proxy.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.

      Proxy::PortGenerator#call refers to 'uri' more than self (maybe move it to another class?)
      Wontfix

              value = URI::Generic.new(uri.scheme, uri.userinfo, uri.host, uri.port, uri.registry, uri.path, uri.opaque, uri.query, uri.fragment).to_s
      Severity: Minor
      Found in app/models/proxy.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.

      Proxy has 8 constants
      Open

      class Proxy < ApplicationRecord # rubocop:disable Metrics/ClassLength
      Severity: Minor
      Found in app/models/proxy.rb by reek

      Too Many Constants is a special case of LargeClass.

      Example

      Given this configuration

      TooManyConstants:
        max_constants: 3

      and this code:

      class TooManyConstants
        CONST_1 = :dummy
        CONST_2 = :dummy
        CONST_3 = :dummy
        CONST_4 = :dummy
      end

      Reek would emit the following warning:

      test.rb -- 1 warnings:
        [1]:TooManyConstants has 4 constants (TooManyConstants)

      Proxy has at least 54 methods
      Open

      class Proxy < ApplicationRecord # rubocop:disable Metrics/ClassLength
      Severity: Minor
      Found in app/models/proxy.rb by reek

      Too Many Methods is a special case of LargeClass.

      Example

      Given this configuration

      TooManyMethods:
        max_methods: 3

      and this code:

      class TooManyMethods
        def one; end
        def two; end
        def three; end
        def four; end
      end

      Reek would emit the following warning:

      test.rb -- 1 warning:
        [1]:TooManyMethods has at least 4 methods (TooManyMethods)

      Method policies_configs_are_correct has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def policies_configs_are_correct
            errors.add(:policies_config, :invalid_policy) if any?(&:invalid?)
            errors.add(:policies_config, :missing_apicast) unless detect(&:default?)
            errors.add(:policies_config, :too_long, count: MAX_LENGTH) if Proxy.type_for_attribute('policies_config').serialize(self).size > MAX_LENGTH
          rescue NoMethodError
      Severity: Minor
      Found in app/models/proxy.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

      Proxy::PortGenerator#call calls '@model[attribute]' 2 times
      Open

            attribute_value = @model[attribute]
            return if attribute_value.blank?
      
            begin
              uri = URI.parse(attribute_value)
      Severity: Minor
      Found in app/models/proxy.rb by reek

      Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

      Reek implements a check for Duplicate Method Call.

      Example

      Here's a very much simplified and contrived example. The following method will report a warning:

      def double_thing()
        @other.thing + @other.thing
      end

      One quick approach to silence Reek would be to refactor the code thus:

      def double_thing()
        thing = @other.thing
        thing + thing
      end

      A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

      class Other
        def double_thing()
          thing + thing
        end
      end

      The approach you take will depend on balancing other factors in your code.

      Proxy#hostname_rewrite_for_sandbox calls 'self.api_backend' 2 times
      Open

            (self.api_backend ? URI(self.api_backend).host : 'none')
      Severity: Minor
      Found in app/models/proxy.rb by reek

      Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

      Reek implements a check for Duplicate Method Call.

      Example

      Here's a very much simplified and contrived example. The following method will report a warning:

      def double_thing()
        @other.thing + @other.thing
      end

      One quick approach to silence Reek would be to refactor the code thus:

      def double_thing()
        thing = @other.thing
        thing + thing
      end

      A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

      class Other
        def double_thing()
          thing + thing
        end
      end

      The approach you take will depend on balancing other factors in your code.

      Proxy assumes too much for instance variable '@instance_locking_enabled'
      Wontfix

      class Proxy < ApplicationRecord # rubocop:disable Metrics/ClassLength
      Severity: Minor
      Found in app/models/proxy.rb by reek

      Classes should not assume that instance variables are set or present outside of the current class definition.

      Good:

      class Foo
        def initialize
          @bar = :foo
        end
      
        def foo?
          @bar == :foo
        end
      end

      Good as well:

      class Foo
        def foo?
          bar == :foo
        end
      
        def bar
          @bar ||= :foo
        end
      end

      Bad:

      class Foo
        def go_foo!
          @bar = :foo
        end
      
        def foo?
          @bar == :foo
        end
      end

      Example

      Running Reek on:

      class Dummy
        def test
          @ivar
        end
      end

      would report:

      [1]:InstanceVariableAssumption: Dummy assumes too much for instance variable @ivar

      Note that this example would trigger this smell warning as well:

      class Parent
        def initialize(omg)
          @omg = omg
        end
      end
      
      class Child < Parent
        def foo
          @omg
        end
      end

      The way to address the smell warning is that you should create an attr_reader to use @omg in the subclass and not access @omg directly like this:

      class Parent
        attr_reader :omg
      
        def initialize(omg)
          @omg = omg
        end
      end
      
      class Child < Parent
        def foo
          omg
        end
      end

      Directly accessing instance variables is considered a smell because it breaks encapsulation and makes it harder to reason about code.

      If you don't want to expose those methods as public API just make them private like this:

      class Parent
        def initialize(omg)
          @omg = omg
        end
      
        private
        attr_reader :omg
      end
      
      class Child < Parent
        def foo
          omg
        end
      end

      Current Support in Reek

      An instance variable must:

      • be set in the constructor
      • or be accessed through a method with lazy initialization / memoization.

      If not, Instance Variable Assumption will be reported.

      Proxy#update_domains calls 'self.class' 2 times
      Open

            staging_domain: self.class.extract_domain(sandbox_endpoint.presence || default_staging_endpoint),
            production_domain: self.class.extract_domain(endpoint.presence || default_production_endpoint),
      Severity: Minor
      Found in app/models/proxy.rb by reek

      Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

      Reek implements a check for Duplicate Method Call.

      Example

      Here's a very much simplified and contrived example. The following method will report a warning:

      def double_thing()
        @other.thing + @other.thing
      end

      One quick approach to silence Reek would be to refactor the code thus:

      def double_thing()
        thing = @other.thing
        thing + thing
      end

      A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

      class Other
        def double_thing()
          thing + thing
        end
      end

      The approach you take will depend on balancing other factors in your code.

      Proxy::PolicyConfig#name is a writable attribute
      Open

          attr_accessor :name, :version, :configuration, :enabled
      Severity: Minor
      Found in app/models/proxy.rb by reek

      A class that publishes a setter for an instance variable invites client classes to become too intimate with its inner workings, and in particular with its representation of state.

      The same holds to a lesser extent for getters, but Reek doesn't flag those.

      Example

      Given:

      class Klass
        attr_accessor :dummy
      end

      Reek would emit the following warning:

      reek test.rb
      
      test.rb -- 1 warning:
        [2]:Klass declares the writable attribute dummy (Attribute)

      Proxy::PolicyConfig#version is a writable attribute
      Open

          attr_accessor :name, :version, :configuration, :enabled
      Severity: Minor
      Found in app/models/proxy.rb by reek

      A class that publishes a setter for an instance variable invites client classes to become too intimate with its inner workings, and in particular with its representation of state.

      The same holds to a lesser extent for getters, but Reek doesn't flag those.

      Example

      Given:

      class Klass
        attr_accessor :dummy
      end

      Reek would emit the following warning:

      reek test.rb
      
      test.rb -- 1 warning:
        [2]:Klass declares the writable attribute dummy (Attribute)

      Proxy::PolicyConfig#configuration is a writable attribute
      Open

          attr_accessor :name, :version, :configuration, :enabled
      Severity: Minor
      Found in app/models/proxy.rb by reek

      A class that publishes a setter for an instance variable invites client classes to become too intimate with its inner workings, and in particular with its representation of state.

      The same holds to a lesser extent for getters, but Reek doesn't flag those.

      Example

      Given:

      class Klass
        attr_accessor :dummy
      end

      Reek would emit the following warning:

      reek test.rb
      
      test.rb -- 1 warning:
        [2]:Klass declares the writable attribute dummy (Attribute)

      Proxy::PolicyConfig#enabled is a writable attribute
      Open

          attr_accessor :name, :version, :configuration, :enabled
      Severity: Minor
      Found in app/models/proxy.rb by reek

      A class that publishes a setter for an instance variable invites client classes to become too intimate with its inner workings, and in particular with its representation of state.

      The same holds to a lesser extent for getters, but Reek doesn't flag those.

      Example

      Given:

      class Klass
        attr_accessor :dummy
      end

      Reek would emit the following warning:

      reek test.rb
      
      test.rb -- 1 warning:
        [2]:Klass declares the writable attribute dummy (Attribute)

      Proxy#authentication_params_for_proxy has the variable name 'x'
      Open

          params.keys.map do |x|
      Severity: Minor
      Found in app/models/proxy.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