- def change
- voter = QuickVoter.find_all(["session_id = ?", session.session_id])[0]
- voter.destroy
- redirect_to quickvote_url( :votename => params[:votename] )
+ def index
+ @election = QuickVote.find_all(["name = ?", params[:votename]])[0]
+
+ # if the person has specified an election, we show them the voting
+ # page. otherwise, we redirect back to main the page
+ if @election
+
+ # look to see that the voter has been created and has voted in
+ # this election, and has confirmed their vote
+ @voter = QuickVoter.find_all(["session_id = ? and election_id = ?",
+ session.session_id, @election.id])[0]
+
+ # if the voter has not voted we destroy them
+ if @voter and not @voter.voted?
+ @voter.destroy
+ @voter = nil
+ end
+
+ # if the voter does not exist or as has been destroyed, lets
+ # create a new one
+ unless @voter
+ # create a new voter and populate it
+ @voter = QuickVoter.new
+ @voter.election = QuickVote.find_all( [ "name = ?", params[:votename] ] )[0]
+ @voter.session_id = session.session_id
+
+ # create new vote and make it the defaulted sorted list
+ @voter.vote = Vote.new
+ @voter.save
+ @voter.vote.set_defaults!
+ @voter.reload
+ end
+ else
+ redirect_to :controller => 'site'
+ end