Class: Micropub::Endpoint::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/micropub/endpoint/client.rb

Instance Method Summary collapse

Constructor Details

#initialize(url) ⇒ Client

Returns a new instance of Client.



4
5
6
7
8
9
10
11
12
# File 'lib/micropub/endpoint/client.rb', line 4

def initialize(url)
  raise ArgumentError, "url must be a String (given #{url.class.name})" unless url.is_a?(String)

  @uri = Addressable::URI.parse(url)

  raise ArgumentError, 'url must be an absolute URI (e.g. https://example.com)' unless @uri.absolute?
rescue Addressable::URI::InvalidURIError => error
  raise InvalidURIError, error
end

Instance Method Details

#endpointObject



14
15
16
# File 'lib/micropub/endpoint/client.rb', line 14

def endpoint
  @endpoint ||= Discover.new(response).endpoint
end

#responseObject



18
19
20
# File 'lib/micropub/endpoint/client.rb', line 18

def response
  @response ||= Response.new(@uri).response
end