vote up 0 vote down star
2

I'm trying to implement a RESTful API in Perl. My current idea is to simply parse the path_info with a regex then dispatch the request to the appropirate subroutine which will then spit out the JSON, XML or even XHTML for the requested reource.

For example to retrieve info about user 134 the RESTful cleint should find it at:

http://mysite.com/model.pl/users/1234

Below is the skeleton code of my first attempt at implementing a RESTful API:

model.pl :

#!/usr/bin/perl -w
use strict;
use CGI;

my $q = CGI->new();

print $q->header('text/html');

my $restfuluri  = $q->path_info;

if      ($restfuluri =~ /^\/(questions)\/([1-9]+$)/) { questions($1, $2); }
elsif   ($restfuluri =~ /^\/(users)\/([1-9]+$)/)     { users($1, $2); }


sub questions
{
      my $object = shift;
      my $value  = shift;

      #This is a stub, spits out JSON or XML when implemented.
      print $q->p("GET question : $object -> $value");
}

sub users
{
      my $object = shift;
      my $value  = shift;

      #This is a stub, spits out JSON or XML when implemented.
      print $q->p("GET user: $object -> $value");
}

Before I proceed any further, I would like to hear from experienced Perl hackers whether I got the basic idea right and are there any serious shortcomings with this approach in terms of performance.

I can imagine, after a while, the if/else block would grow really large.

Looking forward to hear your views to make this code better.

flag

2  
Can I suggest that if you objective is build a RESTful API that you spend some more time learning about REST. RESTful interfaces are not about using pretty URLs to deliver XML and JSCON. – Darrel Miller Aug 11 at 13:03
Check other questions on StackOverflow that explain REST in detail. – Wahnfrieden Aug 11 at 14:18
Please don't get me wrong, I know what is REST and I'm aware of the uses and abuses of REST. I just need a quick and dirty way of providing a RESTful API for a legacy app. It has a well developed data layer, all I need to do is to allow people to access the data formatted as JSON or XML using pretty URIs. I maintain stuff that has to be more reliable than sexy. I've taken the intiative to read the RESTful Web services O'Reilly book and most of Brian's book before even asking. I think this is a legit question. Furthermore, most of the discussions talk about Ruby. Thanks. – GeneQ Aug 11 at 15:11
@Darrel Miiler, unfortunately, I just need to do exactly just that, and no more: using pretty URLs to deliver XML and JSON. Thanks. ;-) – GeneQ Aug 11 at 15:20
@GeneQ, pretty URIs are fine, RPC is fine, just do not call it REST when it's not, please. You're also mistaken about reliability - the point of REST is to avoid brittle coupling in the URI space, so it's unfair to say you need something "more reliable than sexy." I haven't read those books - if you're interested, I suggest you read Fielding's dissertation for the authoritative source. – Wahnfrieden Aug 11 at 17:01
show 1 more comment

3 Answers

vote up 2 vote down check

I would use something like CGI::Application::Dispatch, it lets me build a dispatch table with variables and REST methods, and lets you use CGI and CGI::Application modules from CPAN. E.g.:

table => [
'/questions/:id[get]'    => { rm => 'get_question' },
'/users/:id[get]'        => { rm => 'get_user' }, # OR
':app/:id[post]'         => { rm => 'update' }, # where :app is your cgi application module
':app/:id[delete]'       => { rm => 'delete' },
],

(or you can use auto_rest or auto_rest_lc)

you can use a separate CGI::Application class for each type of thing (or just use classes in your cgi-app controller class methods).

CGI::Application also comes with plugins for outputting XML, JSON or text generated from templates.

cgi-app (and c::a::d) are are CGI applications and can be used with (little or) no change under CGI, FastCGI or mod_perl. C::A::D is also a mod_perl PerlHandler by default too.

link|flag
Just what I need. Thanks. – GeneQ Aug 11 at 15:48
vote up 1 vote down

I'd build the application using Catalyst and Catalyst::Controller::REST

link|flag
Thanks. But I'll pass. Nothing against Catalyst, this is jsut ot provide an RESTful interface to a (very) legacy app. Quick & Dirty stuff. ;-) – GeneQ Aug 11 at 15:03
vote up -1 vote down

Why don't you use apache mod_rewrite?

Redirect http://mysite.com/model.pl/users/1234 --> http://mysite.com/users.pl

Redirect http://mysite.com/model.pl/q/5678 --> http://mysite.com/questions.pl

link|flag
If you're using apache and mod_rewrite, why even include the .pl? Also you are losing the ID. You can rewrite the URL with mod_rewrite or just create a mod_perl handler and use it to handle /dir/whatever. CGI::Application::Dispatch is a mod_perl handler, and can do rest. – james2vegas Aug 11 at 14:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.