Class: Braspag::Connection

Inherits:
Object
  • Object
show all
Defined in:
lib/rbraspag/connection.rb

Defined Under Namespace

Classes: InvalidMerchantId

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(merchant_id, environment = :production) ⇒ Connection

Returns a new instance of Connection.

Raises:



7
8
9
10
11
12
13
14
15
# File 'lib/rbraspag/connection.rb', line 7

def initialize(merchant_id, environment = :production)
  raise InvalidMerchantId unless merchant_id.length == 38
  raise InvalidMerchantId unless merchant_id.match /\{[a-z0-9]{8}-([a-z0-9]{4}-){3}[a-z0-9]{12}\}/i

  environment = :test unless environment.eql? :production
  @environment = eval(environment.to_s.capitalize)
  @base_url = @environment::BASE_URL
  @merchant_id = merchant_id
end

Instance Attribute Details

#base_urlObject (readonly)

Returns the value of attribute base_url.



5
6
7
# File 'lib/rbraspag/connection.rb', line 5

def base_url
  @base_url
end

#environmentObject (readonly)

Returns the value of attribute environment.



5
6
7
# File 'lib/rbraspag/connection.rb', line 5

def environment
  @environment
end

#merchant_idObject (readonly)

Returns the value of attribute merchant_id.



5
6
7
# File 'lib/rbraspag/connection.rb', line 5

def merchant_id
  @merchant_id
end