vpos 1.0.5 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4750800d8256bc530a0fb7ca21e03346c8e87088a7d808ee49e69904d2c199f3
4
- data.tar.gz: 492e1c3dd74ad007b37104220fc22cdc17e489ce809da07ddfca2f6ff4d2db82
3
+ metadata.gz: e865b5fffb4fe4f2e13e6bb282439885fd0a56274d3c4bc84c7ae45d90ef07e2
4
+ data.tar.gz: d83b8a685d97e8b8141c2cf5d9e43378dbdd0c955691e89ec9a130d036467033
5
5
  SHA512:
6
- metadata.gz: 4af2aaafef72291b47a8523925bde9868e63a16d39aedac137d73d4fd3382cd903af108f0a589a334d6850affc71cc487f58cd6b218aef599b146d87cf14ef2b
7
- data.tar.gz: 68c2abbd7e6e8cf39fa0ebcd462ebe34997362fec74538da9f6aa5c2d9b15079a08fdd95edf24f126f1db16a5196e6483cc8b2c530c458edd2b4682e5c77460c
6
+ metadata.gz: 168cffa759c19a468b376b57c62dafffd2fcd1890fa3df9bdac4f9f8f7725b1f3362cee3f6b8791bdde808df7fc3c0418b658ec19f514be806ae59928617669b
7
+ data.tar.gz: 2a9af917900e0d8342db0e8bc9f5433d005d33d2865308a3eb407c9b943bb5d67c345b5377c9cc7dc27590d9cd6359ef26c5d171578ead1f288f2b39e1a6f0ed
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.5.8
1
+ 3.0.2
data/Gemfile.lock CHANGED
@@ -1,35 +1,33 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vpos (1.0.4)
5
- httparty (~> 0.18.1)
6
- rspec (~> 3.9, >= 3.9.0)
4
+ vpos (2.0.0)
5
+ faraday (~> 2.3)
6
+ rspec (~> 3.11, >= 3.11.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- diff-lcs (1.4.4)
12
- httparty (0.18.1)
13
- mime-types (~> 3.0)
14
- multi_xml (>= 0.5.2)
15
- mime-types (3.3.1)
16
- mime-types-data (~> 3.2015)
17
- mime-types-data (3.2021.0225)
18
- multi_xml (0.6.0)
11
+ diff-lcs (1.5.0)
12
+ faraday (2.3.0)
13
+ faraday-net_http (~> 2.0)
14
+ ruby2_keywords (>= 0.0.4)
15
+ faraday-net_http (2.0.3)
19
16
  rake (12.3.3)
20
- rspec (3.10.0)
21
- rspec-core (~> 3.10.0)
22
- rspec-expectations (~> 3.10.0)
23
- rspec-mocks (~> 3.10.0)
24
- rspec-core (3.10.1)
25
- rspec-support (~> 3.10.0)
26
- rspec-expectations (3.10.1)
17
+ rspec (3.11.0)
18
+ rspec-core (~> 3.11.0)
19
+ rspec-expectations (~> 3.11.0)
20
+ rspec-mocks (~> 3.11.0)
21
+ rspec-core (3.11.0)
22
+ rspec-support (~> 3.11.0)
23
+ rspec-expectations (3.11.0)
27
24
  diff-lcs (>= 1.2.0, < 2.0)
28
- rspec-support (~> 3.10.0)
29
- rspec-mocks (3.10.2)
25
+ rspec-support (~> 3.11.0)
26
+ rspec-mocks (3.11.1)
30
27
  diff-lcs (>= 1.2.0, < 2.0)
31
- rspec-support (~> 3.10.0)
32
- rspec-support (3.10.2)
28
+ rspec-support (~> 3.11.0)
29
+ rspec-support (3.11.0)
30
+ ruby2_keywords (0.0.5)
33
31
 
34
32
  PLATFORMS
35
33
  ruby
data/README.md CHANGED
@@ -23,7 +23,7 @@ See our documentation on [developer.vpos.ao](https://developer.vpos.ao)
23
23
 
24
24
  ## Installation
25
25
  ```ruby
26
- gem 'vpos', '~> 1.0.4'
26
+ gem 'vpos', '~> 2.0.0'
27
27
  ```
28
28
 
29
29
  or
@@ -52,17 +52,16 @@ The next section will show the various actions that can be performed by you, the
52
52
  require 'vpos'
53
53
 
54
54
  # use the default environment variables option
55
- merchant = Vpos.new
55
+ vpos = Vpos.new
56
56
 
57
57
  # or use optional arguments option
58
- merchant = Vpos.new(token: 'your_token_here', environment: 'PRD')
58
+ vpos = Vpos.new(token: 'your_token_here')
59
59
  ```
60
60
 
61
61
  #### Environment variables
62
62
  | Variable | Description | Required |
63
63
  | --- | --- | --- |
64
64
  | `GPO_POS_ID` | The Point of Sale ID provided by EMIS | true |
65
- | `GPO_SUPERVISOR_CARD` | The Supervisor card ID provided by EMIS | true |
66
65
  | `MERCHANT_VPOS_TOKEN` | The API token provided by vPOS | true |
67
66
  | `PAYMENT_CALLBACK_URL` | The URL that will handle payment notifications | false |
68
67
  | `REFUND_CALLBACK_URL` | The URL that will handle refund notifications | false |
@@ -74,57 +73,94 @@ or using one of the optional arguments
74
73
  | --- | --- | --- |
75
74
  | `token` | Token generated at [vPOS](https://merchant.vpos.ao) dashboard | `string`
76
75
  | `pos_id` | Merchant POS ID provided by EMIS | `string`
77
- | `supervisor_card` | Merchant Supervisor Card number provided by EMIS | `string`
78
76
  | `payment_callback_url` | Merchant application JSON endpoint to accept the callback payment response | `string`
79
77
  | `refund_callback_url` | Merchant application JSON endpoint to accept the callback refund response | `string`
80
78
 
81
79
  ### Get a specific Transaction
82
- Retrieves a transaction given a valid transaction ID.
80
+ Retrieves a transaction given a valid transaction ID using a env variable token.
83
81
 
84
82
  ```ruby
85
- transaction = merchant.get_transaction('1jHbXEbRTIbbwaoJ6w06nLcRG7X')
83
+ transaction = merchant.get_transaction(transaction_id: '1jHbXEbRTIbbwaoJ6w06nLcRG7X')
86
84
  ```
87
85
 
88
- | Argument | Description | Type |
86
+ or
87
+
88
+ Using a explicitly stated token
89
+
90
+ ```ruby
91
+ transaction = merchant.get_transaction(transaction_id: '1jHbXEbRTIbbwaoJ6w06nLcRG7X', token: 'EbRTIbb1jHbXEbRTIbbwaoJ6w06nLcRG7X')
92
+ ```
93
+
94
+ | Argument | Description | Type | Required |
89
95
  | --- | --- | --- |
90
- | `id` | An existing Transaction ID | `string`
96
+ | `transaction_id` | An existing Transaction ID | `string` | Yes |
97
+ | `token` | Merchant token generated at vPOS merchant portal | `string` | No (if set as env variable) |
91
98
 
92
99
  ### New Payment Transaction
93
100
  Creates a new payment transaction given a valid mobile number associated with a `MULTICAIXA` account
94
- and a valid amount.
101
+ and a valid amount using a env variable token.
95
102
 
96
103
  ```ruby
97
- payment = merchant.new_payment('900111222', '123.45')
104
+ payment = merchant.new_payment(customer: '900111222', amount: '123.45')
98
105
  ```
99
106
 
100
- | Argument | Description | Type |
107
+ or
108
+
109
+ Using a explicitly stated token
110
+
111
+ ```ruby
112
+ payment = merchant.new_payment(customer: '900111222', amount: '123.45', token: 'EbRTIbb1jHbXEbRTIbbwaoJ6w06nLcRG7X')
113
+ ```
114
+
115
+ | Argument | Description | Type | Required |
101
116
  | --- | --- | --- |
102
- | `mobile` | The mobile number of the client who will pay | `string`
103
- | `amount` | The amount the client should pay, eg. "259.99", "259000.00" | `string`
117
+ | `customer` | The mobile number of the client who will pay | `string` | Yes |
118
+ | `amount` | The amount the client should pay, eg. "259.99", "259000.00" | `string` | Yes |
119
+ | `token` | Merchant token generated at vPOS merchant portal | `string` | No (if set as env variable) |
120
+ | `callback_url` | A valid https url where vPOS is going to callback as soon he finishes to process | `string` | No |
104
121
 
105
122
  ### Request Refund
106
- Given an existing `parent_transaction_id`, request a refund.
123
+ Given an existing `parent_transaction_id`, request a refund using a env variable token.
107
124
 
108
125
  ```ruby
109
- refund = merchant.new_refund('1kTFGhJH8i58uD9MdJpMjWnoE')
126
+ refund = merchant.new_refund(parent_transaction_id: '1kTFGhJH8i58uD9MdJpMjWnoE')
110
127
  ```
111
128
 
112
- | Argument | Description | Type |
129
+ or
130
+
131
+ Using a explicitly stated token
132
+
133
+ ```ruby
134
+ refund = merchant.new_refund(parent_transaction_id: '1kTFGhJH8i58uD9MdJpMjWnoE', token: 'EbRTIbb1jHbXEbRTIbbwaoJ6w06nLcRG7X')
135
+ ```
136
+
137
+ | Argument | Description | Type | Required |
113
138
  | --- | --- | --- |
114
139
  | `parent_transaction_id` | The ID of transaction you wish to refund | `string`
140
+ | `token` | Merchant token generated at vPOS merchant portal | `string` | No (if set as env variable) |
141
+ | `callback_url` | A valid https url where vPOS is going to callback as soon he finishes to process | `string` | No |
115
142
 
116
143
  ### Poll Transaction Status
117
- Poll the status of a transaction given a valid `request_id`.
144
+ Poll the status of a transaction given a valid `request_id` using a env variable token.
118
145
 
119
146
  Note: The `request_id` in this context is essentially the `transaction_id` of an existing request.
120
147
 
121
148
  ```ruby
122
- transaction = merchant.get_request('1jHbXEbRTIbbwaoJ6w06nLcRG7X')
149
+ transaction = merchant.get_request(request_id: '1jHbXEbRTIbbwaoJ6w06nLcRG7X')
123
150
  ```
124
151
 
125
- | Argument | Description | Type |
152
+ or
153
+
154
+ Using a explicitly stated token
155
+
156
+ ```ruby
157
+ transaction = merchant.get_request(request_id: '1jHbXEbRTIbbwaoJ6w06nLcRG7X', token: 'EbRTIbb1jHbXEbRTIbbwaoJ6w06nLcRG7X')
158
+ ```
159
+
160
+ | Argument | Description | Type | Required? |
126
161
  | --- | --- | --- |
127
- | `request_id` | The ID of transaction you wish to poll | `string`
162
+ | `request_id` | The ID of transaction you wish to poll | `string` | Yes |
163
+ | `token` | Merchant token generated at vPOS merchant portal | `string` | No (if set as env variable) |
128
164
 
129
165
  ### Have any doubts?
130
166
  In case of any doubts, bugs, or the like, please leave an issue. We would love to help.
data/bin/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.0.2
data/lib/vpos/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module VposModule
2
- VERSION = "1.0.5"
2
+ VERSION = "2.0.0"
3
3
  end
data/lib/vpos.rb CHANGED
@@ -3,36 +3,38 @@ require_relative "vpos_module"
3
3
  class Vpos
4
4
  include VposModule
5
5
 
6
- def initialize(token: set_token, pos_id: default_pos_id, supervisor_card: default_supervisor_card, payment_callback_url: default_payment_callback_url, refund_callback_url: default_refund_callback_url)
6
+ def initialize(token: set_token, pos_id: default_pos_id, payment_callback_url: default_payment_callback_url, refund_callback_url: default_refund_callback_url)
7
7
  @token = token
8
8
  @pos_id = pos_id
9
- @supervisor_card = supervisor_card
10
9
  @payment_callback_url = payment_callback_url
11
10
  @refund_callback_url = refund_callback_url
12
11
  end
13
12
 
14
13
  private
15
-
16
- def default_pos_id
17
- pos_id = ENV['GPO_POS_ID']
18
- "#{pos_id}".to_i
19
- end
20
-
21
- def default_supervisor_card
22
- supervisor_card = ENV['GPO_SUPERVISOR_CARD']
23
- "#{supervisor_card}"
24
- end
25
-
26
- def set_token
27
- token = ENV['MERCHANT_VPOS_TOKEN']
28
- "Bearer #{token}"
29
- end
30
-
31
- def default_payment_callback_url
32
- ENV['PAYMENT_CALLBACK_URL']
33
- end
34
-
35
- def default_refund_callback_url
36
- ENV['REFUND_CALLBACK_URL']
37
- end
14
+ def default_pos_id
15
+ pos_id = ENV['GPO_POS_ID']
16
+ unless !pos_id.nil?
17
+ return 111
18
+ end
19
+ "#{pos_id}".to_i
20
+ end
21
+
22
+ def set_token
23
+ token = ENV['MERCHANT_VPOS_TOKEN']
24
+ "Bearer #{token}"
25
+ end
26
+
27
+ def default_payment_callback_url
28
+ url = ENV['PAYMENT_CALLBACK_URL']
29
+ unless !url.nil?
30
+ return ""
31
+ end
32
+ end
33
+
34
+ def default_refund_callback_url
35
+ url = ENV['REFUND_CALLBACK_URL']
36
+ unless !url.nil?
37
+ return ""
38
+ end
39
+ end
38
40
  end
data/lib/vpos_module.rb CHANGED
@@ -1,34 +1,49 @@
1
1
  require "vpos/version"
2
- require "httparty"
2
+ require "faraday"
3
+ require "json"
3
4
  require "securerandom"
4
5
 
5
6
  module VposModule
6
7
  class Error < StandardError; end
7
- include HTTParty
8
- follow_redirects false
9
8
 
10
- def new_payment(customer, amount, pos_id: @pos_id, callback_url: @payment_callback_url)
11
- content = set_headers
12
- content[:body] = {type:"payment", pos_id: pos_id, mobile: customer, amount: amount, callback_url: callback_url}.to_json
13
- request = HTTParty.post("#{host}/transactions", content)
14
- return_vpos_object(request)
9
+ def new_payment(
10
+ customer: required,
11
+ amount: required,
12
+ pos_id: @pos_id,
13
+ callback_url: @payment_callback_url,
14
+ token: @token
15
+ )
16
+ conn = connection
17
+ response = conn.post('transactions') do |req|
18
+ req.headers['Authorization'] = token
19
+ req.body = { type: "payment", pos_id: pos_id, mobile: customer, amount: amount, callback_url: callback_url }.to_json
20
+ end
21
+ return_vpos_object(response)
15
22
  end
16
23
 
17
- def new_refund(transaction_id, supervisor_card: @supervisor_card, callback_url: @refund_callback_url)
18
- content = set_headers
19
- content[:body] = {type: "refund", parent_transaction_id: transaction_id, supervisor_card: supervisor_card, callback_url: callback_url}.to_json
20
- request = HTTParty.post("#{host}/transactions", content)
21
- return_vpos_object(request)
24
+ def new_refund(parent_transaction_id: required, token: @token, callback_url: @refund_callback_url)
25
+ conn = connection
26
+ response = conn.post('transactions') do |req|
27
+ req.headers['Authorization'] = token
28
+ req.body = { type: "refund", parent_transaction_id: parent_transaction_id, callback_url: callback_url }.to_json
29
+ end
30
+ return_vpos_object(response)
22
31
  end
23
32
 
24
- def get_transaction(transaction_id)
25
- request = HTTParty.get("#{host}/transactions/#{transaction_id}", set_headers)
26
- return_vpos_object(request)
33
+ def get_transaction(transaction_id: required, token: @token)
34
+ conn = connection
35
+ response = conn.get("transactions/#{transaction_id}") do |req|
36
+ req.headers['Authorization'] = token
37
+ end
38
+ return_vpos_object(response)
27
39
  end
28
40
 
29
41
  def get_request_id(response)
30
42
  if response[:location].nil?
31
- HTTParty.get("#{host}/references/invalid", set_headers)
43
+ conn = connection
44
+ response = conn.get("references/invalid") do |req|
45
+ req.headers['Authorization'] = token
46
+ end
32
47
  else
33
48
  if response[:status_code] == 202
34
49
  response[:location].gsub("/api/v1/requests/", "")
@@ -38,31 +53,55 @@ module VposModule
38
53
  end
39
54
  end
40
55
 
41
- def get_request(request_id)
42
- request = HTTParty.get("#{host}/requests/#{request_id}", set_headers)
43
- return_vpos_object(request)
56
+ def get_request(request_id: required, token: @token)
57
+ conn = connection
58
+ response = conn.get("requests/#{request_id}") do |req|
59
+ req.headers['Authorization'] = token
60
+ end
61
+ return_vpos_object(response)
44
62
  end
45
63
 
46
64
  private
47
- def return_vpos_object(request)
48
- case request.response.code.to_i
49
- when 200, 201
50
- return {status_code: request.response.code.to_i, message: request.response.message, data: request.parsed_response}
65
+ def return_vpos_object(response)
66
+ case response.status
67
+ when 200
68
+ return { status_code: response.status, message: 'OK', data: JSON.parse(response.body).transform_keys(&:to_sym) }
69
+ when 201
70
+ return { status_code: response.status, message: 'CREATED', data: response.body }
51
71
  when 202, 303
52
- return {status_code: request.response.code.to_i, message: request.response.message, location: request.headers["location"]}
72
+ return { status_code: response.status, message: 'ACCEPTED', location: response.headers["location"]}
73
+ when 401
74
+ return { status_code: response.status, message: 'UNAUTHORIZED' }
75
+ when 404
76
+ return { status_code: response.status, message: 'NOT FOUND' }
53
77
  else
54
- return {status_code: request.response.code.to_i, message: request.response.message, details: request.parsed_response["errors"]}
78
+ return { status_code: response.status, message: response.status, details: JSON.parse(response.body).transform_keys(&:to_sym) }
55
79
  end
56
80
  end
57
81
 
58
82
  def set_headers
59
- content = {}
60
- headers = {'Content-Type' => "application/json", 'Accept' => "application/json", 'Authorization' => @token, 'Idempotency-Key' => SecureRandom.uuid}
61
- content[:headers] = headers
62
- content
83
+ headers = {'Content-Type' => "application/json", 'Accept' => "application/json", 'Idempotency-Key' => SecureRandom.uuid}
63
84
  end
64
85
 
65
86
  def host
66
87
  "https://vpos.ao/api/v1"
67
88
  end
89
+
90
+ def params
91
+ params = {}
92
+ end
93
+
94
+ def connection
95
+ conn = Faraday.new(
96
+ url: host,
97
+ params: params,
98
+ headers: set_headers
99
+ )
100
+ end
101
+
102
+ def required
103
+ method = caller_locations(1,1)[0].label
104
+ raise ArgumentError,
105
+ "A required keyword argument was not specified when calling '#{method}'"
106
+ end
68
107
  end
data/vpos.gemspec CHANGED
@@ -22,8 +22,8 @@ Gem::Specification.new do |spec|
22
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
23
  spec.require_paths = ["lib"]
24
24
 
25
- spec.add_development_dependency 'bundler', '~> 2.2', '>= 2.2.3'
25
+ spec.add_development_dependency 'bundler', '~> 2.2', '>= 2.3.14'
26
26
  spec.add_development_dependency 'rake', '~> 12.3', '>= 12.3.3'
27
- spec.add_dependency 'httparty', '~> 0.18.1'
27
+ spec.add_dependency 'faraday', '~> 2.3'
28
28
  spec.add_dependency 'rspec', '~> 3.11', ">= 3.11.0"
29
29
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vpos
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergio Maziano
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-04-04 00:00:00.000000000 Z
11
+ date: 2022-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '2.2'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 2.2.3
22
+ version: 2.3.14
23
23
  type: :development
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '2.2'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 2.2.3
32
+ version: 2.3.14
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: rake
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -51,19 +51,19 @@ dependencies:
51
51
  - !ruby/object:Gem::Version
52
52
  version: 12.3.3
53
53
  - !ruby/object:Gem::Dependency
54
- name: httparty
54
+ name: faraday
55
55
  requirement: !ruby/object:Gem::Requirement
56
56
  requirements:
57
57
  - - "~>"
58
58
  - !ruby/object:Gem::Version
59
- version: 0.18.1
59
+ version: '2.3'
60
60
  type: :runtime
61
61
  prerelease: false
62
62
  version_requirements: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - "~>"
65
65
  - !ruby/object:Gem::Version
66
- version: 0.18.1
66
+ version: '2.3'
67
67
  - !ruby/object:Gem::Dependency
68
68
  name: rspec
69
69
  requirement: !ruby/object:Gem::Requirement
@@ -100,6 +100,7 @@ files:
100
100
  - LICENSE.txt
101
101
  - README.md
102
102
  - Rakefile
103
+ - bin/.ruby-version
103
104
  - bin/console
104
105
  - bin/setup
105
106
  - lib/vpos.rb
@@ -126,8 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
127
  - !ruby/object:Gem::Version
127
128
  version: '0'
128
129
  requirements: []
129
- rubyforge_project:
130
- rubygems_version: 2.7.6.2
130
+ rubygems_version: 3.2.22
131
131
  signing_key:
132
132
  specification_version: 4
133
133
  summary: The one stop shop for online payments in Angola.