RoR: how do I create a "valid signup code" lookup? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T22:18:37Zhttp://stackoverflow.com/feeds/question/790155http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/790155/ror-how-do-i-create-a-valid-signup-code-lookup0RoR: how do I create a "valid signup code" lookup?Angela2009-04-26T02:53:46Z2009-04-27T20:05:42Z
<p>Hi,</p>
<p>I want to be able to give codes to potential users in the form of email links (e.g. mysite.com/signup?beta=rapunzel)</p>
<p>When someone clicks on the link, it populates a hidden_field with the value (will just using :params[:beta] work?)</p>
<p>Then before it creates the user it validates by checking against another table where I have different beta code.</p>
<p>Then goes ahead and stores which code or maybe just the beta.id.</p>
<p>Suggestions? A plugin already exists?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/790155/ror-how-do-i-create-a-valid-signup-code-lookup/790187#7901870Answer by Raphomet for RoR: how do I create a "valid signup code" lookup?Raphomet2009-04-26T03:25:46Z2009-04-26T03:25:46Z<p>When your user hits mysite.com/signup, the action associated with that route will have the value "rapunzel" stored in params[:beta]. You can pass that onto your view by assigning it into an instance variable (@beta), pass it back to your user controller through your hidden field as planned, and compare it there to your table before saving the user object.</p>
<p>Or you could only allow your user to get to the signup page at all if they're passing in a valid beta code, in which case you won't need any special form fields:</p>
<pre><code>def signup
unless BetaCode.find_by_code(params[:beta])
flash[:notice] = "You can't sign up without a beta code!"
redirect_to root_path
end
end
</code></pre>
http://stackoverflow.com/questions/790155/ror-how-do-i-create-a-valid-signup-code-lookup/790188#7901880Answer by Daemin for RoR: how do I create a "valid signup code" lookup?Daemin2009-04-26T03:25:58Z2009-04-26T03:25:58Z<p>What parameters you get out of your URL will depend on how your routes are set up. With your current route you would get:</p>
<pre><code>params[:beta] = "rapunzel"
</code></pre>
<p>If you specify your route as:</p>
<pre><code>map.connect '/signup/:beta', :controller => 'signup', :action => 'beta'
</code></pre>
<p>you could send them a link like: mysite.com/signup/rapunzel instead and you would get the beta parameter the same as before.</p>
<p>To get the beta field onto the form just include it as a hidden field on the form page template. </p>
<p>In the controller put something like:</p>
<pre><code>@beta_id = params[:beta]
</code></pre>
<p>Then in the view template put:</p>
<pre><code>hidden_field_tag 'beta', @beta_id
</code></pre>
<p>Then when they signup and create a proper id you'll probably want to hook in an association from their row in the user's table to the row containing the beta id in the "beta" table. This could be a has_one association on the beta table if you only wanted to allow a single user to register with each beta id, or a has_many if multiple people could sign up with it.</p>
http://stackoverflow.com/questions/790155/ror-how-do-i-create-a-valid-signup-code-lookup/792505#7925051Answer by August Lilleaas for RoR: how do I create a "valid signup code" lookup?August Lilleaas2009-04-27T07:25:19Z2009-04-27T20:05:42Z<p>I would have done this with a validation.</p>
<pre><code>class User < ActiveRecord::Base
validate_on_create {|r|
beta_code = BetaCode.find_by_code(r.beta_code)
beta_code && beta_code.destroy ||
r.errors.add(beta_code, "is invalid")
}
attr_accessor :beta_code
end
</code></pre>
<p>In your form:</p>
<pre><code><% form_for(@user) do |f| %>
# fields...
<%= f.text_field :beta_code %>
<% end %>
</code></pre>
<p>This assumes that you have a BetaCode model whose table contains a list of beta codes.</p>