Fix full voter addition bug where the regex flunks the trailing \r on middle items...
authorJohn Dong <jdong@mit.edu>
Thu, 30 Aug 2007 15:55:30 +0000 (11:55 -0400)
committerJohn Dong <jdong@mit.edu>
Thu, 30 Aug 2007 15:55:30 +0000 (11:55 -0400)
app/controllers/election_controller.rb
db/schema.rb

index fa1313cb68cecdd0f06d8c5c8ff14f9004f8ab9c..05a66fff5fef68c273ca0a9c024283a26a0f0a76 100644 (file)
@@ -145,7 +145,6 @@ class ElectionController < ApplicationController
     if params.has_key?( :raw_voter_list )
       process_incoming_voters( params[:raw_voter_list] )
     end
-
     @raw_voter_list = RawVoterList.new
   end
   
@@ -200,7 +199,8 @@ class ElectionController < ApplicationController
 
       unless incoming_voters.entries.empty?
         incoming_voters.each do |new_voter|
-          
+          new_voter.email.strip! # There's a trailing \r on all but the last in
+                                 # the list!
           if incoming_voters.email == 0
             new_voter.contacted = 1
                elsif incoming_voters.email == 1
@@ -209,11 +209,14 @@ class ElectionController < ApplicationController
                else
                  new_voter.contacted = 0
           end
-       
-          # the new voter should be in good shape. save add to the election
-          @election.voters << new_voter
-               new_voter.save
+          if new_voter.valid?
+            # the new voter should be in good shape. save add to the election
+            @election.voters << new_voter
+                 new_voter.save
+          end
+          # TODO: Can we do some kind of AJAX error message for the voter being invalid?
         end
+        @election.save
       end
  
       # reset the next time to have a the same default value for emailing
index 6c038deadbd2983e1fb2073265ec989248421809..590425d670859ee07aab24761a30d00f5c780eb2 100644 (file)
@@ -74,11 +74,10 @@ ActiveRecord::Schema.define() do
   create_table "voters", :force => true do |t|
     t.column "email",       :string,  :limit => 100
     t.column "password",    :string,  :limit => 100
-    t.column "contacted",   :integer, :limit => 4,   :default => 0,  :null => false
-    t.column "election_id", :integer,                                :null => false
+    t.column "contacted",   :integer, :limit => 4,   :default => 0, :null => false
+    t.column "election_id", :integer,                               :null => false
     t.column "session_id",  :string,  :limit => 32
     t.column "ipaddress",   :string,  :limit => 32
-    t.column "type",        :string,  :limit => 100, :default => "", :null => false
   end
 
   add_index "voters", ["election_id"], :name => "fk_election_voter"

Benjamin Mako Hill || Want to submit a patch?