Class: AsposeWordsCloud::Configuration

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

Overview

Class for storing API configuration info

Constant Summary collapse

V4_API_VERSION =

Defines v4 api version

'/v4.0'.freeze

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:



104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/aspose_words_cloud/configuration.rb', line 104

def initialize
  @scheme = 'https'
  @host = "api.aspose.cloud"
  @api_version = V4_API_VERSION
  @api_key = {}
  @api_key_prefix = {}
  @client_side_validation = true
  @debugging = false
  @logger = defined?(Rails) ? Rails.logger : Logger.new(STDOUT)

  yield(self) if block_given?
end

Instance Attribute Details

#access_tokenObject

Defines the access token (Bearer) used with OAuth2.



73
74
75
# File 'lib/aspose_words_cloud/configuration.rb', line 73

def access_token
  @access_token
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)



52
53
54
# File 'lib/aspose_words_cloud/configuration.rb', line 52

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



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

def api_key_prefix
  @api_key_prefix
end

#api_versionObject

Defines url api version



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

def api_version
  @api_version
end

#client_side_validationtrue, false

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

Returns:

  • (true, false)


101
102
103
# File 'lib/aspose_words_cloud/configuration.rb', line 101

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)


83
84
85
# File 'lib/aspose_words_cloud/configuration.rb', line 83

def debugging
  @debugging
end

#hostObject

Defines url host



41
42
43
# File 'lib/aspose_words_cloud/configuration.rb', line 41

def host
  @host
end

#logger#debug

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

Returns:

  • (#debug)


89
90
91
# File 'lib/aspose_words_cloud/configuration.rb', line 89

def logger
  @logger
end

#passwordString

Defines the password used with HTTP basic authentication.

Returns:

  • (String)


70
71
72
# File 'lib/aspose_words_cloud/configuration.rb', line 70

def password
  @password
end

#refresh_tokenObject

Defines the refresh token (Bearer) used with OAuth2.



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

def refresh_token
  @refresh_token
end

#schemeObject

Defines url scheme



38
39
40
# File 'lib/aspose_words_cloud/configuration.rb', line 38

def scheme
  @scheme
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)


96
97
98
# File 'lib/aspose_words_cloud/configuration.rb', line 96

def temp_folder_path
  @temp_folder_path
end

#usernameString

Defines the username used with HTTP basic authentication.

Returns:

  • (String)


65
66
67
# File 'lib/aspose_words_cloud/configuration.rb', line 65

def username
  @username
end

Class Method Details

.defaultObject

The default Configuration object.



118
119
120
# File 'lib/aspose_words_cloud/configuration.rb', line 118

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



147
148
149
150
151
152
153
# File 'lib/aspose_words_cloud/configuration.rb', line 147

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

#auth_settingsObject

Returns Auth Settings hash for api client.



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

def auth_settings
  {
    'JWT' =>
      {
        type: 'oauth2',
        in: 'header',
        key: 'Authorization',
        value: "Bearer #{access_token}"
      },
  }
end

#base_urlObject

returns base url



140
141
142
143
# File 'lib/aspose_words_cloud/configuration.rb', line 140

def base_url
  url = "#{scheme}://#{[host, @api_version].join('/').gsub(/\/+/, '/')}".sub(/\/+\z/, '')
  URI.encode(url)
end

#basic_auth_tokenObject

Gets Basic Auth token string



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

def basic_auth_token
  'Basic ' + ["#{username}:#{password}"].pack('m').delete("\r\n")
end

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

yield self

Yields:

  • (_self)

Yield Parameters:



123
124
125
# File 'lib/aspose_words_cloud/configuration.rb', line 123

def configure
  yield(self) if block_given?
end