module Bitly module V3 # The client is the main part of this gem. You need to initialize the client with your # username and API key and then you will be able to use the client to perform # all the rest of the actions available through the API. class Client include HTTParty base_uri 'http://api.bit.ly/v3/' # Requires a login and api key. Get yours from your account page at https://bitly.com/a/your_api_key # Visit your account at http://bit.ly/a/account def initialize(login, api_key, timeout=nil) @default_query_opts = { :login => login, :apiKey => api_key } self.timeout = timeout end # Validates a login and api key def validate(x_login, x_api_key) response = get('/validate', :query => { :x_login => x_login, :x_apiKey => x_api_key }) return response['data']['valid'] == 1 end alias :valid? :validate # Checks whether a domain is a bitly.Pro domain def bitly_pro_domain(domain) response = get('/bitly_pro_domain', :query => { :domain => domain }) return response['data']['bitly_pro_domain'] end alias :pro? :bitly_pro_domain # Shortens a long url # # Options can be: # # [domain] choose bit.ly or j.mp (bit.ly is default) # # [x_login and x_apiKey] add this link to another user's history (both required) # def shorten(long_url, opts={}) query = { :longUrl => long_url }.merge(opts) response = get('/shorten', :query => query) return Bitly::V3::Url.new(self, response['data']) end # Expands either a hash, short url or array of either. # # Returns the results in the order they were entered def expand(input) get_method(:expand, input) end # Expands either a hash, short url or array of either and gets click data too. # # Returns the results in the order they were entered def clicks(input) get_method(:clicks, input) end # Like expand, but gets the title of the page and who created it def info(input) get_method(:info, input) end # Looks up the short url and global hash of a url or array of urls # # Returns the results in the order they were entered def lookup(input) input = arrayize(input) query = input.inject([]) { |query, i| query << "url=#{CGI.escape(i)}" } query = "/lookup?" + query.join('&') response = get(query) results = response['data']['lookup'].inject([]) do |results, url| url['long_url'] = url['url'] url['url'] = nil if url['error'].nil? # builds the results array in the same order as the input results[input.index(url['long_url'])] = Bitly::V3::Url.new(self, url) # remove the key from the original array, in case the same hash/url was entered twice input[input.index(url['long_url'])] = nil else results[input.index(url['long_url'])] = Bitly::V3::MissingUrl.new(url) input[input.index(url['long_url'])] = nil end results end return results.length > 1 ? results : results[0] end # Expands either a short link or hash and gets the referrer data for that link # # This method does not take an array as an input def referrers(input) get_single_method('referrers', input) end # Expands either a short link or hash and gets the country data for that link # # This method does not take an array as an input def countries(input) get_single_method('countries', input) end # Takes a short url, hash or array of either and gets the clicks by minute of each of the last hour def clicks_by_minute(input) get_method(:clicks_by_minute, input) end # Takes a short url, hash or array of either and gets the clicks by day def clicks_by_day(input, opts={}) opts.reject! { |k, v| k.to_s != 'days' } get_method(:clicks_by_day, input, opts) end def timeout=(timeout=nil) self.class.default_timeout(timeout) if timeout end private def arrayize(arg) if arg.is_a?(String) [arg] else arg.dup end end def get(method, opts={}) opts[:query] ||= {} opts[:query].merge!(@default_query_opts) begin response = self.class.get(method, opts) rescue Timeout::Error raise BitlyTimeout.new("Bitly didn't respond in time", "504") end if response['status_code'] == 200 return response else raise BitlyError.new(response['status_txt'], response['status_code']) end end def is_a_short_url?(input) input.match(/^http:\/\//) end def get_single_method(method, input) raise ArgumentError.new("This method only takes a hash or url input") unless input.is_a? String if is_a_short_url?(input) query = "shortUrl=#{CGI.escape(input)}" else query = "hash=#{CGI.escape(input)}" end query = "/#{method}?" + query response = get(query) return Bitly::V3::Url.new(self,response['data']) end def get_method(method, input, opts={}) input = arrayize(input) query = input.inject([]) do |query,i| if is_a_short_url?(i) query << "shortUrl=#{CGI.escape(i)}" else query << "hash=#{CGI.escape(i)}" end end query = opts.inject(query) do |query, (k,v)| query << "#{k}=#{v}" end query = "/#{method}?" + query.join('&') response = get(query) results = response['data'][method.to_s].inject([]) do |results, url| result_index = input.index(url['short_url'] || url['hash']) || input.index(url['global_hash']) if url['error'].nil? # builds the results array in the same order as the input results[result_index] = Bitly::V3::Url.new(self, url) # remove the key from the original array, in case the same hash/url was entered twice input[result_index] = nil else results[result_index] = Bitly::V3::MissingUrl.new(url) input[result_index] = nil end results end return results.length > 1 ? results : results[0] end end end end class BitlyTimeout < BitlyError; end