input license information so that the work can be under the AGPLv3
[selectricity] / app / models / candidate.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 Candidate < ActiveRecord::Base
20   belongs_to :election
21   validates_presence_of :name
22
23   # i have to call this picture_assoc because picture= does not overload
24   # the normal association method made by has_one
25   has_one :picture_obj, :class_name => "Picture"
26
27   # validate uniqueness of a name *within a given election*
28
29   def <=>(other)
30     self.name <=> other.name 
31   end
32   
33   def to_s
34     name
35   end
36
37   def picture
38     picture_obj
39   end
40
41   def picture=(field)
42     if field and field.length > 0
43       self.picture_obj = Picture.new.set_from_field(field)
44       return picture_obj.save
45     else
46       return false
47     end
48   end
49
50   def picture?
51     !self.picture_obj.nil?
52   end
53
54 end
55

Benjamin Mako Hill || Want to submit a patch?