The Kaptain on … stuff

02 Jun, 2010

A Grails App Demoing the StackExchange API

Posted by: TheKaptain In: Development

So I was making an attempt to catch up on my Google Reader‘ing this weekend and I came across this post on StackOverflow regarding the shiny new StackExchange API. That and a fresh 1.3.1 drop of Grails seemed like as good a reason as any to hack together a little app suitable for seeing what you can do with said API.
Turns out it’s not a whole lot, at least not yet. The minor detraction of having read-only access and limited connects without an API key are more than offset by seeing such a minimal, clean and easy to use interface. According to the grails stats script, it took about this much effort to implement calls to each and every one of the API endpoints for all of the supported domains:
[xml]
+———————-+——-+——-+
| Name | Files | LOC |
+———————-+——-+——-+
| Controllers | 1 | 42 |
| Groovy Helpers | 1 | 47 |
+———————-+——-+——-+
| Totals | 2 | 89 |
+———————-+——-+——-+
[/xml]

Please note that this is about as minimal as you could reasonably get away with(and kinda ugly to boot), but nevertheless it does manage to implement a UI and backend for exercising the entire API in a total of 2 gsp files and 1 controller action. What’s noticeably missing are some tailored views for each of the different JSON responses and the implementation of additional query parameters on the calls.

StackExchange API

This is really pretty well documented and “consistent”. Calls in some cases require an {id} in the url and that’s about it. Each of the individual calls has its own help page that describes the options, like the badges page for instance. To make things a little more helpful while exploring the API, each of the implemented endpoints in this app are also hyper-linked to the corresponding manual page on api.stackoverflow.com.

RESTful Access

Couldn’t be a whole lot easier than using HttpBuilder, which provides nice and concise ways to execute the GET request, inspect the response and deal with success/failure of the request. Aside from assigning the root domain and method using variables, this is little different from the canonical example on codehaus.
[groovy]
def http = new HTTPBuilder("http://api.$domain")
http.request(GET, JSON) {
uri.path = "/${VERSION}$method"
headers.’User-Agent’ = ‘Mozilla/5.0 Ubuntu/8.10 Firefox/3.0.4’
response.success = { resp, json ->
answer = json
}
response.failure = { resp ->
answer = "Unexpected error: ${resp.statusLine.statusCode} : ${resp.statusLine.reasonPhrase}"
}
}
[/groovy]
The syntax here could probably get even Groovier using the Grails REST client plugin wrappers, and indeed incorporating that plugin is how the HttpBuilder dependency is being provided in this app, but I hit on a working implementation first time out so we’ll leave that for another day, shall we?

What’s it Look Like?

stackapps-demo
Did I mention it was ugly? Where the API call requires a parameter, you get a text field. Each domain gets its own submit button, officially representing my first attempted usage of g:actionSubmit in Grails. Doesn’t work quite the way I expected, but it does certainly work. Click a button and you’re shown the raw JSON result, along with the call you made. In an ugly fashion, or did I say that already? Still, for a couple of hours of hacking, I’m not unhappy with the result.

StackApps

This is where the apps in the contest get shown off and, in a wonderful display of dogfooding, it’s guess what – another StackOverflow clone! The page for this application can be found here. And the source code is up on github if you’d like to take a look.

Next Steps?

Toying with the idea of porting this to appengine, which would unfortunately mean replacing HttpBuilder and the underlying Apache HttpClient in favor of something that didn’t use a threaded approach, most likely using URL fetch. That and some slightly less ugly tabular and/or tree views of the JSON responses would be kinda nice to have.
🙂

3 Responses to "A Grails App Demoing the StackExchange API"

1 | Tweets that mention A Grails App Demoing the StackExchange API | The Kaptain on ... stuff -- Topsy.com

June 2nd, 2010 at 10:20 pm

Avatar

[…] This post was mentioned on Twitter by kellyrob99, groovyblogs.org. groovyblogs.org said: A Grails App Demoing the StackExchange API — http://bit.ly/dzzxn1 — The Kaptain on … stuff […]

2 | Blog bookmarks 06/04/2010 « My Diigo bookmarks

June 3rd, 2010 at 7:31 pm

Avatar

[…] A Grails App Demoing the StackExchange API | The Kaptain on … stuff […]

Comment Form