Class: Corn::Post

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

Instance Method Summary collapse

Constructor Details

#initializePost

Returns a new instance of Post.



8
9
10
11
# File 'lib/corn/post.rb', line 8

def initialize
  @queue = Queue.new
  @thread = start_post_thread
end

Instance Method Details

#enqueue(*args) ⇒ Object



30
31
32
# File 'lib/corn/post.rb', line 30

def enqueue(*args)
  @queue << args
end

#http_post(data) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/corn/post.rb', line 34

def http_post(data)
  uri = URI.parse(submit_url)
  req = Net::HTTP::Post.new(uri.path)
  req.set_form_data(data.merge('client_id' => Corn.client_id))

  http = Net::HTTP.new(uri.host, uri.port)
  if uri.scheme == 'https'
    http.use_ssl = true
    if Corn.ssl_verify_peer?
      http.verify_mode = OpenSSL::SSL::VERIFY_PEER
      http.ca_file = Corn.ssl_ca_file if Corn.ssl_ca_file
      http.ca_path = Corn.ssl_ca_path if Corn.ssl_ca_path
    else
      http.verify_mode = OpenSSL::SSL::VERIFY_NONE
    end
  end
  res = http.request(req)
  Corn.logger.info("Corn report submitted to #{submit_url}")
  unless res.is_a?(Net::HTTPSuccess)
    Corn.logger.error("Post failed: #{res.message}(#{res.code}), response body: \n#{res.body}")
  end
rescue Exception => e
  Corn.logger.error("post to #{submit_url} failed: #{e.message}\n#{e.backtrace.join("\n")}")
end

#start_post_threadObject



17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/corn/post.rb', line 17

def start_post_thread
  Thread.start do
    begin
      loop do
        http_post(*@queue.pop)
        sleep 1
      end
    rescue => e
      Corn.logger.error("Corn post thread stopped by error #{e.message}\n#{e.backtrace.join("\n")}")
    end
  end
end

#submit_urlObject



59
60
61
# File 'lib/corn/post.rb', line 59

def submit_url
  Corn.submit_url
end

#terminateObject



13
14
15
# File 'lib/corn/post.rb', line 13

def terminate
  @thread.terminate
end