Class: GeminaboxClient

Inherits:
Object
  • Object
show all
Defined in:
lib/geminabox_client.rb

Defined Under Namespace

Modules: GemLocator Classes: Error

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(url) ⇒ GeminaboxClient

Returns a new instance of GeminaboxClient.



7
8
9
10
11
# File 'lib/geminabox_client.rb', line 7

def initialize(url)
  extract_username_and_password_from_url!(url)
  @http_client = Geminabox.http_adapter
  @http_client.set_auth(url_for(:upload), @username, @password) 
end

Instance Attribute Details

#http_clientObject (readonly)

Returns the value of attribute http_client.



5
6
7
# File 'lib/geminabox_client.rb', line 5

def http_client
  @http_client
end

#urlObject (readonly)

Returns the value of attribute url.



5
6
7
# File 'lib/geminabox_client.rb', line 5

def url
  @url
end

Instance Method Details

#extract_username_and_password_from_url!(url) ⇒ Object



13
14
15
16
17
18
19
# File 'lib/geminabox_client.rb', line 13

def extract_username_and_password_from_url!(url)
  uri = URI.parse(url.to_s)
  @username, @password = uri.user, uri.password
  uri.user = uri.password = nil
  uri.path = uri.path + "/" unless uri.path.end_with?("/")
  @url = uri.to_s
end

#push(gemfile, options = {}) ⇒ Object



25
26
27
28
29
30
31
32
33
# File 'lib/geminabox_client.rb', line 25

def push(gemfile, options = {})
  response = http_client.post(url_for(:upload), { 'file' => File.open(gemfile, "rb"), 'overwrite' => !!options[:overwrite] }, { 'Accept' => 'text/plain' })

  if response.status < 300
    response.body
  else
    raise GeminaboxClient::Error, "Error (#{response.status} received)\n\n#{response.body}"
  end
end

#url_for(path) ⇒ Object



21
22
23
# File 'lib/geminabox_client.rb', line 21

def url_for(path)
  url + path.to_s
end