couchrest_model/lib/database.rb

44 lines
855 B
Ruby
Raw Normal View History

require 'cgi'
2008-03-18 19:37:10 +01:00
class CouchRest
class Database
attr_accessor :host, :name
def initialize host, name
@name = name
@host = host
2008-03-19 16:57:20 +01:00
@root = "#{host}/#{name}"
2008-03-18 19:37:10 +01:00
end
2008-03-19 16:57:20 +01:00
def documents
view "_all_docs"
end
def view name
CouchRest.get "#{@root}/#{name}"
end
2008-03-19 18:17:25 +01:00
def get id
slug = CGI.escape(id)
CouchRest.get "#{@root}/#{slug}"
2008-03-19 18:17:25 +01:00
end
2008-03-19 16:57:20 +01:00
2008-03-19 18:17:25 +01:00
# PUT or POST depending on precense of _id attribute
2008-03-19 16:57:20 +01:00
def save doc
if doc['_id']
slug = CGI.escape(doc['_id'])
CouchRest.put "#{@root}/#{slug}", doc
2008-03-19 16:57:20 +01:00
else
CouchRest.post "#{@root}", doc
end
end
def delete doc
slug = CGI.escape(doc['_id'])
CouchRest.delete "#{@root}/#{slug}?rev=#{doc['_rev']}"
end
2008-03-18 19:37:10 +01:00
def delete!
2008-03-19 16:57:20 +01:00
CouchRest.delete @root
2008-03-18 19:37:10 +01:00
end
end
end