Class: Crowdin::Configuration
- Inherits:
-
Object
- Object
- Crowdin::Configuration
- Defined in:
- lib/crowdin-api/client/configuration.rb
Instance Attribute Summary collapse
-
#api_token ⇒ Object
Returns the value of attribute api_token.
-
#enable_logger ⇒ Object
(also: #logger_enabled?)
Returns the value of attribute enable_logger.
-
#organization_domain ⇒ Object
Returns the value of attribute organization_domain.
-
#project_id ⇒ Object
Returns the value of attribute project_id.
-
#target_api_url ⇒ Object
readonly
Returns the value of attribute target_api_url.
Instance Method Summary collapse
- #base_url ⇒ Object
- #headers ⇒ Object
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
- #options ⇒ Object
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
14 15 16 |
# File 'lib/crowdin-api/client/configuration.rb', line 14 def initialize @target_api_url = '/api/v2' end |
Instance Attribute Details
#api_token ⇒ Object
Returns the value of attribute api_token.
5 6 7 |
# File 'lib/crowdin-api/client/configuration.rb', line 5 def api_token @api_token end |
#enable_logger ⇒ Object Also known as: logger_enabled?
Returns the value of attribute enable_logger.
9 10 11 |
# File 'lib/crowdin-api/client/configuration.rb', line 9 def enable_logger @enable_logger end |
#organization_domain ⇒ Object
Returns the value of attribute organization_domain.
7 8 9 |
# File 'lib/crowdin-api/client/configuration.rb', line 7 def organization_domain @organization_domain end |
#project_id ⇒ Object
Returns the value of attribute project_id.
6 7 8 |
# File 'lib/crowdin-api/client/configuration.rb', line 6 def project_id @project_id end |
#target_api_url ⇒ Object (readonly)
Returns the value of attribute target_api_url.
12 13 14 |
# File 'lib/crowdin-api/client/configuration.rb', line 12 def target_api_url @target_api_url end |
Instance Method Details
#base_url ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/crowdin-api/client/configuration.rb', line 35 def base_url @base_url ||= if !!organization_domain if organization_domain.include?('.com') "https://#{organization_domain}" else "https://#{organization_domain}.api.crowdin.com" end else 'https://api.crowdin.com' end end |
#headers ⇒ Object
26 27 28 29 30 31 32 33 |
# File 'lib/crowdin-api/client/configuration.rb', line 26 def headers { 'Accept' => 'application/json', 'Authorization' => "Bearer #{api_token}", 'Content-Type' => 'application/json', 'User-Agent' => "crowdin-rb/#{Crowdin::Client::VERSION}/#{RUBY_VERSION}/#{RUBY_PLATFORM}" } end |
#options ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/crowdin-api/client/configuration.rb', line 18 def { headers: {}, timeout: nil, json: true } end |