Use WHOIS to search up meaningful organizational data about voters. NOTE: Probably...
[selectricity-live] / app / views / quickvote / results.rhtml
index 5626636c7000b0a29aa9de1c07bb2c24d6529a8e..1df2856e4416b8d2ff81e905d673be82bf8420f1 100644 (file)
@@ -1,4 +1,4 @@
-<%require 'IPAddr' %>
+<%require 'whois/whois' %>
 <h1>Results</h1>
 
 <% if @election.shortdesc %>
@@ -156,10 +156,11 @@ by several other names.</p>
   <tr>
   <td><%= voter.ipaddress %></td>
   <td><% begin %>
-      <%= `host #{IPAddr.new(voter.ipaddress).to_s}`.sub(/^.*pointer (.*)\.$/, '\1') %>
+      <% raise ArgumentError.new if voter.ipaddress == "127.0.0.1" %>
+      <%= Whois::Whois.new(IPAddr.new(voter.ipaddress).to_s).search_whois.grep(/^OrgName/)[0].sub(/^OrgName\:/,'').strip %>
     
     <% rescue ArgumentError => err %>
-      <%= " - " %>
+      <%= voter.ipaddress %>
     <% end %>
     </td>
   <td><%= voter.vote.votestring %></td>

Benjamin Mako Hill || Want to submit a patch?