Sha256: bd01e6c66f735a4c41f42bf072bce09cf4f36c850e3c6c915e5f3f5feec471f9
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
require 'net/http' require 'uri' module ActiveHook class POST HEADERS = { "Content-Type" => "application/json", "Accept" => "application/json", "User-Agent" => "ActiveHook/#{ActiveHook::VERSION}" }.freeze attr_accessor :payload attr_reader :response_time, :uri, :status, :response def initialize(options = {}) options.each { |key, value| send("#{key}=", value) } end def start @status = post_hook log_status end def uri=(uri) @uri = URI.parse(uri) end def success? status == :success end private def post_hook http = Net::HTTP.new(uri.host, uri.port) measure_response_time do @response = http.post(uri.path, payload.to_json, HEADERS) end response_status(@response) rescue :error end def measure_response_time start = Time.now yield finish = Time.now @response_time = "| #{((finish - start) * 1000.0).round(3)} ms" end def response_status(response) case response.code.to_i when (200..204) :success when (400..499) :bad_request when (500..599) :server_problems end end def log_status msg = "POST | #{uri} | #{status.upcase} #{response_time}" if status == :success ActiveHook.log.info(msg) else ActiveHook.log.err(msg) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activehook-0.1.0 | lib/activehook/post.rb |