class ElectionController < ApplicationController
- model :raw_voter_list, :voter, :vote, :candidate
- layout 'vb'
+ require_dependency "raw_voter_list"
+ require_dependency "voter"
+ require_dependency "vote"
+ require_dependency "candidate"
+ layout 'main'
- before_filter :login_required
+ #before_filter :login_required
## methods for displaying, creating,
## and manipulating election overview data
####################################################################
def new
+ redirect_to :action => 'general_information'
+ end
+
+ def general_information
+ @sidebar_content = render_to_string :partial => 'progress',
+ :locals => { :page => 'overview' }
@election = Election.new
+ render :action => 'general_information'
end
def create_election
if @election.save
flash[:notice] = 'Election was successfully created.'
- redirect_to :action => 'new_candidates', :id => @election.id
+ redirect_to :action => 'edit_candidates', :id => @election.id
else
- render :action => 'new'
+ render :action => 'general_information'
end
end
end
end
- def destroy
- election = Election.find(params[:id]).destroy
- redirect_to :action => 'list'
+ def start_election
+ @election = Election.find(params[:id])
+ @election.voters.each do |voter|
+ voter.vote = Vote.new
+ email_voter voter
+ end
+
+ @election.activate!
+ redirect_to :action => 'show', :id => @election.id
end
# methods fod display, adding, deleting, and manipulating candidate
# information for elections
####################################################################
- def new_candidates
+ def edit_candidates
+ @sidebar_content = render_to_string :partial => 'progress',
+ :locals => { :page => 'candidates' }
@election = Election.find( params[:id] )
end
def add_candidate
- election = Election.find( params[:id] )
- @candidate = Candidate.new
- @candidate.name = params[:newcandidate][:name]
- @candidate.description = params[:newcandidate][:description]
-
- @candidate.save
- election.candidates << @candidate
- render :partial => 'candidate_line'
+ @election = Election.find(params[:id])
+ @candidate = Candidate.new(params[:candidate])
+ @election.candidates << @candidate
+
+ if @candidate.save
+ @candidate = Candidate.new
+ redirect_to :action => 'edit_candidates', :id => @election.id
+ else
+ render :action => 'edit_candidates', :id => @election.id
+ end
end
def delete_candidate
candidate.destroy
end
- def edit_candidates
- @election = Election.find( params[:id] )
+ def lessinfo_candidate
+ @show_details = false
+ @current_candidate = Candidate.find( params[:id] )
+ render :partial => 'candidate_line'
+ end
+
+ def moreinfo_candidate
+ @show_details = true
+ @current_candidate = Candidate.find( params[:id] )
+ render :partial => 'candidate_line'
+ end
+
+ def edit_candidate
+ @candidate = Candidate.find( params[:id] )
+ @election = @candidate.election
+ end
+
+ def update_candidate
+ @candidate = Candidate.find(params[:id])
+ @election = @candidate.election
+
+ if @candidate.update_attributes(params[:candidate])
+ redirect_to :action => 'edit_candidates', :id => @candidate.election.id
+ else
+ render :action => 'edit_candidate'
+ end
+ end
+
+ def candidate_picture
+ candidate = Candidate.find( params[:id] )
+ send_data( candidate.picture.data,
+ :filename => candidate.picture.filename,
+ :type => candidate.picture.filetype,
+ :disposition => 'inline' )
end
## methods for displaying, adding, deleting, and manipulating voters
## for a particular election
####################################################################
def new_voters
- @election = Election.find( params[:id] )
- if params.has_key?[:raw_voter_list]
- process_incoming_voters( params[:raw_voter_list] )
- end
- @raw_voter_list = RawVoterList.new
-
+ edit_voters
end
def edit_voters
if params.has_key?( :raw_voter_list )
process_incoming_voters( params[:raw_voter_list] )
end
-
@raw_voter_list = RawVoterList.new
end
@election.voters. each do |voter|
if voter.vote and voter.vote.confirmed?
@voter_list << voter.email
- @vote_list << voter.vote
+ @vote_list << voter.vote
end
end
unless incoming_voters.entries.empty?
incoming_voters.each do |new_voter|
-
- if incoming_voters.email == 0
- new_voter.contacted = 1
- elsif incoming_voters.email == 1
- email_voter( new_voter )
- new_voter.contacted = 1
- else
- new_voter.contacted = 0
- end
-
- # the new voter should be in good shape. save add to the election
- new_voter.save
- @election.voters << new_voter
+ new_voter.email.strip! # There's a trailing \r on all but the last in
+ # the list!
+ 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
@raw_voter_list.email = incoming_voters.email
end
- def email_voter
+ def email_voter(voter=nil)
+ if voter
+ VoterNotify.deliver_votestart(voter)
+ voter.contacted=1
+ voter.save
+ end
end
end