2012年5月26日土曜日

groovyとMongoHQのREST APIで、コレクションを一覧表示する

groovyとMongoHQのREST APIで、コレクションを一覧表示するには、以下のコードを実行します。
@Grab(group='org.apache.httpcomponents', module='httpclient', version='4.1.3')
import org.apache.http.client.methods.*
import org.apache.http.impl.client.*
import groovy.json.*

def _apikey = "your-key"
def base = "https://api.mongohq.com/databases"
def db = "mydb"
def httpclient = new DefaultHttpClient()
def method = new HttpGet("${base}/${db}/collections?_apikey=${_apikey}")
response = httpclient.execute(method)

println response.getStatusLine().getStatusCode()
def json = new JsonSlurper().parseText(response.getEntity().getContent().text)
for(col in json){
  println "name:${col.name}"
  println "storageSize:${col.storageSize}"
}

動作環境
groovy 1.8.6

関連情報
groovyとMongoDBのまとめ

0 件のコメント:

コメントを投稿