1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws.rb

89 lines
2.3 KiB
Ruby

require File.dirname(__FILE__) + '/aws/simpledb'
require File.dirname(__FILE__) + '/aws/s3'
require 'rubygems'
require 'openssl'
require 'socket'
require 'uri'
module Fog
module AWS
class Connection
def initialize(url)
@uri = URI.parse(url)
@connection = TCPSocket.open(@uri.host, @uri.port)
if @uri.scheme == 'https'
@ssl_context = OpenSSL::SSL::SSLContext.new
@ssl_context.verify_mode = OpenSSL::SSL::VERIFY_NONE
@connection = OpenSSL::SSL::SSLSocket.new(@connection, @ssl_context)
@connection.sync_close = true
@connection.connect
end
end
def request(params)
uri = URI.parse(params[:url])
path = "#{uri.path}"
if uri.query
path << "?#{uri.query}"
end
host = "#{uri.host}"
if (uri.scheme == "http" && uri.port != 80) ||
(uri.scheme == 'https' && uri.port != 443)
host << ":#{uri.port}"
end
request = "#{params[:method]} #{path} HTTP/1.1\r\n"
params[:headers] ||= {}
params[:headers]['Host'] = uri.host
if params[:body]
params[:headers]['Content-Length'] = params[:body].length
end
for key, value in params[:headers]
request << "#{key}: #{value}\r\n"
end
request << "\r\n#{params[:body]}"
@connection.write(request)
response = AWS::Response.new
response.status = @connection.readline[9..11].to_i
while true
data = @connection.readline.chomp!
if data == ""
break
end
header = data.split(': ')
response.headers[header[0]] = header[1]
end
if response.headers['Content-Length']
response.body << @connection.read(response.headers['Content-Length'].to_i)
elsif response.headers['Transfer-Encoding'] == 'chunked'
while true
# 2 == "/r/n".length
chunk_size = @connection.readline.chomp!.to_i(16) + 2
response.body << @connection.read(chunk_size)
if chunk_size == 2
break
end
end
end
response
end
end
class Response
attr_accessor :status, :headers, :body
def initialize
@body = ''
@headers = {}
end
end
end
end