Class: BancoBrasilStatements::Configuration

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize {|_self| ... } ⇒ Configuration

Returns a new instance of Configuration.

Yields:

  • (_self)

Yield Parameters:



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'lib/bb_statements/configuration.rb', line 132

def initialize
  @scheme = 'https'
  @app_key_name = 'gw-app-key'
  @host = 'api-extratos.bb.com.br'
  @oauth_host = 'oauth.bb.com.br'
  @base_path = 'extratos/v1'
  @api_key = {}
  @api_key_prefix = {}
  @timeout = nil
  @client_side_validation = true
  @verify_ssl = true
  @verify_ssl_host = true
  @params_encoding = nil
  @cert_file = nil
  @key_file = nil
  @debugging = false
  @inject_format = false
  @force_ending_format = false
  @logger = defined?(Jets) ? Jets.logger : Logger.new(STDOUT)
  @access_token_scopes = 'extrato-info'

  yield(self) if block_given?
end

Instance Attribute Details

#access_tokenObject

Defines the access token (Bearer) used with OAuth2.



47
48
49
# File 'lib/bb_statements/configuration.rb', line 47

def access_token
  @access_token
end

#access_token_scopesObject

Returns the value of attribute access_token_scopes.



128
129
130
# File 'lib/bb_statements/configuration.rb', line 128

def access_token_scopes
  @access_token_scopes
end

#api_keyHash

Defines API keys used with API Key authentications.

Examples:

parameter name is “api_key”, API key is “xxx” (e.g. “api_key=xxx” in query string)

config.api_key['api_key'] = 'xxx'

Returns:

  • (Hash)

    key: parameter name, value: parameter value (API key)



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

def api_key
  @api_key
end

#api_key_prefixHash

Defines API key prefixes used with API Key authentications.

Examples:

parameter name is “Authorization”, API key prefix is “Token” (e.g. “Authorization: Token xxx” in headers)

config.api_key_prefix['api_key'] = 'Token'

Returns:

  • (Hash)

    key: parameter name, value: API key prefix



29
30
31
# File 'lib/bb_statements/configuration.rb', line 29

def api_key_prefix
  @api_key_prefix
end

#app_key_nameObject

Returns the value of attribute app_key_name.



130
131
132
# File 'lib/bb_statements/configuration.rb', line 130

def app_key_name
  @app_key_name
end

#base_pathObject

Defines url base path



13
14
15
# File 'lib/bb_statements/configuration.rb', line 13

def base_path
  @base_path
end

#cert_fileObject

TLS/SSL setting Client certificate file (for client certificate)



107
108
109
# File 'lib/bb_statements/configuration.rb', line 107

def cert_file
  @cert_file
end

#client_side_validationtrue, false

Set this to false to skip client side validation in the operation. Default to true.

Returns:

  • (true, false)


76
77
78
# File 'lib/bb_statements/configuration.rb', line 76

def client_side_validation
  @client_side_validation
end

#debuggingtrue, false

Set this to enable/disable debugging. When enabled (set to true), HTTP request/response details will be logged with ‘logger.debug` (see the `logger` attribute). Default to false.

Returns:

  • (true, false)


54
55
56
# File 'lib/bb_statements/configuration.rb', line 54

def debugging
  @debugging
end

#force_ending_formatObject

Returns the value of attribute force_ending_format.



126
127
128
# File 'lib/bb_statements/configuration.rb', line 126

def force_ending_format
  @force_ending_format
end

#gw_app_keyObject

Chave de acesso do aplicativo do desenvolvedor. Esta chave é única e obtida no Portal “BB for Developers”Usada para identificar as requisições da aplicação do desenvolvedor.



34
35
36
# File 'lib/bb_statements/configuration.rb', line 34

def gw_app_key
  @gw_app_key
end

#hostObject

Defines url host



7
8
9
# File 'lib/bb_statements/configuration.rb', line 7

def host
  @host
end

#inject_formatObject

Returns the value of attribute inject_format.



124
125
126
# File 'lib/bb_statements/configuration.rb', line 124

def inject_format
  @inject_format
end

#key_fileObject

TLS/SSL setting Client private key file (for client certificate)



111
112
113
# File 'lib/bb_statements/configuration.rb', line 111

def key_file
  @key_file
end

#logger#debug

Defines the logger used for debugging. Default to ‘Rails.logger` (when in Rails) or logging to STDOUT.

