Rails friendly url routing with open id - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T08:34:44Zhttp://stackoverflow.com/feeds/question/409782http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/409782/rails-friendly-url-routing-with-open-id1Rails friendly url routing with open idJamal Hansen2009-01-03T20:37:09Z2009-01-03T21:08:32Z
<p>I would like to use create a rails route for a user's open id. The url would look something like</p>
<pre><code>http://mysite.com/identity/:html_encoded_openid
or
http://mysite.com/identity/:html_encoded_openid.xml
</code></pre>
<p>This would be so that the site could be queried for an open id and either view info for that identity or receive an xml document containing that information. Standard Rails stuff.</p>
<p>I am looking for your expertise on a few things:</p>
<ol>
<li><p>Standard rails routes seem to choke the .s in an openid so that:</p>
<p><a href="http://mysite.com/identity/openid" rel="nofollow">http://mysite.com/identity/openid</a></p>
<p>would find a route but</p>
<p><a href="http://mysite.com/identity/openid.myopenid.com" rel="nofollow">http://mysite.com/identity/openid.myopenid.com</a></p>
<p>would not. </p></li>
<li><p>What security issues would I need to look out for?</p></li>
<li>Is there a better way to encode the query, perhaps with the querystring?</li>
</ol>
<p>And I'd rather not do the standard friendly url method of using:</p>
<pre><code>my-friendly-openid-com
or
23-my-friendly-openid-com
</code></pre>
<p>if possible.</p>
http://stackoverflow.com/questions/409782/rails-friendly-url-routing-with-open-id/409841#4098411Answer by jdl for Rails friendly url routing with open idjdl2009-01-03T21:08:32Z2009-01-03T21:08:32Z<p>You could handle that second route with something like this (replace the action name with something real).</p>
<pre><code>map.connect 'identity/:id', :controller => "identity",
:action => "foo",
:requirements => {:id => /(\w+\.?)+/}
</code></pre>