Sha256: 14a7958e6ed895da2b3134c5f12335dbf31c05b5589b3b4aa24bf5017facb1bf

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 KB

Contents

require 'httparty'
require 'json'

module Messenger

  class Campfire

    def self.valid_url?(url)
      !!matcher(url)
    rescue NoMethodError
      false
    end

    # URL format:
    #     campfire://api-key:room-id@subdomain.campfirenow.com
    def self.send(url, body, options={})
      raise URLError, "The URL provided is invalid" unless valid_url?(url)
      api_key, room, subdomain = matcher(url)
      response = HTTParty.post(
        "http://#{subdomain}.campfirenow.com/room/#{room}/speak.json",
        :basic_auth => { :username => api_key, :password => "x" },
        :headers => { "Content-Type" => "application/json" },
        :body => { "message" => { "body" => body } }.to_json
      )
      [success?(response), response]
    end

    def self.obfuscate(url)
      raise URLError, "The URL provided is invalid" unless valid_url?(url)
      api_key, room, subdomain = matcher(url)
      "campfire://xxxx:#{room}@#{subdomain}.campfirenow.com"
    end


  private

    def self.matcher(url)
      url.match(/^campfire:\/\/([^:]+):([^@]+)@([^\.]+).campfirenow.com/)[1,3]
    end

    def self.success?(response)
      case response.code
      when 200, 201: true
      else
        false
      end
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
messenger-0.1.0 lib/messenger/campfire.rb