couchrest_model/script/views

88 lines
2.5 KiB
Plaintext
Raw Normal View History

2008-06-01 20:21:21 +02:00
#!/usr/bin/env ruby
commands = %w{pull push}
command = ARGV[0]
if !commands.include?(command)
puts <<-USAGE
Usage: script/views (pull|push) my-database-name
For help on pull and push run script/views (pull|push) without a database name.
USAGE
exit
end
if ARGV.length == 1
case command
when "pull"
puts <<-PULL
script/views pull my-database-name
I will automagically create a "views" directory in your current working directory if none exists.
Then I copy the design documents and views into a directory structure like:
./views/my-design-doc/view-name-map.js
./views/my-design-doc/view-name-reduce.js
If your view names don't end in "map" or "reduce" I'll add those suffixes as a pull. On push I'll put them in new locations corresponding to these new names (overwriting the old design documents). I'm opinionated, but if these conventions don't work for you, the source code is right here.
PULL
when "push"
puts <<-PUSH
script/views push my-database-name
I'll push all the files in your views directory to the specified database. Because CouchDB caches the results of view calculation by function content, there's no performance penalty for duplicating the map function twice, which I'll do if you have a reduce function. This makes it possible to browse the results of just the map, which can be useful for both queries and debugging.
./views/my-design-doc/view-name-map.js
./views/my-design-doc/view-name-reduce.js
Pushed to =>
http://localhost:5984/my-database-name/_design/my-design-doc
{
"views" : {
"view-name-map" : {
"map" : "### contents of view-name-map.js ###"
},
"view-name-reduce" : {
"map" : "### contents of view-name-map.js ###",
"reduce" : "### contents of view-name-reduce.js ###"
},
}
}
PUSH
end
exit
end
dbname = ARGV[1]
puts "Running #{command} on #{dbname}."
require File.expand_path(File.dirname(__FILE__)) + '/../couchrest'
# connect to couchdb
cr = CouchRest.new("http://localhost:5984")
db = cr.database(dbname)
__END__
#views to files
ds = db.documents(:startkey => '_design/', :endkey => '_design/ZZ')
ds['rows'].collect{|r|r['id']}.each do |id|
puts directory = id.split('/').last
db.get(id)['views'].each do |view,funcs|
next if /-map$/.match(view)
['map', 'reduce'].each do |func|
next unless funcs[func]
mapfile = File.join("views",directory,"#{view}-#{func}.js")
puts mapfile
File.open(mapfile,'w') do |f|
f.write funcs[func]
end
end
end
end