def quickvote_candidate_ids_to_names(shortname, id_list)
qv=QuickVote.ident_to_quickvote(shortname)
candidates={}
- return [] unless qv
+ raise ArgumentError.new("Quickvote by name #{shortname} doesn't exist") unless qv
qv.results
qv.candidates.each {|c| candidates[c.id] = c}
results=[]
#TODO: Validate shortname
qv=QuickVote.ident_to_quickvote(shortname)
result=VoteResultStruct.new
- result.errors=[]
unless qv
- result.errors << "No quickvote with name #{shortname} found!"
- return result
+ raise ArgumentError.new("No quickvote with name #{shortname} found!")
end
qv.results
result.plurality_winners=qv.plurality_result.winners
def get_quickvote_candidate_map(shortname)
qv=QuickVote.ident_to_quickvote(shortname)
result=CandidateMap.new
- result.errors=[]
unless qv
- result.errors << "No quickvote with name #{shortname} found!"
- return result
+ raise ArgumentError.new("No quickvote with name #{shortname} found!")
end
candidates={}
qv.candidates.each {|c| candidates[c.id] = c.name}
qv=QuickVote.ident_to_quickvote(shortname)
votes=Array.new
unless qv
- return result
+ raise ArgumentError.new("Cannot find QuickVote #{shortname}")
end
qv.votes.each do |vote|
- votes << VoteInfo.new(:voter_id => vote.voter.id, :voter_ipaddress => vote.voter.ipaddress, :vote_time => vote.time.to_i, :vote => vote.votes)
+ votes << VoteInfo.new(:voter_id => vote.voter.id, :voter_ipaddress => vote.voter.ipaddress, :vote_time => vote.time.to_i, :vote => vote.votes, :voter_session_id => vote.voter.session_id )
end
return votes
end
return all
end
def get_quickvote(shortname)
- return ElectionStruct.new unless election=QuickVote.ident_to_quickvote(shortname)
+ raise ArgumentError.new("Cannot find QuickVote named #{shortname}") unless election=QuickVote.ident_to_quickvote(shortname)
return ElectionStruct.new(:id => election.id, :name => election.name, :description => election.description, :candidate_ids => election.candidates.collect {|c| c.id }, :candidate_names => election.candidates.collect {|c| c.name } )
end
def create_quickvote(election)
if qv.save
return ""
else
- return "Saving quickvote FAILED:"+qv.errors.inspect
+ raise ArgumentError.new("Saving quickvote FAILED:"+qv.errors.inspect)
end
end