2013-11-02 15:01:31 -04:00
|
|
|
module ActiveRecord
|
|
|
|
# Declare an enum attribute where the values map to integers in the database, but can be queried by name. Example:
|
|
|
|
#
|
|
|
|
# class Conversation < ActiveRecord::Base
|
2013-11-02 21:32:08 -04:00
|
|
|
# enum status: [ :active, :archived ]
|
2013-11-02 15:01:31 -04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# # conversation.update! status: 0
|
|
|
|
# conversation.active!
|
|
|
|
# conversation.active? # => true
|
2013-11-06 04:49:22 -05:00
|
|
|
# conversation.status # => "active"
|
2013-11-02 16:08:36 -04:00
|
|
|
#
|
2013-11-02 15:01:31 -04:00
|
|
|
# # conversation.update! status: 1
|
|
|
|
# conversation.archived!
|
|
|
|
# conversation.archived? # => true
|
2013-11-06 04:49:22 -05:00
|
|
|
# conversation.status # => "archived"
|
2013-11-02 16:08:36 -04:00
|
|
|
#
|
2013-11-02 15:01:31 -04:00
|
|
|
# # conversation.update! status: 1
|
2013-11-06 04:49:22 -05:00
|
|
|
# conversation.status = "archived"
|
2013-11-02 15:01:31 -04:00
|
|
|
#
|
|
|
|
# You can set the default value from the database declaration, like:
|
|
|
|
#
|
2013-11-02 16:08:36 -04:00
|
|
|
# create_table :conversations do |t|
|
2013-11-02 15:01:31 -04:00
|
|
|
# t.column :status, :integer, default: 0
|
|
|
|
# end
|
2013-11-02 16:08:36 -04:00
|
|
|
#
|
2013-11-02 15:01:31 -04:00
|
|
|
# Good practice is to let the first declared status be the default.
|
2013-11-02 21:32:08 -04:00
|
|
|
#
|
2013-12-05 03:41:09 -05:00
|
|
|
# Finally, it's also possible to explicitly map the relation between attribute and
|
|
|
|
# database integer with a +Hash+:
|
2013-11-02 21:32:08 -04:00
|
|
|
#
|
|
|
|
# class Conversation < ActiveRecord::Base
|
|
|
|
# enum status: { active: 0, archived: 1 }
|
|
|
|
# end
|
2013-11-06 09:25:04 -05:00
|
|
|
#
|
2013-12-05 03:41:09 -05:00
|
|
|
# Note that when an +Array+ is used, the implicit mapping from the values to database
|
|
|
|
# integers is derived from the order the values appear in the array. In the example,
|
2013-12-06 14:21:12 -05:00
|
|
|
# <tt>:active</tt> is mapped to +0+ as it's the first element, and <tt>:archived</tt>
|
2013-12-05 03:41:09 -05:00
|
|
|
# is mapped to +1+. In general, the +i+-th element is mapped to <tt>i-1</tt> in the
|
|
|
|
# database.
|
|
|
|
#
|
|
|
|
# Therefore, once a value is added to the enum array, its position in the array must
|
|
|
|
# be maintained, and new values should only be added to the end of the array. To
|
|
|
|
# remove unused values, the explicit +Hash+ syntax should be used.
|
|
|
|
#
|
2013-11-06 09:25:04 -05:00
|
|
|
# In rare circumstances you might need to access the mapping directly.
|
|
|
|
# The mappings are exposed through a constant with the attributes name:
|
|
|
|
#
|
|
|
|
# Conversation::STATUS # => { "active" => 0, "archived" => 1 }
|
|
|
|
#
|
|
|
|
# Use that constant when you need to know the ordinal value of an enum:
|
|
|
|
#
|
|
|
|
# Conversation.where("status <> ?", Conversation::STATUS[:archived])
|
2013-11-02 15:01:31 -04:00
|
|
|
module Enum
|
|
|
|
def enum(definitions)
|
2013-11-04 13:36:22 -05:00
|
|
|
klass = self
|
2013-11-02 15:01:31 -04:00
|
|
|
definitions.each do |name, values|
|
2013-12-22 06:53:39 -05:00
|
|
|
# STATUS = { }
|
2013-11-06 09:25:04 -05:00
|
|
|
enum_values = _enum_methods_module.const_set name.to_s.upcase, ActiveSupport::HashWithIndifferentAccess.new
|
2013-11-04 18:55:29 -05:00
|
|
|
name = name.to_sym
|
2013-11-02 15:01:31 -04:00
|
|
|
|
2013-11-04 13:36:22 -05:00
|
|
|
_enum_methods_module.module_eval do
|
2013-12-22 06:53:39 -05:00
|
|
|
# def status=(value) self[:status] = STATUS[value] end
|
2013-11-04 13:54:46 -05:00
|
|
|
define_method("#{name}=") { |value|
|
|
|
|
unless enum_values.has_key?(value)
|
|
|
|
raise ArgumentError, "'#{value}' is not a valid #{name}"
|
|
|
|
end
|
|
|
|
self[name] = enum_values[value]
|
|
|
|
}
|
2013-11-02 15:01:31 -04:00
|
|
|
|
2013-12-22 06:53:39 -05:00
|
|
|
# def status() STATUS.key self[:status] end
|
2013-11-04 13:36:22 -05:00
|
|
|
define_method(name) { enum_values.key self[name] }
|
2013-11-02 15:01:31 -04:00
|
|
|
|
2013-11-04 13:36:22 -05:00
|
|
|
pairs = values.respond_to?(:each_pair) ? values.each_pair : values.each_with_index
|
|
|
|
pairs.each do |value, i|
|
2013-11-06 09:25:04 -05:00
|
|
|
enum_values[value] = i
|
2013-11-02 15:01:31 -04:00
|
|
|
|
2013-12-22 06:53:39 -05:00
|
|
|
# scope :active, -> { where status: 0 }
|
2013-11-04 13:36:22 -05:00
|
|
|
klass.scope value, -> { klass.where name => i }
|
2013-11-02 15:01:31 -04:00
|
|
|
|
2013-12-22 06:53:39 -05:00
|
|
|
# def active?() status == 0 end
|
2013-11-04 13:36:22 -05:00
|
|
|
define_method("#{value}?") { self[name] == i }
|
2013-11-02 15:01:31 -04:00
|
|
|
|
2013-12-23 10:18:06 -05:00
|
|
|
# def active!() update! status: :active end
|
2013-11-06 09:25:04 -05:00
|
|
|
define_method("#{value}!") { update! name => value }
|
2013-11-04 13:36:22 -05:00
|
|
|
end
|
2013-11-02 15:01:31 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-11-04 13:36:22 -05:00
|
|
|
|
2013-12-05 21:12:42 -05:00
|
|
|
private
|
|
|
|
def _enum_methods_module
|
|
|
|
@_enum_methods_module ||= begin
|
|
|
|
mod = Module.new
|
|
|
|
include mod
|
|
|
|
mod
|
|
|
|
end
|
2013-11-04 13:36:22 -05:00
|
|
|
end
|
2013-11-02 15:01:31 -04:00
|
|
|
end
|
|
|
|
end
|