2008-10-03 08:30:41 +02:00
|
|
|
require 'rubygems'
|
|
|
|
require 'extlib'
|
2008-10-03 06:21:48 +02:00
|
|
|
require 'digest/md5'
|
|
|
|
|
2008-09-30 19:20:15 +02:00
|
|
|
# = CouchRest::Model - ORM, the CouchDB way
|
2008-09-29 18:55:40 +02:00
|
|
|
module CouchRest
|
2008-09-30 19:20:15 +02:00
|
|
|
# = CouchRest::Model - ORM, the CouchDB way
|
2008-10-02 20:32:11 +02:00
|
|
|
#
|
|
|
|
# CouchRest::Model provides an ORM-like interface for CouchDB documents. It
|
|
|
|
# avoids all usage of <tt>method_missing</tt>, and tries to strike a balance
|
|
|
|
# between usability and magic. See CouchRest::Model#view_by for
|
|
|
|
# documentation about the view-generation system.
|
|
|
|
#
|
2008-09-30 08:16:44 +02:00
|
|
|
# ==== Example
|
2008-10-02 20:32:11 +02:00
|
|
|
#
|
|
|
|
# This is an example class using CouchRest::Model. It is taken from the
|
|
|
|
# spec/couchrest/core/model_spec.rb file, which may be even more up to date
|
|
|
|
# than this example.
|
|
|
|
#
|
2008-10-02 19:45:08 +02:00
|
|
|
# class Article < CouchRest::Model
|
2008-09-30 08:16:44 +02:00
|
|
|
# use_database CouchRest.database!('http://localhost:5984/couchrest-model-test')
|
|
|
|
# unique_id :slug
|
|
|
|
#
|
|
|
|
# view_by :date, :descending => true
|
|
|
|
# view_by :user_id, :date
|
|
|
|
#
|
|
|
|
# view_by :tags,
|
|
|
|
# :map =>
|
|
|
|
# "function(doc) {
|
2008-10-03 01:39:06 +02:00
|
|
|
# if (doc['couchrest-type'] == 'Article' && doc.tags) {
|
2008-09-30 08:16:44 +02:00
|
|
|
# doc.tags.forEach(function(tag){
|
|
|
|
# emit(tag, 1);
|
|
|
|
# });
|
|
|
|
# }
|
|
|
|
# }",
|
|
|
|
# :reduce =>
|
|
|
|
# "function(keys, values, rereduce) {
|
|
|
|
# return sum(values);
|
|
|
|
# }"
|
|
|
|
#
|
|
|
|
# key_writer :date
|
|
|
|
# key_reader :slug, :created_at, :updated_at
|
|
|
|
# key_accessor :title, :tags
|
|
|
|
#
|
|
|
|
# timestamps!
|
|
|
|
#
|
|
|
|
# before(:create, :generate_slug_from_title)
|
|
|
|
# def generate_slug_from_title
|
2008-10-02 19:45:08 +02:00
|
|
|
# self['slug'] = title.downcase.gsub(/[^a-z0-9]/,'-').squeeze('-').gsub(/^\-|\-$/,'')
|
2008-09-30 08:16:44 +02:00
|
|
|
# end
|
|
|
|
# end
|
2008-10-02 19:45:08 +02:00
|
|
|
class Model < Hash
|
|
|
|
|
|
|
|
# instantiates the hash by converting all the keys to strings.
|
|
|
|
def initialize keys = {}
|
|
|
|
super()
|
2008-10-03 01:39:06 +02:00
|
|
|
apply_defaults
|
2008-10-02 19:45:08 +02:00
|
|
|
keys.each do |k,v|
|
|
|
|
self[k.to_s] = v
|
|
|
|
end
|
2008-10-03 02:13:59 +02:00
|
|
|
cast_keys
|
2008-10-02 19:45:08 +02:00
|
|
|
unless self['_id'] && self['_rev']
|
2008-10-03 01:39:06 +02:00
|
|
|
self['couchrest-type'] = self.class.to_s
|
2008-10-02 19:45:08 +02:00
|
|
|
end
|
|
|
|
end
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-03 08:30:41 +02:00
|
|
|
# this is the CouchRest::Database that model classes will use unless
|
|
|
|
# they override it with <tt>use_database</tt>
|
|
|
|
cattr_accessor :default_database
|
|
|
|
|
|
|
|
class_inheritable_accessor :casts
|
|
|
|
class_inheritable_accessor :default_obj
|
|
|
|
class_inheritable_accessor :class_database
|
|
|
|
class_inheritable_accessor :generated_design_doc
|
|
|
|
class_inheritable_accessor :design_doc_slug_cache
|
|
|
|
class_inheritable_accessor :design_doc_fresh
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-03 08:30:41 +02:00
|
|
|
class << self
|
2008-10-02 19:45:08 +02:00
|
|
|
# override the CouchRest::Model-wide default_database
|
2008-10-03 01:27:45 +02:00
|
|
|
def use_database db
|
2008-10-03 08:30:41 +02:00
|
|
|
self.class_database = db
|
2008-10-03 01:27:45 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# returns the CouchRest::Database instance that this class uses
|
|
|
|
def database
|
2008-10-03 08:30:41 +02:00
|
|
|
self.class_database || CouchRest::Model.default_database
|
2008-10-03 01:27:45 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# load a document from the database
|
|
|
|
def get id
|
|
|
|
doc = database.get id
|
|
|
|
new(doc)
|
|
|
|
end
|
|
|
|
|
2008-10-03 08:30:41 +02:00
|
|
|
def all opts = {}
|
2008-10-03 08:36:39 +02:00
|
|
|
self.generated_design_doc ||= default_design_doc
|
|
|
|
unless design_doc_fresh
|
|
|
|
refresh_design_doc
|
|
|
|
end
|
2008-10-03 08:30:41 +02:00
|
|
|
view_name = "#{design_doc_slug}/all"
|
|
|
|
raw = opts.delete(:raw)
|
|
|
|
view = fetch_view(view_name, opts)
|
|
|
|
process_view_results view, raw
|
|
|
|
end
|
|
|
|
|
2008-10-03 02:13:59 +02:00
|
|
|
# Cast a field as another class. The class must be happy to have the
|
|
|
|
# field's primitive type as the argument to it's constucture. Classes
|
|
|
|
# which inherit from CouchRest::Model are happy to act as sub-objects
|
|
|
|
# for any fields that are stored in JSON as object (and therefore are
|
|
|
|
# parsed from the JSON as Ruby Hashes).
|
2008-10-03 01:27:45 +02:00
|
|
|
def cast field, opts = {}
|
2008-10-03 08:30:41 +02:00
|
|
|
self.casts ||= {}
|
|
|
|
self.casts[field.to_s] = opts
|
2008-10-03 02:13:59 +02:00
|
|
|
end
|
|
|
|
|
2008-10-03 01:27:45 +02:00
|
|
|
# Defines methods for reading and writing from fields in the document.
|
|
|
|
# Uses key_writer and key_reader internally.
|
|
|
|
def key_accessor *keys
|
|
|
|
key_writer *keys
|
|
|
|
key_reader *keys
|
|
|
|
end
|
|
|
|
|
|
|
|
# For each argument key, define a method <tt>key=</tt> that sets the
|
|
|
|
# corresponding field on the CouchDB document.
|
|
|
|
def key_writer *keys
|
|
|
|
keys.each do |method|
|
|
|
|
key = method.to_s
|
|
|
|
define_method "#{method}=" do |value|
|
|
|
|
self[key] = value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# For each argument key, define a method <tt>key</tt> that reads the
|
|
|
|
# corresponding field on the CouchDB document.
|
|
|
|
def key_reader *keys
|
|
|
|
keys.each do |method|
|
|
|
|
key = method.to_s
|
|
|
|
define_method method do
|
|
|
|
self[key]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def default
|
2008-10-03 08:30:41 +02:00
|
|
|
self.default_obj
|
2008-10-03 01:27:45 +02:00
|
|
|
end
|
2008-10-03 08:30:41 +02:00
|
|
|
|
2008-10-03 01:27:45 +02:00
|
|
|
def set_default hash
|
2008-10-03 08:30:41 +02:00
|
|
|
self.default_obj = hash
|
2008-10-03 01:27:45 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Automatically set <tt>updated_at</tt> and <tt>created_at</tt> fields
|
|
|
|
# on the document whenever saving occurs. CouchRest uses a pretty
|
|
|
|
# decent time format by default. See Time#to_json
|
|
|
|
def timestamps!
|
|
|
|
before(:create) do
|
|
|
|
self['updated_at'] = self['created_at'] = Time.now
|
|
|
|
end
|
|
|
|
before(:update) do
|
|
|
|
self['updated_at'] = Time.now
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Name a method that will be called before the document is first saved,
|
|
|
|
# which returns a string to be used for the document's <tt>_id</tt>.
|
|
|
|
# Because CouchDB enforces a constraint that each id must be unique,
|
|
|
|
# this can be used to enforce eg: uniq usernames. Note that this id
|
|
|
|
# must be globally unique across all document types which share a
|
|
|
|
# database, so if you'd like to scope uniqueness to this class, you
|
|
|
|
# should use the class name as part of the unique id.
|
|
|
|
def unique_id method = nil, &block
|
|
|
|
if method
|
|
|
|
define_method :set_unique_id do
|
|
|
|
self['_id'] ||= self.send(method)
|
|
|
|
end
|
|
|
|
elsif block
|
|
|
|
define_method :set_unique_id do
|
|
|
|
uniqid = block.call(self)
|
|
|
|
raise ArgumentError, "unique_id block must not return nil" if uniqid.nil?
|
|
|
|
self['_id'] ||= uniqid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Define a CouchDB view. The name of the view will be the concatenation
|
|
|
|
# of <tt>by</tt> and the keys joined by <tt>_and_</tt>
|
|
|
|
#
|
|
|
|
# ==== Example views:
|
|
|
|
#
|
|
|
|
# class Post
|
|
|
|
# # view with default options
|
|
|
|
# # query with Post.by_date
|
|
|
|
# view_by :date, :descending => true
|
|
|
|
#
|
|
|
|
# # view with compound sort-keys
|
|
|
|
# # query with Post.by_user_id_and_date
|
|
|
|
# view_by :user_id, :date
|
|
|
|
#
|
|
|
|
# # view with custom map/reduce functions
|
|
|
|
# # query with Post.by_tags :reduce => true
|
|
|
|
# view_by :tags,
|
|
|
|
# :map =>
|
|
|
|
# "function(doc) {
|
2008-10-03 01:39:06 +02:00
|
|
|
# if (doc['couchrest-type'] == 'Post' && doc.tags) {
|
2008-10-03 01:27:45 +02:00
|
|
|
# doc.tags.forEach(function(tag){
|
|
|
|
# emit(doc.tag, 1);
|
|
|
|
# });
|
|
|
|
# }
|
|
|
|
# }",
|
|
|
|
# :reduce =>
|
|
|
|
# "function(keys, values, rereduce) {
|
|
|
|
# return sum(values);
|
|
|
|
# }"
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# <tt>view_by :date</tt> will create a view defined by this Javascript
|
|
|
|
# function:
|
|
|
|
#
|
|
|
|
# function(doc) {
|
2008-10-03 01:39:06 +02:00
|
|
|
# if (doc['couchrest-type'] == 'Post' && doc.date) {
|
2008-10-03 01:27:45 +02:00
|
|
|
# emit(doc.date, null);
|
|
|
|
# }
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
# It can be queried by calling <tt>Post.by_date</tt> which accepts all
|
|
|
|
# valid options for CouchRest::Database#view. In addition, calling with
|
|
|
|
# the <tt>:raw => true</tt> option will return the view rows
|
|
|
|
# themselves. By default <tt>Post.by_date</tt> will return the
|
|
|
|
# documents included in the generated view.
|
|
|
|
#
|
|
|
|
# CouchRest::Database#view options can be applied at view definition
|
|
|
|
# time as defaults, and they will be curried and used at view query
|
|
|
|
# time. Or they can be overridden at query time.
|
|
|
|
#
|
|
|
|
# Custom views can be queried with <tt>:reduce => true</tt> to return
|
|
|
|
# reduce results. The default for custom views is to query with
|
|
|
|
# <tt>:reduce => false</tt>.
|
|
|
|
#
|
|
|
|
# Views are generated (on a per-model basis) lazily on first-access.
|
|
|
|
# This means that if you are deploying changes to a view, the views for
|
|
|
|
# that model won't be available until generation is complete. This can
|
|
|
|
# take some time with large databases. Strategies are in the works.
|
|
|
|
#
|
|
|
|
# To understand the capabilities of this view system more compeletly,
|
|
|
|
# it is recommended that you read the RSpec file at
|
|
|
|
# <tt>spec/core/model.rb</tt>.
|
|
|
|
def view_by *keys
|
|
|
|
opts = keys.pop if keys.last.is_a?(Hash)
|
|
|
|
opts ||= {}
|
|
|
|
type = self.to_s
|
|
|
|
|
|
|
|
method_name = "by_#{keys.join('_and_')}"
|
2008-10-03 08:30:41 +02:00
|
|
|
self.generated_design_doc ||= default_design_doc
|
2008-10-03 01:27:45 +02:00
|
|
|
|
|
|
|
if opts[:map]
|
|
|
|
view = {}
|
|
|
|
view['map'] = opts.delete(:map)
|
|
|
|
if opts[:reduce]
|
|
|
|
view['reduce'] = opts.delete(:reduce)
|
|
|
|
opts[:reduce] = false
|
|
|
|
end
|
2008-10-03 08:30:41 +02:00
|
|
|
generated_design_doc['views'][method_name] = view
|
2008-10-03 01:27:45 +02:00
|
|
|
else
|
|
|
|
doc_keys = keys.collect{|k|"doc['#{k}']"}
|
|
|
|
key_protection = doc_keys.join(' && ')
|
|
|
|
key_emit = doc_keys.length == 1 ? "#{doc_keys.first}" : "[#{doc_keys.join(', ')}]"
|
|
|
|
map_function = <<-JAVASCRIPT
|
|
|
|
function(doc) {
|
2008-10-03 01:39:06 +02:00
|
|
|
if (doc['couchrest-type'] == '#{type}' && #{key_protection}) {
|
2008-10-03 01:27:45 +02:00
|
|
|
emit(#{key_emit}, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
JAVASCRIPT
|
2008-10-03 08:30:41 +02:00
|
|
|
generated_design_doc['views'][method_name] = {
|
2008-10-03 01:27:45 +02:00
|
|
|
'map' => map_function
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2008-10-03 08:30:41 +02:00
|
|
|
self.design_doc_fresh = false
|
2008-10-03 01:27:45 +02:00
|
|
|
|
|
|
|
self.meta_class.instance_eval do
|
|
|
|
define_method method_name do |*args|
|
|
|
|
query = opts.merge(args[0] || {})
|
|
|
|
query[:raw] = true if query[:reduce]
|
2008-10-03 08:30:41 +02:00
|
|
|
unless design_doc_fresh
|
2008-10-03 01:27:45 +02:00
|
|
|
refresh_design_doc
|
|
|
|
end
|
|
|
|
raw = query.delete(:raw)
|
2008-10-03 06:21:48 +02:00
|
|
|
view_name = "#{design_doc_slug}/#{method_name}"
|
2008-10-03 01:27:45 +02:00
|
|
|
view = fetch_view(view_name, query)
|
2008-10-03 08:30:41 +02:00
|
|
|
process_view_results view, raw
|
2008-10-03 01:27:45 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-10-03 06:21:48 +02:00
|
|
|
# Fetch the generated design doc. Could raise an error if the generated views have not been queried yet.
|
|
|
|
def design_doc
|
|
|
|
database.get("_design/#{design_doc_slug}")
|
|
|
|
end
|
|
|
|
|
2008-10-03 01:27:45 +02:00
|
|
|
private
|
|
|
|
|
2008-10-03 08:30:41 +02:00
|
|
|
def process_view_results view, raw=false
|
|
|
|
if raw
|
|
|
|
view
|
|
|
|
else
|
|
|
|
# TODO this can be optimized once the include-docs patch is applied
|
|
|
|
view['rows'].collect{|r|new(database.get(r['id']))}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-10-03 01:27:45 +02:00
|
|
|
def fetch_view view_name, opts
|
|
|
|
retryable = true
|
|
|
|
begin
|
|
|
|
database.view(view_name, opts)
|
|
|
|
# the design doc could have been deleted by a rouge process
|
|
|
|
rescue RestClient::ResourceNotFound => e
|
|
|
|
if retryable
|
|
|
|
refresh_design_doc
|
|
|
|
retryable = false
|
|
|
|
retry
|
|
|
|
else
|
|
|
|
raise e
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-10-03 06:21:48 +02:00
|
|
|
def design_doc_slug
|
2008-10-03 08:30:41 +02:00
|
|
|
return design_doc_slug_cache if design_doc_slug_cache && design_doc_fresh
|
2008-10-03 06:21:48 +02:00
|
|
|
funcs = []
|
2008-10-03 08:30:41 +02:00
|
|
|
generated_design_doc['views'].each do |name, view|
|
|
|
|
funcs << "#{name}/#{view['map']}#{view['reduce']}"
|
2008-10-03 06:21:48 +02:00
|
|
|
end
|
|
|
|
md5 = Digest::MD5.hexdigest(funcs.sort.join(''))
|
2008-10-03 08:30:41 +02:00
|
|
|
self.design_doc_slug_cache = "#{self.to_s}-#{md5}"
|
2008-10-03 01:27:45 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def default_design_doc
|
|
|
|
{
|
|
|
|
"language" => "javascript",
|
2008-10-03 08:30:41 +02:00
|
|
|
"views" => {
|
|
|
|
'all' => {
|
|
|
|
'map' => "function(doc) {
|
|
|
|
if (doc['couchrest-type'] == '#{self.to_s}') {
|
|
|
|
emit(null,null);
|
|
|
|
}
|
|
|
|
}"
|
|
|
|
}
|
|
|
|
}
|
2008-10-03 01:27:45 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def refresh_design_doc
|
2008-10-03 06:21:48 +02:00
|
|
|
did = "_design/#{design_doc_slug}"
|
|
|
|
saved = database.get(did) rescue nil
|
2008-10-03 01:27:45 +02:00
|
|
|
if saved
|
2008-10-03 08:30:41 +02:00
|
|
|
generated_design_doc['views'].each do |name, view|
|
2008-10-03 01:27:45 +02:00
|
|
|
saved['views'][name] = view
|
|
|
|
end
|
|
|
|
database.save(saved)
|
|
|
|
else
|
2008-10-03 08:30:41 +02:00
|
|
|
generated_design_doc['_id'] = did
|
|
|
|
database.save(generated_design_doc)
|
2008-10-03 01:27:45 +02:00
|
|
|
end
|
2008-10-03 08:30:41 +02:00
|
|
|
self.design_doc_fresh = true
|
2008-10-03 01:27:45 +02:00
|
|
|
end
|
2008-10-02 19:45:08 +02:00
|
|
|
|
|
|
|
end # class << self
|
|
|
|
|
|
|
|
# returns the database used by this model's class
|
|
|
|
def database
|
|
|
|
self.class.database
|
|
|
|
end
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-02 19:45:08 +02:00
|
|
|
# alias for self['_id']
|
|
|
|
def id
|
|
|
|
self['_id']
|
|
|
|
end
|
|
|
|
|
|
|
|
# alias for self['_rev']
|
|
|
|
def rev
|
|
|
|
self['_rev']
|
|
|
|
end
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-02 20:32:11 +02:00
|
|
|
# returns true if the document has never been saved
|
2008-10-02 19:45:08 +02:00
|
|
|
def new_record?
|
|
|
|
!rev
|
|
|
|
end
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-02 20:32:11 +02:00
|
|
|
# Saves the document to the db using create or update. Also runs the :save
|
|
|
|
# callbacks. Sets the <tt>_id</tt> and <tt>_rev</tt> fields based on
|
|
|
|
# CouchDB's response.
|
2008-10-02 19:45:08 +02:00
|
|
|
def save
|
|
|
|
if new_record?
|
|
|
|
create
|
|
|
|
else
|
|
|
|
update
|
2008-09-30 01:28:57 +02:00
|
|
|
end
|
2008-10-02 19:45:08 +02:00
|
|
|
end
|
|
|
|
|
2008-10-02 20:32:11 +02:00
|
|
|
# Deletes the document from the database. Runs the :delete callbacks.
|
|
|
|
# Removes the <tt>_id</tt> and <tt>_rev</tt> fields, preparing the
|
|
|
|
# document to be saved to a new <tt>_id</tt>.
|
2008-10-02 20:06:37 +02:00
|
|
|
def destroy
|
|
|
|
result = database.delete self
|
|
|
|
if result['ok']
|
|
|
|
self['_rev'] = nil
|
|
|
|
self['_id'] = nil
|
|
|
|
end
|
|
|
|
result['ok']
|
|
|
|
end
|
|
|
|
|
2008-10-02 19:45:08 +02:00
|
|
|
protected
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-02 20:32:11 +02:00
|
|
|
# Saves a document for the first time, after running the before(:create)
|
|
|
|
# callbacks, and applying the unique_id.
|
2008-10-02 19:45:08 +02:00
|
|
|
def create
|
|
|
|
set_unique_id if respond_to?(:set_unique_id) # hack
|
|
|
|
save_doc
|
|
|
|
end
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-02 20:32:11 +02:00
|
|
|
# Saves the document and runs the :update callbacks.
|
2008-10-02 19:45:08 +02:00
|
|
|
def update
|
|
|
|
save_doc
|
|
|
|
end
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-02 19:45:08 +02:00
|
|
|
private
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-02 19:45:08 +02:00
|
|
|
def save_doc
|
|
|
|
result = database.save self
|
|
|
|
if result['ok']
|
|
|
|
self['_id'] = result['id']
|
|
|
|
self['_rev'] = result['rev']
|
|
|
|
end
|
|
|
|
result['ok']
|
2008-09-29 18:55:40 +02:00
|
|
|
end
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-03 01:39:06 +02:00
|
|
|
def apply_defaults
|
|
|
|
if self.class.default
|
|
|
|
self.class.default.each do |k,v|
|
|
|
|
self[k.to_s] = v
|
|
|
|
end
|
|
|
|
end
|
2008-10-02 19:45:08 +02:00
|
|
|
end
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-03 02:13:59 +02:00
|
|
|
def cast_keys
|
|
|
|
return unless self.class.casts
|
2008-10-03 06:21:48 +02:00
|
|
|
# TODO move the argument checking to the cast method for early crashes
|
2008-10-03 02:13:59 +02:00
|
|
|
self.class.casts.each do |k,v|
|
|
|
|
next unless self[k]
|
|
|
|
target = v[:as]
|
|
|
|
if target.is_a?(Array) && target[0].is_a?(Class)
|
|
|
|
self[k] = self[k].collect do |value|
|
|
|
|
target[0].new(value)
|
|
|
|
end
|
|
|
|
elsif target.is_a?(Class)
|
|
|
|
self[k] = target.new(self[k])
|
|
|
|
else
|
2008-10-03 02:16:49 +02:00
|
|
|
raise ArgumentError, "Call like - cast :field, :as => MyClass - or - :as => [MyClass] if the field is an array."
|
2008-10-03 02:13:59 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-10-02 19:45:08 +02:00
|
|
|
include ::Extlib::Hook
|
2008-10-02 20:06:37 +02:00
|
|
|
register_instance_hooks :save, :create, :update, :destroy
|
2008-10-03 01:27:45 +02:00
|
|
|
|
2008-10-02 19:45:08 +02:00
|
|
|
end # class Model
|
2008-09-29 18:55:40 +02:00
|
|
|
end # module CouchRest
|