Sha256: 30b7638def301906bb8531645f9561b34145c0f3a5f218bba0d0254bf98ba9ad
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
# +AutoIncrement+ module AutoIncrement # +AutoIncrement::Incrementor+ class Incrementor def initialize(column = nil, options = {}) if column.is_a? Hash options = column column = nil end @column = column || options[:column] || :code @options = options.reverse_merge scope: nil, initial: 1, force: false @options[:scope] = [@options[:scope]] unless @options[:scope].is_a? Array end def before_create(record) @record = record write if can_write? end alias before_validation before_create alias before_save before_create private def can_write? @record.send(@column).blank? || @options[:force] end def write @record.send :write_attribute, @column, increment end def build_scopes(query) @options[:scope].each do |scope| if scope.present? && @record.respond_to?(scope) query = query.where(scope => @record.send(scope)) end end query end def maximum query = build_scopes @record.class query.lock if lock? if string? query.select("#{@column} max") .order(Arel.sql("LENGTH(#{@column}) DESC, #{@column} DESC")) .first.try :max else query.maximum @column end end def lock? @options[:lock] == true end def increment max = maximum max.blank? ? @options[:initial] : max.next end def string? @options[:initial].class == String end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
auto_increment-1.5.0 | lib/auto_increment/incrementor.rb |