1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
---
title: SPORE update
layout: post
category: misc
---
As I've said "in my OSDC report":http://lumberjaph.net/conference/2010/10/12/osdcfr.html, after I "presented SPORE":http://www.slideshare.net/franckcuny/spore I've had some positive feedback. In the last ten days, I've created a "google group":http://groups.google.com/group/spre-rest to discuss the current specification and implementations, a "SPORE account on github":http://github.com/SPORE to hold the implementation specifications and the API descriptions files, and more importantly, we have some new implementations:
* "Ruby":http://github.com/sukria/Ruby-Spore
* "node.js":http://github.com/francois2metz/node-spore
* "Javascript":http://github.com/nikopol/jquery-spore (client side)
* PHP (not published yet)
in addition to the already existing implementations:
* "Perl":http://github.com/franckcuny/net-http-spore
* "Lua":http://github.com/fperrad/lua-Spore
* "Clojure":http://github.com/ngrunwald/clj-spore
* "Python":http://github.com/elishowk/pyspore
In this post, I'll try to show some common usages for SPORE, in order to give a better explanation of why I think it's needed.
h2. Consistency
<script src="http://gist.github.com/636063.js"> </script>
As you can see in the previous example, I do the same request on the GitHub API: fetch informations from the user "mojombo". In the three languages, the API for the client is the same:
* you create a client using the github.json API description
* you enable some middlewares
* you execute your request: the method name is the same, the argument names are the same!
* you manipulate the result the same way
h2. Easy to switch from a language to another
You can switch from a language to another without any surprises. If you must provide an API client to a third-party, you don't have to care about what languages they use, you only need to provide a description. Your methods call will be the same between all the languages, so it's easy to switch between languages, without the need to chose an appropriate client for your API (if one exists), to read the documentation (when there is one), and having the client implementation going in your way.
h2. Better maintanability
What annoys me the most when I want to use an API, is that I have to choose between two, three, or more clients that will communicate with this API. I need to read the documentations, the code, and test thoses implementations to decide which one will best fit my needs, and won't go in my way. And what if I need to do caching before the content is deserialized ? And what if the remote API changes it's authentication method (like twitter, from basic auth to OAuth) and the maintainer of the client doesn't update the code ?
With SPORE, you don't have to maintain a client, only a description file. Your API changes, all you have to do is to update your description, and all the clients, using any language, will be able to use your new API, without the need to release a new client specific for this API in javascript, Perl, Ruby, ...
h2. Easy to use with APIs that are compatible
If you want to use the Twitter public timeline:
<script src="http://gist.github.com/636137.js?file=gistfile1.pl"></script>
And now on statusnet:
<script src="http://gist.github.com/636137.js?file=status%20net%20SPORE.pl"></script>
easy, right ? As both APIs are compatible, the only thing you need to do is change the argument *base_url* when you create your new client.
h2. It's easy to write a description
It's really easy to write a description for your API. Let's take a look at the
one for github:
<script src="http://gist.github.com/637152.js?file=GitHub%20API%20description"></script>
The important parts are the basic API description (with a name, a base url for the API) and the list of available methods (here I've only put the 'follow' method).
More descriptions are available on "github":http://github.com/SPORE/api-description, as well as and the "full specification":http://github.com/SPORE/specifications/blob/master/spore_description.pod.
We also have "a schema":http://github.com/SPORE/specifications/blob/master/spore_validation.rx to validate your descriptions.
h2. Middlewares
By default, your SPORE client will only do a request and return a result. But it's easy to alter the default behavior with various middlewares. The most obvious one is the deserialization for a response, like the previous example with github and the middleware Format::JSON.
h3. Control your workflow
The use of middlewares allow you to control your workflow as with Plack/Rack/WSGI. You can easily imagine doing this:
* check if the request has already been made and cached
* return the response if the cache is still valid
* perform the request
* send the content to a remote storer in raw format
* cache the raw data locally
* deserialize to json
* remove some data from the response
* give the response to the client
Or to interrogate a site as an API:
* send a request on a web page
* pass the response to a scraper, and put the data in JSON
* return the JSON with scraped data to the client
h3. Creating a repository on Github
In this example, we use a middleware to authenticate on the GitHub API:
<script src="http://gist.github.com/636261.js?file=gistfile1.pl"></script>
The middleware Auth::Basic will add the *authorization* header to the request, using the given tokens.
h3. SPORE + MooseX::Role::Parameterized
I really like
"MooseX::Role::Parameterized":http://search.cpan.org/perldoc?MooseX::Role::Parameterized. This module allows you to build dynamically a Role to apply to your class/object:
<script src="http://gist.github.com/623956.js"> </script>
This Role will add two new attributes to my class: *couchdb* and *url_solver*, reading from a config file a list of middlewares to apply and the options (like base_uri).
h3. Testing my application that uses CouchDB
This is a common case. In your application you use CouchDB to store some information. When you run the tests for this application, you don't know if there will be a couchdb running on the host, if it will be on the default port, on what database should you do your tests, ...
The Perl implementation of SPORE comes with a Mock middleware:
<script src="http://gist.github.com/636316.js"> </script>
The middleware catches the request, checks if it matches something defined by the user and returns a response.
h2. So ...
I really see SPORE as something Perlish: a glue. The various implementations are a nice addition, and I'm happy to see some suggestions and discussions about the specifications.
I'm pretty confident that the current specification for the API description is stable at this point. We still need to write more middlewares to see if we can cover most of the usages easily, so we can decide if the specification for the implementation is valid.
(as always, thanks to bl0b!).
|