trabajo-afectivo/lib/service/geo_calendar/zammad.rb

45 lines
1 KiB
Ruby
Raw Normal View History

2015-09-22 14:49:57 +00:00
# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
require 'cache'
class Service::GeoCalendar::Zammad
def self.location(address)
# check cache
cache_key = "zammadgeocalendar::#{address}"
cache = Cache.get( cache_key )
return cache if cache
# do lookup
host = 'https://geo.zammad.com'
if address
url = "/calendar?ip=#{CGI.escape address}"
else
url = '/calendar'
end
data = {}
begin
response = UserAgent.get(
"#{host}#{url}",
{},
{
json: true,
open_timeout: 2,
read_timeout: 4,
},
)
if !response.success? && response.code.to_s !~ /^40.$/
fail "ERROR: #{response.code}/#{response.body}"
end
data = response.data
Cache.write( cache_key, data, { expires_in: 30.minutes } )
2015-09-22 14:49:57 +00:00
rescue => e
Rails.logger.error "#{host}#{url}: #{e.inspect}"
2015-11-30 13:29:23 +00:00
Cache.write( cache_key, data, { expires_in: 1.minute } )
2015-09-22 14:49:57 +00:00
end
data
end
end