Module: SnapDeploy::Provider::Heroku::API

Defined in:
lib/snap_deploy/provider/heroku/api.rb

Defined Under Namespace

Classes: Account, AccountFeature, Addon, AddonService, App, AppFeature, AppSetup, AppTransfer, Build, BuildResult, BuildpackInstallation, Client, Collaborator, ConfigVar, Credit, Domain, Dyno, Formation, Invoice, Key, LogDrain, LogSession, OauthAuthorization, OauthClient, OauthGrant, OauthToken, Organization, OrganizationApp, OrganizationAppCollaborator, OrganizationMember, OtpSecret, Payment, PaymentMethod, Plan, RateLimit, RecoveryCode, Region, Release, SSLEndpoint, Slug, Source, Stack

Class Method Summary collapse

Class Method Details

.connect(api_key, options = nil) ⇒ Client

Get a Client configured to use HTTP Basic authentication.

Parameters:

  • api_key (String)

    The API key to use when connecting.

  • options (Hash<Symbol,String>) (defaults to: nil)

    Optionally, custom settings to use with the client. Allowed options are ‘default_headers`, `cache`, `user` and `url`.

Returns:

  • (Client)

    A client configured to use the API with HTTP Basic authentication.



21
22
23
24
25
26
27
28
# File 'lib/snap_deploy/provider/heroku/api.rb', line 21

def self.connect(api_key, options=nil)
  options = custom_options(options)
  uri = URI.parse(options[:url])
  uri.user = options.fetch(:user, 'user').gsub('@', '%40')
  uri.password = api_key
  client = Heroics.client_from_schema(SCHEMA, uri.to_s, options)
  Client.new(client)
end

.connect_oauth(oauth_token, options = nil) ⇒ Client

Get a Client configured to use OAuth authentication.

Parameters:

  • oauth_token (String)

    The OAuth token to use with the API.

  • options (Hash<Symbol,String>) (defaults to: nil)

    Optionally, custom settings to use with the client. Allowed options are ‘default_headers`, `cache` and `url`.

Returns:

  • (Client)

    A client configured to use the API with OAuth authentication.



38
39
40
41
42
43
# File 'lib/snap_deploy/provider/heroku/api.rb', line 38

def self.connect_oauth(oauth_token, options=nil)
  options = custom_options(options)
  url = options[:url]
  client = Heroics.oauth_client_from_schema(oauth_token, SCHEMA, url, options)
  Client.new(client)
end

.connect_token(token, options = nil) ⇒ Client

Get a Client configured to use Token authentication.

Parameters:

  • token (String)

    The token to use with the API.

  • options (Hash<Symbol,String>) (defaults to: nil)

    Optionally, custom settings to use with the client. Allowed options are ‘default_headers`, `cache` and `url`.

Returns:

  • (Client)

    A client configured to use the API with OAuth authentication.



53
54
55
56
57
58
# File 'lib/snap_deploy/provider/heroku/api.rb', line 53

def self.connect_token(token, options=nil)
  options = custom_options(options)
  url = options[:url]
  client = Heroics.token_client_from_schema(token, SCHEMA, url, options)
  Client.new(client)
end