2010-07-22 03:59:58 -04:00
|
|
|
= Active Model -- model interfaces for Rails
|
|
|
|
|
|
|
|
Active Model provides a known set of interfaces for usage in model classes.
|
|
|
|
They allow for Action Pack helpers to interact with non-ActiveRecord models,
|
|
|
|
for example. Active Model also helps building custom ORMs for use outside of
|
|
|
|
the Rails framework.
|
|
|
|
|
|
|
|
Prior to Rails 3.0, if a plugin or gem developer wanted to have an object
|
|
|
|
interact with Action Pack helpers, it was required to either copy chunks of
|
|
|
|
code from Rails, or monkey patch entire helpers to make them handle objects
|
2011-03-03 22:23:30 -05:00
|
|
|
that did not exactly conform to the Active Record interface. This would result
|
2012-02-07 17:17:24 -05:00
|
|
|
in code duplication and fragile applications that broke on upgrades. Active
|
|
|
|
Model solves this by defining an explicit API. You can read more about the
|
|
|
|
API in ActiveModel::Lint::Tests.
|
2010-07-22 03:59:58 -04:00
|
|
|
|
2012-03-03 02:19:39 -05:00
|
|
|
Active Model provides a default module that implements the basic API required
|
2012-04-09 14:41:50 -04:00
|
|
|
to integrate with Action Pack out of the box: <tt>ActiveModel::Model</tt>.
|
2012-03-03 02:19:39 -05:00
|
|
|
|
|
|
|
class Person
|
|
|
|
include ActiveModel::Model
|
|
|
|
|
|
|
|
attr_accessor :name, :age
|
|
|
|
validates_presence_of :name
|
|
|
|
end
|
|
|
|
|
2012-10-10 07:45:47 -04:00
|
|
|
person = Person.new(name: 'bob', age: '18')
|
2012-03-03 02:19:39 -05:00
|
|
|
person.name # => 'bob'
|
2012-05-04 04:32:35 -04:00
|
|
|
person.age # => '18'
|
2012-04-21 16:16:38 -04:00
|
|
|
person.valid? # => true
|
2012-03-03 02:19:39 -05:00
|
|
|
|
2012-03-05 12:16:44 -05:00
|
|
|
It includes model name introspections, conversions, translations and
|
|
|
|
validations, resulting in a class suitable to be used with Action Pack.
|
2012-04-11 13:07:17 -04:00
|
|
|
See <tt>ActiveModel::Model</tt> for more examples.
|
2012-03-03 02:19:39 -05:00
|
|
|
|
2012-02-07 17:17:24 -05:00
|
|
|
Active Model also provides the following functionality to have ORM-like
|
|
|
|
behavior out of the box:
|
2010-07-22 03:59:58 -04:00
|
|
|
|
|
|
|
* Add attribute magic to objects
|
|
|
|
|
2010-01-16 20:42:53 -05:00
|
|
|
class Person
|
|
|
|
include ActiveModel::AttributeMethods
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-16 20:42:53 -05:00
|
|
|
attribute_method_prefix 'clear_'
|
2012-05-14 12:38:23 -04:00
|
|
|
define_attribute_methods :name, :age
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-16 20:42:53 -05:00
|
|
|
attr_accessor :name, :age
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-16 20:42:53 -05:00
|
|
|
def clear_attribute(attr)
|
|
|
|
send("#{attr}=", nil)
|
|
|
|
end
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
person.clear_name
|
|
|
|
person.clear_age
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-05-07 11:13:04 -04:00
|
|
|
{Learn more}[link:classes/ActiveModel/AttributeMethods.html]
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
* Callbacks for certain operations
|
2010-01-16 07:09:32 -05:00
|
|
|
|
2010-01-16 20:42:53 -05:00
|
|
|
class Person
|
2010-01-16 07:09:32 -05:00
|
|
|
extend ActiveModel::Callbacks
|
|
|
|
define_model_callbacks :create
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-16 07:09:32 -05:00
|
|
|
def create
|
2011-01-09 13:15:05 -05:00
|
|
|
run_callbacks :create do
|
2010-01-16 07:09:32 -05:00
|
|
|
# Your create action methods here
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
This generates +before_create+, +around_create+ and +after_create+
|
|
|
|
class methods that wrap your create method.
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-05-07 11:13:04 -04:00
|
|
|
{Learn more}[link:classes/ActiveModel/Callbacks.html]
|
2007-11-09 09:59:15 -05:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
* Tracking value changes
|
2010-01-14 16:29:08 -05:00
|
|
|
|
2012-10-19 10:58:30 -04:00
|
|
|
class Person
|
|
|
|
include ActiveModel::Dirty
|
|
|
|
|
|
|
|
attr_accessor :name
|
|
|
|
end
|
2010-01-16 07:09:32 -05:00
|
|
|
|
2010-01-16 06:21:07 -05:00
|
|
|
person = Person.new
|
|
|
|
person.name # => nil
|
2010-01-14 18:01:40 -05:00
|
|
|
person.changed? # => false
|
|
|
|
person.name = 'bob'
|
|
|
|
person.changed? # => true
|
|
|
|
person.changed # => ['name']
|
2010-01-16 06:21:07 -05:00
|
|
|
person.changes # => { 'name' => [nil, 'bob'] }
|
2010-01-14 18:01:40 -05:00
|
|
|
person.name = 'robert'
|
|
|
|
person.save
|
|
|
|
person.previous_changes # => {'name' => ['bob, 'robert']}
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-05-07 11:13:04 -04:00
|
|
|
{Learn more}[link:classes/ActiveModel/Dirty.html]
|
2010-01-16 07:03:20 -05:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
* Adding +errors+ interface to objects
|
2010-01-16 23:17:54 -05:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
Exposing error messages allows objects to interact with Action Pack
|
|
|
|
helpers seamlessly.
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-16 23:17:54 -05:00
|
|
|
class Person
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-16 23:17:54 -05:00
|
|
|
def initialize
|
|
|
|
@errors = ActiveModel::Errors.new(self)
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-16 23:17:54 -05:00
|
|
|
attr_accessor :name
|
|
|
|
attr_reader :errors
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-16 23:17:54 -05:00
|
|
|
def validate!
|
2010-12-19 14:37:33 -05:00
|
|
|
errors.add(:name, "can not be nil") if name.nil?
|
2010-01-16 23:17:54 -05:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-02-07 17:29:02 -05:00
|
|
|
def self.human_attribute_name(attr, options = {})
|
2010-01-16 23:17:54 -05:00
|
|
|
"Name"
|
|
|
|
end
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-16 23:17:54 -05:00
|
|
|
person.errors.full_messages
|
2010-12-19 14:37:33 -05:00
|
|
|
# => ["Name can not be nil"]
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-05-07 11:13:04 -04:00
|
|
|
{Learn more}[link:classes/ActiveModel/Errors.html]
|
2010-01-16 23:35:18 -05:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
* Model name introspection
|
2010-01-16 23:35:18 -05:00
|
|
|
|
2010-01-16 23:52:33 -05:00
|
|
|
class NamedPerson
|
|
|
|
extend ActiveModel::Naming
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-08-12 11:09:58 -04:00
|
|
|
NamedPerson.model_name # => "NamedPerson"
|
|
|
|
NamedPerson.model_name.human # => "Named person"
|
2010-01-16 23:52:33 -05:00
|
|
|
|
2012-05-07 11:13:04 -04:00
|
|
|
{Learn more}[link:classes/ActiveModel/Naming.html]
|
2010-01-16 23:52:33 -05:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
* Observer support
|
2010-01-17 03:12:12 -05:00
|
|
|
|
2012-05-07 10:49:54 -04:00
|
|
|
ActiveModel::Observers allows your object to implement the Observer
|
2010-07-22 03:59:58 -04:00
|
|
|
pattern in a Rails App and take advantage of all the standard observer
|
|
|
|
functions.
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-05-07 01:33:26 -04:00
|
|
|
class PersonObserver < ActiveModel::Observer
|
|
|
|
def after_create(person)
|
|
|
|
person.logger.info("New person added!")
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_destroy(person)
|
|
|
|
person.logger.warn("Person with an id of #{person.id} was destroyed!")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-07 11:13:04 -04:00
|
|
|
{Learn more}[link:classes/ActiveModel/Observer.html]
|
2010-01-17 04:14:14 -05:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
* Making objects serializable
|
2010-01-17 04:14:14 -05:00
|
|
|
|
2012-05-07 10:49:54 -04:00
|
|
|
ActiveModel::Serialization provides a standard interface for your object
|
2010-07-22 03:59:58 -04:00
|
|
|
to provide +to_json+ or +to_xml+ serialization.
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-10-19 10:58:30 -04:00
|
|
|
class SerialPerson
|
|
|
|
include ActiveModel::Serialization
|
|
|
|
|
|
|
|
attr_accessor :name
|
|
|
|
|
|
|
|
def attributes
|
|
|
|
{'name' => name}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-01-17 04:14:14 -05:00
|
|
|
s = SerialPerson.new
|
|
|
|
s.serializable_hash # => {"name"=>nil}
|
2012-10-19 11:24:34 -04:00
|
|
|
|
|
|
|
class SerialPerson
|
|
|
|
include ActiveModel::Serializers::JSON
|
|
|
|
end
|
|
|
|
|
|
|
|
s = SerialPerson.new
|
2010-01-17 04:14:14 -05:00
|
|
|
s.to_json # => "{\"name\":null}"
|
2012-10-19 11:24:34 -04:00
|
|
|
|
|
|
|
class SerialPerson
|
|
|
|
include ActiveModel::Serializers::Xml
|
|
|
|
end
|
|
|
|
|
|
|
|
s = SerialPerson.new
|
2010-01-17 04:14:14 -05:00
|
|
|
s.to_xml # => "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<serial-person...
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-05-07 11:13:04 -04:00
|
|
|
{Learn more}[link:classes/ActiveModel/Serialization.html]
|
2010-01-18 01:20:25 -05:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
* Internationalization (i18n) support
|
2010-01-18 02:13:49 -05:00
|
|
|
|
|
|
|
class Person
|
|
|
|
extend ActiveModel::Translation
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
Person.human_attribute_name('my_attribute')
|
2010-08-12 11:09:58 -04:00
|
|
|
# => "My attribute"
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-05-07 11:13:04 -04:00
|
|
|
{Learn more}[link:classes/ActiveModel/Translation.html]
|
2010-01-18 02:29:33 -05:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
* Validation support
|
2010-01-18 02:29:33 -05:00
|
|
|
|
|
|
|
class Person
|
|
|
|
include ActiveModel::Validations
|
|
|
|
|
|
|
|
attr_accessor :first_name, :last_name
|
|
|
|
|
|
|
|
validates_each :first_name, :last_name do |record, attr, value|
|
|
|
|
record.errors.add attr, 'starts with z.' if value.to_s[0] == ?z
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-06-11 06:20:30 -04:00
|
|
|
person = Person.new
|
|
|
|
person.first_name = 'zoolander'
|
2010-08-12 11:09:58 -04:00
|
|
|
person.valid? # => false
|
2010-01-18 02:29:33 -05:00
|
|
|
|
2012-05-07 11:13:04 -04:00
|
|
|
{Learn more}[link:classes/ActiveModel/Validations.html]
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-07-22 03:59:58 -04:00
|
|
|
* Custom validators
|
2010-01-18 19:29:01 -05:00
|
|
|
|
2012-02-07 17:29:02 -05:00
|
|
|
class ValidatorPerson
|
2010-01-18 19:29:01 -05:00
|
|
|
include ActiveModel::Validations
|
|
|
|
validates_with HasNameValidator
|
|
|
|
attr_accessor :name
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-18 19:29:01 -05:00
|
|
|
class HasNameValidator < ActiveModel::Validator
|
|
|
|
def validate(record)
|
2012-02-07 17:29:02 -05:00
|
|
|
record.errors[:name] = "must exist" if record.name.blank?
|
2010-01-18 19:29:01 -05:00
|
|
|
end
|
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-01-18 19:29:01 -05:00
|
|
|
p = ValidatorPerson.new
|
2010-08-12 11:09:58 -04:00
|
|
|
p.valid? # => false
|
|
|
|
p.errors.full_messages # => ["Name must exist"]
|
2010-01-18 19:29:01 -05:00
|
|
|
p.name = "Bob"
|
2010-08-12 11:09:58 -04:00
|
|
|
p.valid? # => true
|
2010-01-18 19:29:01 -05:00
|
|
|
|
2012-05-07 11:13:04 -04:00
|
|
|
{Learn more}[link:classes/ActiveModel/Validator.html]
|
2012-02-07 17:17:24 -05:00
|
|
|
|
2011-07-21 03:33:45 -04:00
|
|
|
|
|
|
|
== Download and installation
|
|
|
|
|
2011-08-05 04:17:09 -04:00
|
|
|
The latest version of Active Model can be installed with RubyGems:
|
2011-07-21 03:33:45 -04:00
|
|
|
|
|
|
|
% [sudo] gem install activemodel
|
|
|
|
|
|
|
|
Source code can be downloaded as part of the Rails project on GitHub
|
|
|
|
|
2011-08-04 03:03:56 -04:00
|
|
|
* https://github.com/rails/rails/tree/master/activemodel
|
2011-07-21 03:33:45 -04:00
|
|
|
|
|
|
|
|
|
|
|
== License
|
|
|
|
|
2011-12-23 16:03:21 -05:00
|
|
|
Active Model is released under the MIT license:
|
|
|
|
|
|
|
|
* http://www.opensource.org/licenses/MIT
|
2011-07-21 03:33:45 -04:00
|
|
|
|
|
|
|
|
|
|
|
== Support
|
|
|
|
|
|
|
|
API documentation is at
|
|
|
|
|
|
|
|
* http://api.rubyonrails.org
|
|
|
|
|
|
|
|
Bug reports and feature requests can be filed with the rest for the Ruby on Rails project here:
|
|
|
|
|
|
|
|
* https://github.com/rails/rails/issues
|