couchrest_model/lib/database.rb

60 lines
1.4 KiB
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
2008-03-20 06:38:01 +01:00
CouchRest.get "#{@root}/_all_docs"
2008-03-19 16:57:20 +01:00
end
def temp_view funcs, type = 'application/json'
JSON.parse(RestClient.post("#{@root}/_temp_view", JSON.unparse(funcs), {"Content-Type" => type}))
2008-03-20 02:10:16 +01:00
end
def view name, params = nil
url = "#{@root}/_view/#{name}"
if params
query = params.collect do |k,v|
v = JSON.unparse(v) if %w{key startkey endkey}.include?(k.to_s)
"#{k}=#{CGI.escape(v.to_s)}"
end.join("&")
url = "#{url}?#{query}"
end
CouchRest.get url
2008-03-19 16:57:20 +01:00
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
2008-03-20 00:38:07 +01:00
def bulk_save docs
CouchRest.post "#{@root}/_bulk_docs", {:docs => docs}
2008-03-20 00:38:07 +01:00
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