Sha256: cbb1959c7c285a4c93576755e8946c6a5aff6fadc97b15bdf84534a988aaf25d

Contents?: true

Size: 1.71 KB

Versions: 3

Compression:

Stored size: 1.71 KB

Contents

require 'rails_best_practices/checks/check'

module RailsBestPractices
  module Checks
    # Check a controller to make sure adding a model virual attribute to simplify model creation.
    #
    # Implementation: check arguments of params#[]= before calling save, 
    # if they have duplicated arguments, then the model may need to add a model virtual attribute.
    class AddModelVirtualAttributeCheck < Check
      
      def interesting_nodes
        [:defn]
      end
      
      def interesting_files
        /_controller.rb$/
      end

      def evaluate_start(node)
        @variables = {}
        node.recursive_children do |child|
          case child.node_type
          when :attrasgn
            attribute_assignment(child)
          when :call
            call_assignment(child)
          else
          end
        end
        @variables = nil
      end
      
      private
      
      def attribute_assignment(node)
        variable = node.subject
        arguments_node = nil
        node.arguments.recursive_children do |child|
          if :[] == child.message
            arguments_node = child
            break
          end
        end
        return if variable.nil? or arguments_node.nil?
        @variables[variable] ||= []
        @variables[variable] << {:message => node.message, :arguments => arguments_node}
      end
      
      def call_assignment(node)
        if node.message == :save
          variable = node.subject
          add_error "add model virtual attribute (for #{node.subject.to_ruby})" if params_dup?(@variables[variable].collect {|h| h[:arguments]})
        end
      end
      
      def params_dup?(nodes)
        return false if nodes.nil?
        !nodes.dups.empty?
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rails_best_practices-0.2.13 lib/rails_best_practices/checks/add_model_virtual_attribute_check.rb
rails_best_practices-0.2.12 lib/rails_best_practices/checks/add_model_virtual_attribute_check.rb
rails_best_practices-0.2.11 lib/rails_best_practices/checks/add_model_virtual_attribute_check.rb