Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Problem

I want url segmenthere/is/a/reuqest/to/letsay/a/user to turn into one single parameter orginalRequest in Play! route

Why

To solve Same Origin Policy with json and ajax, we have decided to have a web services client running on our own server that redirect all json call to an external REST API.

Is there a way in the Play! Framework route file that I can threat what ever comes after /api/ as one single parameter?

In route:

GET    /api/fromhere/is/what/iwant/as/single/parameter    App.getFromOtherDomain

In App:

public void getFromOtherDomain(String orginalRequest){    
   WSRequest req = WS.url("https://api.otherdomain.com/" + orginalRequest);
   Promise<HttpResponse> respAsync = req.getAsync();
   HttpResponse resp = await(respAsync);   
   renderJSON(resp.getJson());
}
share|improve this question

2 Answers

up vote 3 down vote accepted

In Play 1.x you use a RegEx:

Routes:

 GET   /files/{<[a-z0-9/\.]*>name}               Application.download(name)

In Play 2.0 you can do it a bit shorter:

Routes:

GET   /files/*name                               Application.download(name)

Call:

http://yourserver/files/public/downloads/hello.png

In the download action, name will equal "public/downloads/hello.png".

share|improve this answer
thanks, nice that this will work in 2.0, but I am still working on version 1.2.3 – IntoTheVoid Dec 1 '11 at 11:57
I dug a bit into RegEx and edited my post accordingly. – Marius Soutier Dec 2 '11 at 10:58
Great! Works perfect! Thanks – IntoTheVoid Dec 2 '11 at 11:10

From your controller you can use the request.path and request.uri to extract the info you need and then call your other method with the info extracted.

share|improve this answer
But how do you do it in the route folder? How do you get all calls to /api/../../../ to go to Application.api()? – IntoTheVoid Dec 1 '11 at 11:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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