Added XMLRPC API to obtain list of voters
authorJohn Dong <jdong@mit.edu>
Thu, 16 Aug 2007 18:28:22 +0000 (14:28 -0400)
committerJohn Dong <jdong@mit.edu>
Thu, 16 Aug 2007 18:28:22 +0000 (14:28 -0400)
app/apis/selectricity_api.rb
app/models/selectricity_service.rb

index 8a8dce4d8072faca8cbc29b7e9e1d496c2a521c9..34c9287137addb59e778e785354c00e24334fdef 100644 (file)
@@ -1,3 +1,9 @@
+class VoteInfo < ActionWebService::Struct
+  member :voter_id, :int
+  member :voter_ipaddress, :string
+  member :vote_time, :int
+end
+
 class VoteResultStruct < ActionWebService::Struct
   member :plurality_winners, [:int]
   member :approval_winners, [:int]
@@ -16,6 +22,7 @@ class SelectricityAPI < ActionWebService::API::Base
   api_method :get_quickvote_results, :expects => [:string], :returns => [VoteResultStruct]
   api_method :get_quickvote_candidate_map, :expects => [:string], :returns => [CandidateMap]
   api_method :quickvote_candidate_ids_to_names, :expects => [:string,[:int]], :returns => [[:string]]
+  api_method :get_quickvote_votes, :expects => [:string], :returns => [ [VoteInfo] ]
 end
 
 
index add5ab9c2bb08f951ce315c852f6f9ba9bf2a140..3f3e42ed4001796346d06d0278b0f8a8f704dd44 100644 (file)
@@ -65,5 +65,16 @@ class SelectricityService < ActionWebService::Base
     result.candidate_names=candidates.values
     result
   end
-    
+  def get_quickvote_votes(shortname)
+    qv=QuickVote.ident_to_quickvote(shortname)
+    votes=Array.new
+    unless qv
+      return result
+    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)
+    end
+    return votes
+  end
+   
 end

Benjamin Mako Hill || Want to submit a patch?