X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/a16962155a3c3c6616bfe32c7216f3631836d38c..1544cbab02fbc3333bc53a5ac98d38e377640d4a:/app/models/selectricity_service.rb diff --git a/app/models/selectricity_service.rb b/app/models/selectricity_service.rb index 6d338de..196161a 100644 --- a/app/models/selectricity_service.rb +++ b/app/models/selectricity_service.rb @@ -28,7 +28,7 @@ class SelectricityService < ActionWebService::Base 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=[] @@ -46,10 +46,8 @@ class SelectricityService < ActionWebService::Base #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 @@ -62,10 +60,8 @@ class SelectricityService < ActionWebService::Base 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} @@ -77,10 +73,10 @@ class SelectricityService < ActionWebService::Base 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 @@ -92,7 +88,7 @@ class SelectricityService < ActionWebService::Base 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) @@ -101,7 +97,7 @@ class SelectricityService < ActionWebService::Base if qv.save return "" else - return "Saving quickvote FAILED:"+qv.errors.inspect + raise ArgumentError.new("Saving quickvote FAILED:"+qv.errors.inspect) end end