2008-11-03 22:52:50 -08:00
|
|
|
module CouchRest
|
|
|
|
class Response < Hash
|
2009-01-29 18:25:45 -08:00
|
|
|
def initialize(keys = {})
|
2008-11-03 22:52:50 -08:00
|
|
|
keys.each do |k,v|
|
|
|
|
self[k.to_s] = v
|
|
|
|
end
|
|
|
|
end
|
|
|
|
def []= key, value
|
|
|
|
super(key.to_s, value)
|
|
|
|
end
|
|
|
|
def [] key
|
|
|
|
super(key.to_s)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Document < Response
|
2009-01-28 22:55:42 -08:00
|
|
|
include CouchRest::Mixins::Views
|
2008-11-03 22:52:50 -08:00
|
|
|
|
2008-11-08 16:28:58 -08:00
|
|
|
attr_accessor :database
|
2009-01-28 22:55:42 -08:00
|
|
|
@@database = nil
|
|
|
|
|
|
|
|
# override the CouchRest::Model-wide default_database
|
|
|
|
# This is not a thread safe operation, do not change the model
|
|
|
|
# database at runtime.
|
|
|
|
def self.use_database(db)
|
|
|
|
@@database = db
|
2008-11-08 16:28:58 -08:00
|
|
|
end
|
2009-01-28 22:55:42 -08:00
|
|
|
|
|
|
|
def self.database
|
|
|
|
@@database
|
2008-11-08 16:28:58 -08:00
|
|
|
end
|
2009-01-16 01:07:37 -08:00
|
|
|
|
2009-01-28 22:55:42 -08:00
|
|
|
# Returns the CouchDB uri for the document
|
|
|
|
def uri(append_rev = false)
|
|
|
|
return nil if new_document?
|
|
|
|
couch_uri = "http://#{database.uri}/#{CGI.escape(id)}"
|
|
|
|
if append_rev == true
|
|
|
|
couch_uri << "?rev=#{rev}"
|
|
|
|
elsif append_rev.kind_of?(Integer)
|
|
|
|
couch_uri << "?rev=#{append_rev}"
|
|
|
|
end
|
|
|
|
couch_uri
|
2009-01-16 01:07:37 -08:00
|
|
|
end
|
|
|
|
|
2009-01-28 22:55:42 -08:00
|
|
|
# Returns the document's database
|
|
|
|
def database
|
|
|
|
@database || self.class.database
|
2009-01-16 01:07:37 -08:00
|
|
|
end
|
2008-11-08 16:28:58 -08:00
|
|
|
|
2008-11-03 22:52:50 -08:00
|
|
|
end
|
|
|
|
|
2008-12-15 10:27:53 -06:00
|
|
|
end
|