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



156
157
158
# File 'lib/api_consumer.rb', line 156

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

.connection(connection_flag = :normal) ⇒ Object



134
135
136
137
138
# File 'lib/api_consumer.rb', line 134

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



140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'lib/api_consumer.rb', line 140

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



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
130
131
132
# File 'lib/api_consumer.rb', line 78

def do_request(path, conn, opts = {}, &blk)
  if(opts[:verbose])
    log.debug("Sending request to: #{conn.address}#{':' + conn.port.to_s if conn.port}#{path}")
  end
  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]

  path = decorate_path( path )
  req = if( opts[:method] == :get)
    Net::HTTP::Get.new(path)
  elsif( opts[:method] == :post)
    Net::HTTP::Post.new(path)
  elsif( opts[:method] == :delete)
    Net::HTTP::Delete.new(path)
  elsif( opts[:method] == :put)
    Net::HTTP::Put.new(path)
  else
    log.error "BUG - method=>(#{opts[:method]})"
  end
  opts[:headers].each { |k,v| req[k] = v }
  settings[:headers].each { |k,v| req[k] = v } if settings[:headers]
  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.debug "CONN:" + conn.inspect
    log.debug "REQ:" + req.inspect
    response = conn.request(req)
    
    results = JSON.parse(response.body)
    accept_codes = [200, 201, 202]
    accept_codes += settings[:accept_codes].map(&:to_i) if settings[:accept_codes]
    if !accept_codes.include?(response.code.to_i)
      results = error_code(response.code, opts[:errors], results)
    end
    results = blk.call(results) if blk
    cache.obj_write(opts[:key], results, :ttl => opts[:ttl]) if opts[:key]
    return results
  rescue Exception => exception
    log.error exception.message
    log.error exception.backtrace        
    return error_code(response ? response.code : "NO CODE" , opts[:errors])
  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



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

def inherited(subclass)
  if File.exist?("config/#{snake_case(subclass)}.yml")
    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(subclass.settings[:log_file] || "./log/#{snake_case(subclass)}_api.log"), subclass.settings[:log_level])
    super
  else
    raise RuntimeError, "Please create config file: 'config/#{snake_case(subclass)}.yml'"
  end
end

.logObject



27
28
29
# File 'lib/api_consumer.rb', line 27

def log
  @logger
end

.memcache?Boolean

Returns:

  • (Boolean)


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

def memcache?
  settings[:use_memcache]
end

.memcache_hostsObject



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

def memcache_hosts
  settings[:memcache_hosts]
end

.set(key, val) ⇒ Object



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

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

.set_log_level(level = nil) ⇒ Object



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

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



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

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

.settingsObject



65
66
67
# File 'lib/api_consumer.rb', line 65

def settings
  @settings ||= {}
end