require 'json' require 'cgi' require 'net/http' # also requires uri require 'openssl' class Fastly # The UserAgent to communicate with the API class Client #:nodoc: all attr_accessor :http, :api_key, :user, :password, :cookie, :customer def initialize(opts) @api_key = opts.fetch(:api_key, nil) @user = opts.fetch(:user, nil) @password = opts.fetch(:password, nil) @customer = opts.fetch(:customer, nil) @oldpurge = opts.fetch(:use_old_purge_method, false) base = opts.fetch(:base_url, 'https://api.fastly.com') uri = URI.parse(base) options = if uri.is_a? URI::HTTPS { use_ssl: true, verify_mode: OpenSSL::SSL::VERIFY_PEER } else {} end @http = Net::HTTP.start(uri.host, uri.port, options) return self unless fully_authed? # If full auth creds (user/pass) then log in and set a cookie resp = http.post('/login', make_params(user: user, password: password)) if resp.kind_of?(Net::HTTPSuccess) @cookie = resp['Set-Cookie'] else fail Unauthorized, "Invalid auth credentials. Check username/password." end self end def require_key! raise Fastly::KeyAuthRequired.new("This request requires an API key") if api_key.nil? @require_key = true end def require_key? !!@require_key end def authed? !api_key.nil? || fully_authed? end # Some methods require full username and password rather than just auth token def fully_authed? !(user.nil? || password.nil?) end def get(path, params = {}) extras = params.delete(:headers) || {} path += "?#{make_params(params)}" unless params.empty? resp = http.get(path, headers(extras)) fail Error, resp.body unless resp.kind_of?(Net::HTTPSuccess) JSON.parse(resp.body) end def get_stats(path, params = {}) resp = get(path, params) # return meta data, not just the actual stats data if resp['status'] == 'success' resp else fail Error, resp['msg'] end end def post(path, params = {}) post_and_put(:post, path, params) end def put(path, params = {}) post_and_put(:put, path, params) end def delete(path, params = {}) extras = params.delete(:headers) || {} resp = http.delete(path, headers(extras)) resp.kind_of?(Net::HTTPSuccess) end def purge(url, params = {}) return post("/purge/#{url}", params) if @oldpurge extras = params.delete(:headers) || {} uri = URI.parse(url) http = Net::HTTP.new(uri.host, uri.port) resp = http.request Net::HTTP::Purge.new(uri.request_uri, headers(extras)) fail Error, resp.body unless resp.kind_of?(Net::HTTPSuccess) JSON.parse(resp.body) end private def post_and_put(method, path, params = {}) extras = params.delete(:headers) || {} query = make_params(params) resp = http.send(method, path, query, headers(extras).merge('Content-Type' => 'application/x-www-form-urlencoded')) fail Error, resp.body unless resp.kind_of?(Net::HTTPSuccess) JSON.parse(resp.body) end def headers(extras={}) headers = fully_authed? ? { 'Cookie' => cookie } : { 'Fastly-Key' => api_key } headers.merge('Content-Accept' => 'application/json').merge(extras.keep_if {|k,v| !v.nil? }) end def make_params(params) param_ary = params.map do |key, value| next if value.nil? key = key.to_s if value.is_a?(Hash) value.map do |sub_key, sub_value| "#{CGI.escape("#{key}[#{sub_key}]")}=#{CGI.escape(sub_value.to_s)}" end else "#{CGI.escape(key)}=#{CGI.escape(value.to_s)}" end end param_ary.flatten.delete_if { |v| v.nil? }.join('&') end end end # See Net::HTTPGenericRequest for attributes and methods. class Net::HTTP::Purge < Net::HTTPRequest METHOD = 'PURGE' REQUEST_HAS_BODY = false RESPONSE_HAS_BODY = true end