2017-10-12 14:13:45 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-19 12:45:07 -04:00
|
|
|
require "active_model/attribute_set"
|
|
|
|
require "active_model/attribute/user_provided_default"
|
2017-10-12 14:13:45 -04:00
|
|
|
|
|
|
|
module ActiveModel
|
|
|
|
module Attributes #:nodoc:
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
include ActiveModel::AttributeMethods
|
|
|
|
|
|
|
|
included do
|
|
|
|
attribute_method_suffix "="
|
|
|
|
class_attribute :attribute_types, :_default_attributes, instance_accessor: false
|
2017-10-19 12:45:07 -04:00
|
|
|
self.attribute_types = Hash.new(Type.default_value)
|
|
|
|
self._default_attributes = AttributeSet.new({})
|
2017-10-12 14:13:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
module ClassMethods
|
2017-10-19 12:45:07 -04:00
|
|
|
def attribute(name, type = Type::Value.new, **options)
|
|
|
|
name = name.to_s
|
|
|
|
if type.is_a?(Symbol)
|
|
|
|
type = ActiveModel::Type.lookup(type, **options.except(:default))
|
|
|
|
end
|
|
|
|
self.attribute_types = attribute_types.merge(name => type)
|
|
|
|
define_default_attribute(name, options.fetch(:default, NO_DEFAULT_PROVIDED), type)
|
2018-01-21 22:06:59 -05:00
|
|
|
define_attribute_method(name)
|
2017-10-12 14:13:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def define_method_attribute=(name)
|
2018-03-02 00:09:24 -05:00
|
|
|
safe_name = name.unpack1("h*".freeze)
|
2017-10-12 14:13:45 -04:00
|
|
|
ActiveModel::AttributeMethods::AttrNames.set_name_cache safe_name, name
|
|
|
|
|
|
|
|
generated_attribute_methods.module_eval <<-STR, __FILE__, __LINE__ + 1
|
|
|
|
def __temp__#{safe_name}=(value)
|
|
|
|
name = ::ActiveModel::AttributeMethods::AttrNames::ATTR_#{safe_name}
|
|
|
|
write_attribute(name, value)
|
|
|
|
end
|
|
|
|
alias_method #{(name + '=').inspect}, :__temp__#{safe_name}=
|
|
|
|
undef_method :__temp__#{safe_name}=
|
|
|
|
STR
|
|
|
|
end
|
2017-10-19 12:45:07 -04:00
|
|
|
|
|
|
|
NO_DEFAULT_PROVIDED = Object.new # :nodoc:
|
|
|
|
private_constant :NO_DEFAULT_PROVIDED
|
|
|
|
|
|
|
|
def define_default_attribute(name, value, type)
|
|
|
|
self._default_attributes = _default_attributes.deep_dup
|
|
|
|
if value == NO_DEFAULT_PROVIDED
|
|
|
|
default_attribute = _default_attributes[name].with_type(type)
|
|
|
|
else
|
|
|
|
default_attribute = Attribute::UserProvidedDefault.new(
|
|
|
|
name,
|
|
|
|
value,
|
|
|
|
type,
|
|
|
|
_default_attributes.fetch(name.to_s) { nil },
|
|
|
|
)
|
|
|
|
end
|
|
|
|
_default_attributes[name] = default_attribute
|
|
|
|
end
|
2017-10-12 14:13:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(*)
|
2017-10-19 12:45:07 -04:00
|
|
|
@attributes = self.class._default_attributes.deep_dup
|
2017-10-12 14:13:45 -04:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2018-02-07 16:14:45 -05:00
|
|
|
def attributes
|
|
|
|
@attributes.to_hash
|
|
|
|
end
|
|
|
|
|
2017-10-12 14:13:45 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def write_attribute(attr_name, value)
|
|
|
|
name = if self.class.attribute_alias?(attr_name)
|
|
|
|
self.class.attribute_alias(attr_name).to_s
|
|
|
|
else
|
|
|
|
attr_name.to_s
|
|
|
|
end
|
|
|
|
|
2017-11-10 00:04:51 -05:00
|
|
|
@attributes.write_from_user(name, value)
|
2017-10-19 12:45:07 -04:00
|
|
|
value
|
2017-10-12 14:13:45 -04:00
|
|
|
end
|
|
|
|
|
2017-10-19 12:45:07 -04:00
|
|
|
def attribute(attr_name)
|
|
|
|
name = if self.class.attribute_alias?(attr_name)
|
|
|
|
self.class.attribute_alias(attr_name).to_s
|
2017-10-12 14:13:45 -04:00
|
|
|
else
|
2017-10-19 12:45:07 -04:00
|
|
|
attr_name.to_s
|
2017-10-12 14:13:45 -04:00
|
|
|
end
|
2017-10-19 12:45:07 -04:00
|
|
|
@attributes.fetch_value(name)
|
2017-10-12 14:13:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Handle *= for method_missing.
|
|
|
|
def attribute=(attribute_name, value)
|
|
|
|
write_attribute(attribute_name, value)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module AttributeMethods #:nodoc:
|
|
|
|
AttrNames = Module.new {
|
|
|
|
def self.set_name_cache(name, value)
|
|
|
|
const_name = "ATTR_#{name}"
|
|
|
|
unless const_defined? const_name
|
2018-06-05 19:50:58 -04:00
|
|
|
const_set const_name, -value
|
2017-10-12 14:13:45 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|