2008-11-04 07:52:50 +01:00
|
|
|
module CouchRest
|
|
|
|
class Response < Hash
|
|
|
|
def initialize keys = {}
|
|
|
|
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-29 07:55:42 +01:00
|
|
|
include CouchRest::Mixins::Views
|
2008-11-04 07:52:50 +01:00
|
|
|
|
2008-11-09 01:28:58 +01:00
|
|
|
attr_accessor :database
|
2009-01-29 07:55:42 +01: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-09 01:28:58 +01:00
|
|
|
end
|
2009-01-29 07:55:42 +01:00
|
|
|
|
|
|
|
def self.database
|
|
|
|
@@database
|
2008-11-09 01:28:58 +01:00
|
|
|
end
|
2009-01-16 10:07:37 +01:00
|
|
|
|
2009-02-02 08:34:30 +01:00
|
|
|
# copies the document to a new id. If the destination id currently exists, a rev must be provided.
|
|
|
|
# <tt>dest</tt> can take one of two forms if overwriting: "id_to_overwrite?rev=revision" or the actual doc
|
|
|
|
# hash with a '_rev' key
|
2009-01-16 10:07:37 +01:00
|
|
|
def copy(dest)
|
|
|
|
raise ArgumentError, "doc.database required to copy" unless database
|
2009-01-29 02:36:36 +01:00
|
|
|
result = database.copy_doc(self, dest)
|
2009-01-16 10:07:37 +01:00
|
|
|
result['ok']
|
|
|
|
end
|
|
|
|
|
2009-02-02 08:34:30 +01:00
|
|
|
# moves the document to a new id. If the destination id currently exists, a rev must be provided.
|
|
|
|
# <tt>dest</tt> can take one of two forms if overwriting: "id_to_overwrite?rev=revision" or the actual doc
|
|
|
|
# hash with a '_rev' key
|
2009-01-16 10:07:37 +01:00
|
|
|
def move(dest)
|
|
|
|
raise ArgumentError, "doc.database required to copy" unless database
|
2009-01-29 02:36:36 +01:00
|
|
|
result = database.move_doc(self, dest)
|
2009-01-16 10:07:37 +01:00
|
|
|
result['ok']
|
|
|
|
end
|
2009-02-02 09:35:37 +01:00
|
|
|
|
2009-01-29 07:55:42 +01: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
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns the document's database
|
|
|
|
def database
|
|
|
|
@database || self.class.database
|
|
|
|
end
|
|
|
|
|
2009-02-02 09:35:37 +01:00
|
|
|
# saves an attachment directly to couchdb
|
|
|
|
def put_attachment(name, file, options={})
|
|
|
|
raise ArgumentError, "doc.database required to put_attachment" unless database
|
|
|
|
result = database.put_attachment(self, name, file, options)
|
|
|
|
self['_rev'] = result['rev']
|
|
|
|
result['ok']
|
|
|
|
end
|
|
|
|
|
|
|
|
# returns an attachment's data
|
|
|
|
def fetch_attachment(name)
|
|
|
|
raise ArgumentError, "doc.database required to put_attachment" unless database
|
|
|
|
database.fetch_attachment(self, name)
|
|
|
|
end
|
|
|
|
|
|
|
|
# deletes an attachment directly from couchdb
|
|
|
|
def delete_attachment(name)
|
|
|
|
raise ArgumentError, "doc.database required to delete_attachment" unless database
|
|
|
|
result = database.delete_attachment(self, name)
|
|
|
|
self['_rev'] = result['rev']
|
|
|
|
result['ok']
|
|
|
|
end
|
2008-11-04 07:52:50 +01:00
|
|
|
end
|
|
|
|
|
2008-12-15 17:27:53 +01:00
|
|
|
end
|