X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/bf220bde847fd30e9bf0d00dd7c9aff31265c810..59f7f3f18cc10105106d3aadfef76f33493a69f7:/app/views/quickvote/list_voters.rhtml diff --git a/app/views/quickvote/list_voters.rhtml b/app/views/quickvote/list_voters.rhtml index 795ab45..ea276d7 100644 --- a/app/views/quickvote/list_voters.rhtml +++ b/app/views/quickvote/list_voters.rhtml @@ -1,5 +1,5 @@ <%= GMap.header %> - +<%require('whois/whois') %>
Quickvote Voters @@ -26,12 +26,27 @@ /^192\.168/ or voter.ipaddress =~ /^10\./ or voter.ipaddress =~ /^169\.254/ or voter.ipaddress =~ /^172\.[1-3]/ %> - <% w= Whois::Whois.new(IPAddr.new(voter.ipaddress),true)%> + <% w=nil + if Cache and w=Cache.get("WHOIS:#{voter.ipaddress}") + elsif Cache + w= Whois::Whois.new(IPAddr.new(voter.ipaddress),true) + w.search_whois + Cache.set("WHOIS:#{voter.ipaddress}", w) + else + w= Whois::Whois.new(IPAddr.new(voter.ipaddress),true) + w.search_whois + end + + %> <%=h((w.host == nil or w.host.empty?) ? voter.ipaddress : w.host)%> - <%w.search_whois%> - <%=h (w.all.grep(/^(OrgName|org-name)/)[0] or "").sub(/^(OrgName|org-name)\:/,'').strip -%> - <%= (w.all.grep(/^(NetName|netname)/)[0] or "").sub(/^(NetName|netname)\:/,'').strip %> + <%org=(w.all.grep(/^(OrgName|org-name)/)[0] or "").sub(/^(OrgName|org-name)\:/,'').strip+" - "+ (w.all.grep(/^(NetName|netname)/)[0] or "").sub(/^(NetName|netname)\:/,'').strip %> + <% if org =~ /IANA/ %> + <%= "No additional information" %> + <% else %> + <%= h(org) %> + <% end %> <% rescue ArgumentError => err %> <%=h err %>