1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
require 'awesome_nested_set/model/prunable'
require 'awesome_nested_set/model/movable'
require 'awesome_nested_set/model/transactable'
require 'awesome_nested_set/model/relatable'
require 'awesome_nested_set/model/rebuildable'
require 'awesome_nested_set/model/validatable'
require 'awesome_nested_set/iterator'
module CollectiveIdea #:nodoc:
module Acts #:nodoc:
module NestedSet #:nodoc:
module Model
extend ActiveSupport::Concern
included do
delegate :quoted_table_name, :arel_table, :to => self
extend Validatable
extend Rebuildable
include Movable
include Prunable
include Relatable
include Transactable
end
module ClassMethods
def associate_parents(objects)
return objects unless objects.all? {|o| o.respond_to?(:association)}
id_indexed = objects.index_by(&primary_column_name.to_sym)
objects.each do |object|
association = object.association(:parent)
parent = id_indexed[object.parent_id]
if !association.loaded? && parent
association.target = parent
add_to_inverse_association(association, parent)
end
end
end
def add_to_inverse_association(association, record)
inverse_reflection = association.send(:inverse_reflection_for, record)
inverse = record.association(inverse_reflection.name)
inverse.target << association.owner
inverse.loaded!
end
def children_of(parent_id)
where arel_table[parent_column_name].eq(parent_id)
end
# Iterates over tree elements and determines the current level in the tree.
# Only accepts default ordering, odering by an other column than lft
# does not work. This method is much more efficient than calling level
# because it doesn't require any additional database queries.
#
# Example:
# Category.each_with_level(Category.root.self_and_descendants) do |o, level|
#
def each_with_level(objects, &block)
Iterator.new(objects).each_with_level(&block)
end
def leaves
nested_set_scope.where "#{quoted_right_column_full_name} - #{quoted_left_column_full_name} = 1"
end
def left_of(node)
where arel_table[left_column_name].lt(node)
end
def left_of_right_side(node)
where arel_table[right_column_name].lteq(node)
end
def right_of(node)
where arel_table[left_column_name].gteq(node)
end
def nested_set_scope(options = {})
order = scope_order_from_options(options)
where(options[:conditions]).order(order)
end
def primary_key_scope(id)
where arel_table[primary_column_name].eq(id)
end
def root
roots.first
end
def roots
nested_set_scope.children_of nil
end
private
def scope_order_from_options(options)
options.fetch(:order, order_column_name)
end
end # end class methods
# Any instance method that returns a collection makes use of Rails 2.1's named_scope (which is bundled for Rails 2.0), so it can be treated as a finder.
#
# category.self_and_descendants.count
# category.ancestors.find(:all, :conditions => "name like '%foo%'")
# Value of the parent column
def parent_id(target = self)
target[parent_column_name]
end
def primary_id(target = self)
target[primary_column_name]
end
# Value of the left column
def left(target = self)
target[left_column_name]
end
# Value of the right column
def right(target = self)
target[right_column_name]
end
# Returns true if this is a root node.
def root?
parent_id.nil?
end
# Returns true is this is a child node
def child?
!root?
end
# Returns true if this is the end of a branch.
def leaf?
persisted? && right.to_i - left.to_i == 1
end
# All nested set queries should use this nested_set_scope, which
# performs finds on the base ActiveRecord class, using the :scope
# declared in the acts_as_nested_set declaration.
def nested_set_scope(options = {})
add_scope_conditions_to_options(options)
self.class.base_class.default_scoped.nested_set_scope options
end
# Separate an other `nested_set_scope` for unscoped model
# because normal query still need activerecord `default_scope`
# Only activerecord callbacks need unscoped model to handle the nested set records
# And class level `nested_set_scope` seems just for query `root` `child` .. etc
# I think we don't have to provide unscoped `nested_set_scope` in class level.
def nested_set_scope_without_default_scope(options = {})
add_scope_conditions_to_options(options)
self.class.base_class.unscoped.nested_set_scope options
end
def to_text
self_and_descendants.map do |node|
"#{'*'*(node.level+1)} #{node.primary_id} #{node.to_s} (#{node.parent_id}, #{node.left}, #{node.right})"
end.join("\n")
end
protected
def add_scope_conditions_to_options(options)
scopes = scope_column_names
return if scopes.empty?
options[:conditions] = scopes.map { |attr| [attr, self[attr] ] }.to_h
end
def without_self(scope)
return scope if new_record?
scope.where(["#{self.class.quoted_table_name}.#{self.class.quoted_primary_column_name} != ?", self.primary_id])
end
def store_new_parent
@move_to_new_parent_id = send("#{parent_column_name}_changed?") ? parent_id : false
true # force callback to return true
end
def has_depth_column?
nested_set_scope.column_names.map(&:to_s).include?(depth_column_name.to_s)
end
def right_most_node
@right_most_node ||= nested_set_scope_without_default_scope(
:order => {right_column_name => :desc}
).first
end
def right_most_bound
@right_most_bound ||= begin
return 0 if right_most_node.nil?
right_most_node.lock!
right_most_node[right_column_name] || 0
end
end
def set_depth!
return unless has_depth_column?
in_tenacious_transaction do
update_depth(level)
end
end
def set_depth_for_self_and_descendants!
return unless has_depth_column?
in_tenacious_transaction do
reload
self_and_descendants.select(primary_column_name).lock(true)
old_depth = self[depth_column_name] || 0
new_depth = level
update_depth(new_depth)
change_descendants_depth!(new_depth - old_depth)
new_depth
end
end
def update_depth(depth)
nested_set_scope.primary_key_scope(primary_id).
update_all(["#{quoted_depth_column_name} = ?", depth])
self[depth_column_name] = depth
end
def change_descendants_depth!(diff)
if !leaf? && diff != 0
sign = "++-"[diff <=> 0]
descendants.update_all("#{quoted_depth_column_name} = #{quoted_depth_column_name} #{sign} #{diff.abs}")
end
end
def update_counter_cache
return unless acts_as_nested_set_options[:counter_cache]
# Decrease the counter for all old parents
if old_parent = self.parent
old_parent.class.decrement_counter(acts_as_nested_set_options[:counter_cache], old_parent)
end
# Increase the counter for all new parents
if new_parent = self.reload.parent
new_parent.class.increment_counter(acts_as_nested_set_options[:counter_cache], new_parent)
end
end
def set_default_left_and_right
# adds the new node to the right of all existing nodes
self[left_column_name] = right_most_bound + 1
self[right_column_name] = right_most_bound + 2
end
# reload left, right, and parent
def reload_nested_set
reload(
:select => "#{quoted_left_column_full_name}, #{quoted_right_column_full_name}, #{quoted_parent_column_full_name}",
:lock => true
)
end
def reload_target(target, position)
if target.is_a? self.class.base_class
target.reload
elsif position != :root
nested_set_scope_without_default_scope.where(primary_column_name => target).first!
end
end
end
end
end
end
|