Returns:

  • (#debug)


60
61
62
# File 'lib/bb_statements/configuration.rb', line 60

def logger
  @logger
end

#oauth_hostObject

Defines url for oauth



10
11
12
# File 'lib/bb_statements/configuration.rb', line 10

def oauth_host
  @oauth_host
end

#params_encodingObject

Set this to customize parameters encoding of array parameter with multi collectionFormat. Default to nil.

github.com/typhoeus/ethon/blob/master/lib/ethon/easy/queryable.rb#L96

See Also:

  • params_encoding option of Ethon. Related source code:


122
123
124
# File 'lib/bb_statements/configuration.rb', line 122

def params_encoding
  @params_encoding
end

#passwordString

Defines the password used with HTTP basic authentication.

Returns:

  • (String)


44
45
46
# File 'lib/bb_statements/configuration.rb', line 44

def password
  @password
end

#schemeObject

Defines url scheme



4
5
6
# File 'lib/bb_statements/configuration.rb', line 4

def scheme
  @scheme
end

#ssl_ca_certString

TLS/SSL setting Set this to customize the certificate file to verify the peer.

github.com/typhoeus/typhoeus/blob/master/lib/typhoeus/easy_factory.rb#L145

Returns:

  • (String)

    the path to the certificate file

See Also:

  • `cainfo` option of Typhoeus, `--cert` option of libcurl. Related source code:


103
104
105
# File 'lib/bb_statements/configuration.rb', line 103

def ssl_ca_cert
  @ssl_ca_cert
end

#ssl_key_passwdObject

TLS/SSL setting Client private key passphrase (for client certificate)



115
116
117
# File 'lib/bb_statements/configuration.rb', line 115

def ssl_key_passwd
  @ssl_key_passwd
end

#temp_folder_pathString

Defines the temporary folder to store downloaded files (for API endpoints that have file response). Default to use ‘Tempfile`.

Returns:

  • (String)


67
68
69
# File 'lib/bb_statements/configuration.rb', line 67

def temp_folder_path
  @temp_folder_path
end

#timeoutObject

The time limit for HTTP request in seconds. Default to 0 (never times out).



71
72
73
# File 'lib/bb_statements/configuration.rb', line 71

def timeout
  @timeout
end

#usernameString

Defines the username used with HTTP basic authentication.

Returns:

  • (String)


39
40
41
# File 'lib/bb_statements/configuration.rb', line 39

def username
  @username
end

#verify_ssltrue, false

Note:

Do NOT set it to false in production code, otherwise you would face multiple types of cryptographic attacks.

TLS/SSL setting Set this to false to skip verifying SSL certificate when calling API from https server. Default to true.

Returns:

  • (true, false)


85
86
87
# File 'lib/bb_statements/configuration.rb', line 85

def verify_ssl
  @verify_ssl
end

#verify_ssl_hosttrue, false

Note:

Do NOT set it to false in production code, otherwise you would face multiple types of cryptographic attacks.

TLS/SSL setting Set this to false to skip verifying SSL host name Default to true.

Returns:

  • (true, false)


94
95
96
# File 'lib/bb_statements/configuration.rb', line 94

def verify_ssl_host
  @verify_ssl_host
end

Class Method Details

.defaultObject

The default Configuration object.



176
177
178
# File 'lib/bb_statements/configuration.rb', line 176

def self.default
  @@default ||= Configuration.new
end

Instance Method Details

#api_key_with_prefix(param_name) ⇒ Object

Gets API key (with prefix if set).

Parameters:

  • param_name (String)

    the parameter name of API key auth



206
207
208
209
210
211
212
# File 'lib/bb_statements/configuration.rb', line 206

def api_key_with_prefix(param_name)
  if @api_key_prefix[param_name]
    "#{@api_key_prefix[param_name]} #{@api_key[param_name]}"
  else
    @api_key[param_name]
  end
end

#base_url(base_path) ⇒ Object



200
201
202
# File 'lib/bb_statements/configuration.rb', line 200

def base_url(base_path)
  "#{scheme}://#{[host, base_path].join('/').gsub(/\/+/, '/')}".sub(/\/+\z/, '')
end

#basic_auth_tokenObject

Gets Basic Auth token string



215
216
217
# File 'lib/bb_statements/configuration.rb', line 215

def basic_auth_token
  'Basic ' + Base64.encode64("#{username}:#{password}").delete("\r\n")
end

#client_credentials_apiObject



156
157
158
# File 'lib/bb_statements/configuration.rb', line 156

def client_credentials_api
  @client_credentials_api ||= BancoBrasilClientCredentials::ApiClient.new oauth_config
end

#configure {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:



180
181
182
# File 'lib/bb_statements/configuration.rb', line 180

def configure
  yield(self) if block_given?
end

#oauth_configObject



160
161
162
163
164
165
166
167
168
169
170
171
172
173
# File 'lib/bb_statements/configuration.rb', line 160

def oauth_config
  oauth_config = BancoBrasilClientCredentials::Configuration.new
  oauth_config.host = oauth_host
  oauth_config.base_path = ''
  oauth_config.logger = logger
  oauth_config.debugging = debugging
  oauth_config.verify_ssl = verify_ssl
  oauth_config.verify_ssl_host = verify_ssl_host
  oauth_config.access_token = access_token
  oauth_config.username = username
  oauth_config.password = password
  oauth_config.ssl_ca_cert = ssl_ca_cert
  oauth_config
end