Class: APIConsumer

Inherits:
Object
  • Object
show all
Defined in:
lib/api_consumer.rb

Constant Summary collapse

DEFAULT_REQUEST_OPTS =
{
  :method => :get,
  :headers => {
    "Accept" => "application/json",
    "Content-Type" => "application/json",
    "User-Agent" => "API-CONSUMER-#{ENV['RACK_ENV'] || 'dev'}"
  },
  :ttl => 300
}

Class Method Summary collapse

Class Method Details

.cacheObject



153
154
155
# File 'lib/api_consumer.rb', line 153

def cache
  @cache ||= UberCache.new(settings[:cache_prefix], settings[:memcache_hosts])
end

.connection(connection_flag = :normal) ⇒ Object



131
132
133
134
135
# File 'lib/api_consumer.rb', line 131

def connection(connection_flag = :normal)
  @connections ||= {}
  return @connections[connection_flag] if @connections[connection_flag]
  @connections[connection_flag] = create_connection
end

.create_connection(debug = false) ⇒ Object



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/api_consumer.rb', line 137

def create_connection(debug = false)
  if @uri.nil? || @uri.port.nil?
    log.info "CONNECTING TO: #{settings[:url]}"
    @uri = URI.parse("#{settings[:url]}/")
  end
  http = Net::HTTP.new(@uri.host, @uri.port)
  if settings[:ssl] == true
    http.use_ssl = true
    http.verify_mode = OpenSSL::SSL::VERIFY_NONE
  end
  http.set_debug_output $stderr if debug
  http.open_timeout = 7
  http.read_timeout = 15
  http
end

.do_request(path, conn, opts = {}, &blk) ⇒ Object



75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/api_consumer.rb', line 75

def do_request(path, conn, opts = {}, &blk)
  if opts[:key] # cache if key sent
    read_val = nil
    return read_val if !opts[:reload] && read_val = cache.obj_read(opts[:key])
    opts[:ttl] ||= settings[:ttl] || DEFAULT_REQUEST_OPTS[:ttl]
  end
  opts[:headers] = DEFAULT_REQUEST_OPTS[:headers].merge(opts[:headers] || {})
  opts[:method] = opts[:method] || DEFAULT_REQUEST_OPTS[:method]

  req = if( opts[:method] == :get)
    Net::HTTP::Get.new(path)
  elsif( opts[:method] == :post)
    Net::HTTP::Post.new(path)
  else
    log.error "BUG - method=>(#{opts[:method]})"
  end
  opts[:headers].each { |k,v| req[k] = v }
  req.basic_auth settings[:api_user], settings[:api_password] if settings[:api_user] && settings[:api_password]
  req["connection"] = 'keep-alive'
  req.body = opts[:body] if opts[:body]

  response = nil
  begin
    log.warn conn.inspect
    log.warn req.inspect
    response = conn.request(req)
    if( settings[:type] == "json")
      results = JSON.parse(response.body)
      if ![200, 201].include?(response.code.to_i)
        results = error_code(response.code, opts[:errors])
      end
      results = blk.call(results) if blk
      cache.obj_write(opts[:key], results, :ttl => opts[:ttl]) if opts[:key]
      return results
    elsif( settings[:type] == "rss")
      rss = Nokogiri::XML(response.body)
      return rss.xpath("//item").map{ |i|
        { 'title' => i.xpath('title').inner_text,
          'link' => i.xpath('link').inner_text,
          'description' => i.xpath('description').inner_text
        }
      }
    end
  rescue Exception => exception
    log.error exception.message
    log.error exception.backtrace
    if( settings[:type] == "json")
      return error_code(response ? response.code : "NO CODE" , opts[:errors])
    end
  end
  data = response.body
  data = blk.call(data) if blk
  cache.obj_write(opts[:key], data, :ttl => opts[:ttl]) if opts[:key]
  return data
end

.inherited(subclass) ⇒ Object



12
13
14
15
16
17
# File 'lib/api_consumer.rb', line 12

def inherited(subclass)
  configs = YAML.load_file("config/#{snake_case(subclass)}.yml")
  configs[snake_case(subclass)].each{ |k,v| subclass.set(k.to_sym, v) }
  subclass.set_logger(Logger.new(settings[:log_file] || "./log/#{snake_case(subclass)}_api.log"), settings[:log_level])
  super
end

.logObject



24
25
26
# File 'lib/api_consumer.rb', line 24

def log
  @logger
end

.memcache?Boolean

Returns:

  • (Boolean)


50
51
52
# File 'lib/api_consumer.rb', line 50

def memcache?
  settings[:use_memcache]
end

.memcache_hostsObject



54
55
56
# File 'lib/api_consumer.rb', line 54

def memcache_hosts
  settings[:memcache_hosts]
end

.set(key, val) ⇒ Object



58
59
60
# File 'lib/api_consumer.rb', line 58

def set(key, val)
  settings[key] = val
end

.set_log_level(level = nil) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/api_consumer.rb', line 28

def set_log_level(level=nil)
  if level.nil?
    level = if([nil, "development", "test"].include?(ENV['RACK_ENV']))
      :info
    else
      :warn
    end
  end
  @logger.level = case level.to_sym
  when :debug
    Logger::DEBUG
  when :info
    Logger::INFO
  when :error
    Logger::ERROR
  when :fatal
    Logger::FATAL
  else #warn
    Logger::WARN
  end
end

.set_logger(logger, level = nil) ⇒ Object



19
20
21
22
# File 'lib/api_consumer.rb', line 19

def set_logger(logger, level=nil)
  @logger = logger.nil? ? Logger.new(STDERR) : logger
  set_log_level(level)
end

.settingsObject



62
63
64
# File 'lib/api_consumer.rb', line 62

def settings
  @settings ||= {}
end