merged in changes from live version
[selectricity-live] / app / models / full_voter.rb
1 # Selectricity: Voting Machinery for the Masses
2 # Copyright (C) 2007, 2008 Benjamin Mako Hill <mako@atdot.cc>
3 # Copyright (C) 2007 Massachusetts Institute of Technology
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as
7 # published by the Free Software Foundation, either version 3 of the
8 # License, or (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Affero General Public License for more details.
14 #
15 # You should have received a copy of the GNU Affero General Public
16 # License along with this program.  If not, see
17 # <http://www.gnu.org/licenses/>.
18
19 class FullVoter < Voter
20   validates_presence_of :email, :password
21
22   def initialize(params={})
23     super
24     create_password
25   end
26   
27   def create_password
28     token_generator = UniqueTokenGenerator.new( 16 )
29     until password and not password.empty? \
30           and Voter.find(:all, :conditions => [ "password = ?", password ]).empty?
31       self.password = token_generator.token
32     end
33   end
34   
35   protected
36   def validate
37     # E-mail regex, moderate complexity
38     # Stolen from http://www.regular-expressions.info/email.html
39     errors.add(:email, "is not valid") unless email  =~
40                   /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i
41   end
42 end

Benjamin Mako Hill || Want to submit a patch?