vpos 0.1.3 → 1.0.2
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 +4 -4
- data/.github/workflows/ruby.yml +1 -1
- data/.gitignore +1 -0
- data/.ruby-version +1 -0
- data/Gemfile.lock +6 -6
- data/README.md +46 -28
- data/lib/vpos.rb +39 -1
- data/lib/vpos/version.rb +1 -1
- data/lib/vpos_module.rb +15 -40
- data/vpos.gemspec +6 -6
- metadata +27 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10b8e6fb86c8c97d29a81597f7cda1c9752d791ca9550c6b190dd06054ebc34b
|
4
|
+
data.tar.gz: 2c468628a9fcf6bb132ef7f80418a7a882acb0232ccb4c3774c11f23c3fd27e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5469c418cd3b02970808267cb0def075c324c2e17c6982a986c06db04fca2fcd1fa17fccd19b322e1b46d2bc72eec5403542de672a08a64d60225488426da590
|
7
|
+
data.tar.gz: dfb359eb34f3e1b7f829e4abd87d452384285343672eb08a2b01b21d4ee2803ace52d56d76478adadd5d60e12e30310b8c9b19afc77babf885a9f3add2337055
|
data/.github/workflows/ruby.yml
CHANGED
data/.gitignore
CHANGED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.5.8
|
data/Gemfile.lock
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
vpos (0.1
|
4
|
+
vpos (1.0.1)
|
5
5
|
httparty (~> 0.18.1)
|
6
|
-
rspec (~> 3.9.0)
|
6
|
+
rspec (~> 3.9, >= 3.9.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
@@ -16,7 +16,7 @@ GEM
|
|
16
16
|
mime-types-data (~> 3.2015)
|
17
17
|
mime-types-data (3.2020.1104)
|
18
18
|
multi_xml (0.6.0)
|
19
|
-
rake (
|
19
|
+
rake (12.3.3)
|
20
20
|
rspec (3.9.0)
|
21
21
|
rspec-core (~> 3.9.0)
|
22
22
|
rspec-expectations (~> 3.9.0)
|
@@ -35,9 +35,9 @@ PLATFORMS
|
|
35
35
|
ruby
|
36
36
|
|
37
37
|
DEPENDENCIES
|
38
|
-
bundler (~> 2.
|
39
|
-
rake (~>
|
38
|
+
bundler (~> 2.2, >= 2.2.3)
|
39
|
+
rake (~> 12.3, >= 12.3.3)
|
40
40
|
vpos!
|
41
41
|
|
42
42
|
BUNDLED WITH
|
43
|
-
2.
|
43
|
+
2.2.6
|
data/README.md
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
# vPOS Ruby
|
2
|
-
|
3
|
-

|
2
|
+
[](https://github.com/v-pos/vpos-ruby/actions/workflows/ruby.yml)
|
4
3
|
[](https://badge.fury.io/rb/vpos)
|
5
|
-
[](https://www.nextbss.co.ao)
|
6
5
|
|
7
6
|
This ruby library helps you easily interact with the vPOS API,
|
8
7
|
Allowing merchants apps/services to request a payment from a client through his/her mobile phone number.
|
9
8
|
|
10
9
|
The service currently works for solutions listed below:
|
11
10
|
|
12
|
-
EMIS (Multicaixa Express)
|
11
|
+
- EMIS GPO (Multicaixa Express)
|
13
12
|
|
14
13
|
Want to know more about how we are empowering merchants in Angola? See our [website](https://vpos.ao)
|
15
14
|
|
@@ -24,7 +23,7 @@ See our documentation on [developer.vpos.ao](https://developer.vpos.ao)
|
|
24
23
|
|
25
24
|
## Installation
|
26
25
|
```ruby
|
27
|
-
gem 'vpos', '~> 0.
|
26
|
+
gem 'vpos', '~> 1.0.0'
|
28
27
|
```
|
29
28
|
|
30
29
|
or
|
@@ -34,9 +33,32 @@ gem install vpos
|
|
34
33
|
```
|
35
34
|
|
36
35
|
### Configuration
|
37
|
-
This ruby library requires you
|
38
|
-
|
36
|
+
This ruby library requires you to have:
|
37
|
+
- POS_ID provided by EMIS that can be requested through your support bank.
|
38
|
+
- Supervisor Card provided by EMIS that can be requested through your support bank.
|
39
|
+
- Token provided by vPOS that can be generated through vPOS [merchant](https://merchant.vpos.ao) portal.
|
40
|
+
|
41
|
+
Don't have this information? [Talk to us](suporte@vpos.ao)
|
42
|
+
|
43
|
+
Given you have all the requirements above, you will now
|
44
|
+
be able to authenticate and communicate effectively with our API using this library.
|
45
|
+
|
46
|
+
The next section will show the various actions that can be performed by you, the merchant.
|
47
|
+
|
48
|
+
## Use
|
49
|
+
### Create Instance
|
50
|
+
|
51
|
+
```ruby
|
52
|
+
require 'vpos'
|
53
|
+
|
54
|
+
# use the default environment variables option
|
55
|
+
merchant = Vpos.new
|
56
|
+
|
57
|
+
# or use optional arguments option
|
58
|
+
merchant = Vpos.new(token: 'your_token_here', environment: 'PRD')
|
59
|
+
```
|
39
60
|
|
61
|
+
#### Environment variables
|
40
62
|
| Variable | Description | Required |
|
41
63
|
| --- | --- | --- |
|
42
64
|
| `GPO_POS_ID` | The Point of Sale ID provided by EMIS | true |
|
@@ -44,30 +66,31 @@ interacting with the API using this library:
|
|
44
66
|
| `MERCHANT_VPOS_TOKEN` | The API token provided by vPOS | true |
|
45
67
|
| `PAYMENT_CALLBACK_URL` | The URL that will handle payment notifications | false |
|
46
68
|
| `REFUND_CALLBACK_URL` | The URL that will handle refund notifications | false |
|
47
|
-
| `VPOS_ENVIRONMENT` | The vPOS environment, leave empty for `sandbox` mode and use `"prd"` for `production`. | false |
|
48
69
|
|
49
|
-
|
50
|
-
|
51
|
-
Given you have set up all the environment variables above with the correct information, you will now
|
52
|
-
be able to authenticate and communicate effectively with our API using this library.
|
70
|
+
or using one of the optional arguments
|
53
71
|
|
54
|
-
|
72
|
+
#### Optional Arguments
|
73
|
+
| Argument | Description | Type |
|
74
|
+
| --- | --- | --- |
|
75
|
+
| `token` | Token generated at [vPOS](https://merchant.vpos.ao) dashboard | `string`
|
76
|
+
| `pos_id` | Merchant POS ID provided by EMIS | `string`
|
77
|
+
| `supervisor_card` | Merchant Supervisor Card number provided by EMIS | `string`
|
78
|
+
| `payment_callback_url` | Merchant application JSON endpoint to accept the callback payment response | `string`
|
79
|
+
| `refund_callback_url` | Merchant application JSON endpoint to accept the callback refund response | `string`
|
80
|
+
| `environment` | The vPOS environment, leave empty for `sandbox` mode and use `"PRD"` for `production`. | `string` |
|
55
81
|
|
56
82
|
### Get all Transactions
|
57
83
|
This endpoint retrieves all transactions.
|
58
84
|
|
59
85
|
```ruby
|
60
|
-
|
61
|
-
transactions = Vpos.get_transactions
|
86
|
+
transaction = merchant.get_transactions
|
62
87
|
```
|
63
88
|
|
64
89
|
### Get a specific Transaction
|
65
90
|
Retrieves a transaction given a valid transaction ID.
|
66
91
|
|
67
|
-
|
68
92
|
```ruby
|
69
|
-
|
70
|
-
transactions = Vpos.get_transaction("1jHbXEbRTIbbwaoJ6w06nLcRG7X")
|
93
|
+
transaction = merchant.get_transaction('1jHbXEbRTIbbwaoJ6w06nLcRG7X')
|
71
94
|
```
|
72
95
|
|
73
96
|
| Argument | Description | Type |
|
@@ -79,22 +102,19 @@ Creates a new payment transaction given a valid mobile number associated with a
|
|
79
102
|
and a valid amount.
|
80
103
|
|
81
104
|
```ruby
|
82
|
-
|
83
|
-
payment = Vpos.new_payment("900111222", "123.45")
|
105
|
+
payment = merchant.new_payment('900111222', '123.45')
|
84
106
|
```
|
85
107
|
|
86
108
|
| Argument | Description | Type |
|
87
109
|
| --- | --- | --- |
|
88
110
|
| `mobile` | The mobile number of the client who will pay | `string`
|
89
|
-
| `amount` | The amount the client should pay, eg. "259.99", "
|
111
|
+
| `amount` | The amount the client should pay, eg. "259.99", "259000.00" | `string`
|
90
112
|
|
91
113
|
### Request Refund
|
92
114
|
Given an existing `parent_transaction_id`, request a refund.
|
93
115
|
|
94
116
|
```ruby
|
95
|
-
|
96
|
-
|
97
|
-
refund = Vpos.new_refund("1kTFGhJH8i58uD9MdJpMjWnoE")
|
117
|
+
refund = merchant.new_refund('1kTFGhJH8i58uD9MdJpMjWnoE')
|
98
118
|
```
|
99
119
|
|
100
120
|
| Argument | Description | Type |
|
@@ -107,19 +127,17 @@ Poll the status of a transaction given a valid `request_id`.
|
|
107
127
|
Note: The `request_id` in this context is essentially the `transaction_id` of an existing request.
|
108
128
|
|
109
129
|
```ruby
|
110
|
-
|
111
|
-
transactions = Vpos.get_request("1jHbXEbRTIbbwaoJ6w06nLcRG7X")
|
130
|
+
transaction = merchant.get_request('1jHbXEbRTIbbwaoJ6w06nLcRG7X')
|
112
131
|
```
|
113
132
|
|
114
133
|
| Argument | Description | Type |
|
115
134
|
| --- | --- | --- |
|
116
135
|
| `request_id` | The ID of transaction you wish to poll | `string`
|
117
136
|
|
118
|
-
|
119
137
|
### Have any doubts?
|
120
138
|
In case of any doubts, bugs, or the like, please leave an issue. We would love to help.
|
121
139
|
|
122
140
|
License
|
123
141
|
----------------
|
124
142
|
|
125
|
-
The library is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
143
|
+
The library is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/lib/vpos.rb
CHANGED
@@ -1,5 +1,43 @@
|
|
1
1
|
require_relative "vpos_module"
|
2
2
|
|
3
|
-
class Vpos
|
3
|
+
class Vpos
|
4
4
|
include VposModule
|
5
|
+
|
6
|
+
def initialize(environment: default_environment, 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)
|
7
|
+
@environment = environment
|
8
|
+
@token = token
|
9
|
+
@pos_id = pos_id
|
10
|
+
@supervisor_card = supervisor_card
|
11
|
+
@payment_callback_url = payment_callback_url
|
12
|
+
@refund_callback_url = refund_callback_url
|
13
|
+
end
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def default_pos_id
|
18
|
+
pos_id = ENV['GPO_POS_ID']
|
19
|
+
"#{pos_id}".to_i
|
20
|
+
end
|
21
|
+
|
22
|
+
def default_supervisor_card
|
23
|
+
supervisor_card = ENV['GPO_SUPERVISOR_CARD']
|
24
|
+
"#{supervisor_card}"
|
25
|
+
end
|
26
|
+
|
27
|
+
def set_token
|
28
|
+
token = ENV['MERCHANT_VPOS_TOKEN']
|
29
|
+
"Bearer #{token}"
|
30
|
+
end
|
31
|
+
|
32
|
+
def default_payment_callback_url
|
33
|
+
ENV['PAYMENT_CALLBACK_URL']
|
34
|
+
end
|
35
|
+
|
36
|
+
def default_refund_callback_url
|
37
|
+
ENV['REFUND_CALLBACK_URL']
|
38
|
+
end
|
39
|
+
|
40
|
+
def default_environment
|
41
|
+
ENV['VPOS_PROFILE']
|
42
|
+
end
|
5
43
|
end
|
data/lib/vpos/version.rb
CHANGED
data/lib/vpos_module.rb
CHANGED
@@ -7,14 +7,14 @@ module VposModule
|
|
7
7
|
include HTTParty
|
8
8
|
follow_redirects false
|
9
9
|
|
10
|
-
def new_payment(customer, amount, pos_id:
|
10
|
+
def new_payment(customer, amount, pos_id: @pos_id, callback_url: @payment_callback_url)
|
11
11
|
content = set_headers
|
12
12
|
content[:body] = {type:"payment", pos_id: pos_id, mobile: customer, amount: amount, callback_url: callback_url}.to_json
|
13
13
|
request = HTTParty.post("#{host}/transactions", content)
|
14
14
|
return_vpos_object(request)
|
15
15
|
end
|
16
16
|
|
17
|
-
def new_refund(transaction_id, supervisor_card:
|
17
|
+
def new_refund(transaction_id, supervisor_card: @supervisor_card, callback_url: @refund_callback_url)
|
18
18
|
content = set_headers
|
19
19
|
content[:body] = {type: "refund", parent_transaction_id: transaction_id, supervisor_card: supervisor_card, callback_url: callback_url}.to_json
|
20
20
|
request = HTTParty.post("#{host}/transactions", content)
|
@@ -31,14 +31,14 @@ module VposModule
|
|
31
31
|
return_vpos_object(request)
|
32
32
|
end
|
33
33
|
|
34
|
-
def get_request_id(
|
35
|
-
if
|
34
|
+
def get_request_id(response)
|
35
|
+
if response[:location].nil?
|
36
36
|
HTTParty.get("#{host}/references/invalid", set_headers)
|
37
37
|
else
|
38
|
-
if
|
39
|
-
|
38
|
+
if response[:status_code] == 202
|
39
|
+
response[:location].gsub("/api/v1/requests/", "")
|
40
40
|
else
|
41
|
-
|
41
|
+
response[:location].gsub("/api/v1/transactions/", "")
|
42
42
|
end
|
43
43
|
end
|
44
44
|
end
|
@@ -52,51 +52,26 @@ module VposModule
|
|
52
52
|
def return_vpos_object(request)
|
53
53
|
case request.response.code.to_i
|
54
54
|
when 200, 201
|
55
|
-
return {
|
55
|
+
return {status_code: request.response.code.to_i, message: request.response.message, data: request.parsed_response}
|
56
56
|
when 202, 303
|
57
|
-
return {
|
57
|
+
return {status_code: request.response.code.to_i, message: request.response.message, location: request.headers["location"]}
|
58
58
|
else
|
59
|
-
return {
|
59
|
+
return {status_code: request.response.code.to_i, message: request.response.message, details: request.parsed_response["errors"]}
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
63
63
|
def set_headers
|
64
64
|
content = {}
|
65
|
-
headers = {'Content-Type' => "application/json", 'Accept' => "application/json", 'Authorization' =>
|
65
|
+
headers = {'Content-Type' => "application/json", 'Accept' => "application/json", 'Authorization' => @token, 'Idempotency-Key' => SecureRandom.uuid}
|
66
66
|
content[:headers] = headers
|
67
|
-
|
68
|
-
end
|
69
|
-
|
70
|
-
def default_pos_id
|
71
|
-
pos_id = ENV["GPO_POS_ID"]
|
72
|
-
return "#{pos_id}".to_i
|
73
|
-
end
|
74
|
-
|
75
|
-
def default_supervisor_card
|
76
|
-
supervisor_card = ENV["GPO_SUPERVISOR_CARD"]
|
77
|
-
return "#{supervisor_card}"
|
78
|
-
end
|
79
|
-
|
80
|
-
def set_token
|
81
|
-
token = ENV["MERCHANT_VPOS_TOKEN"]
|
82
|
-
return "Bearer #{token}"
|
83
|
-
end
|
84
|
-
|
85
|
-
def default_payment_callback_url
|
86
|
-
url = ENV["PAYMENT_CALLBACK_URL"]
|
87
|
-
return url
|
88
|
-
end
|
89
|
-
|
90
|
-
def default_refund_callback_url
|
91
|
-
url = ENV["REFUND_CALLBACK_URL"]
|
92
|
-
return url
|
67
|
+
content
|
93
68
|
end
|
94
69
|
|
95
70
|
def host
|
96
|
-
if
|
97
|
-
|
71
|
+
if @environment == "PRD"
|
72
|
+
"https://api.vpos.ao/api/v1"
|
98
73
|
else
|
99
|
-
|
74
|
+
"https://sandbox.vpos.ao/api/v1"
|
100
75
|
end
|
101
76
|
end
|
102
77
|
end
|
data/vpos.gemspec
CHANGED
@@ -6,11 +6,11 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "vpos"
|
7
7
|
spec.version = VposModule::VERSION
|
8
8
|
spec.authors = ["Sergio Maziano"]
|
9
|
-
spec.email = ["sergio@
|
9
|
+
spec.email = ["sergio.maziano@vpos.ao"]
|
10
10
|
|
11
11
|
spec.summary = %q{The one stop shop for online payments in Angola.}
|
12
12
|
spec.description = %q{The one stop shop for online payments in Angola, allowing you to process payments requests from EMIS GPO through vPOS.}
|
13
|
-
spec.homepage = "https://github.com/
|
13
|
+
spec.homepage = "https://github.com/v-pos/vpos-ruby"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
# Specify which files should be added to the gem when it is released.
|
@@ -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",
|
26
|
-
spec.add_development_dependency
|
25
|
+
spec.add_development_dependency "bundler", '~> 2.2', '>= 2.2.3'
|
26
|
+
spec.add_development_dependency 'rake', '~> 12.3', '>= 12.3.3'
|
27
27
|
spec.add_dependency "httparty", "~> 0.18.1"
|
28
|
-
spec.add_dependency "rspec",
|
29
|
-
end
|
28
|
+
spec.add_dependency "rspec", '~> 3.9', ">= 3.9.0"
|
29
|
+
end
|
metadata
CHANGED
@@ -1,20 +1,23 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vpos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sergio Maziano
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.2'
|
20
|
+
- - ">="
|
18
21
|
- !ruby/object:Gem::Version
|
19
22
|
version: 2.2.3
|
20
23
|
type: :development
|
@@ -22,6 +25,9 @@ dependencies:
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
27
|
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '2.2'
|
30
|
+
- - ">="
|
25
31
|
- !ruby/object:Gem::Version
|
26
32
|
version: 2.2.3
|
27
33
|
- !ruby/object:Gem::Dependency
|
@@ -30,14 +36,20 @@ dependencies:
|
|
30
36
|
requirements:
|
31
37
|
- - "~>"
|
32
38
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
39
|
+
version: '12.3'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 12.3.3
|
34
43
|
type: :development
|
35
44
|
prerelease: false
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
37
46
|
requirements:
|
38
47
|
- - "~>"
|
39
48
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
49
|
+
version: '12.3'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 12.3.3
|
41
53
|
- !ruby/object:Gem::Dependency
|
42
54
|
name: httparty
|
43
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -57,6 +69,9 @@ dependencies:
|
|
57
69
|
requirement: !ruby/object:Gem::Requirement
|
58
70
|
requirements:
|
59
71
|
- - "~>"
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '3.9'
|
74
|
+
- - ">="
|
60
75
|
- !ruby/object:Gem::Version
|
61
76
|
version: 3.9.0
|
62
77
|
type: :runtime
|
@@ -64,18 +79,22 @@ dependencies:
|
|
64
79
|
version_requirements: !ruby/object:Gem::Requirement
|
65
80
|
requirements:
|
66
81
|
- - "~>"
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '3.9'
|
84
|
+
- - ">="
|
67
85
|
- !ruby/object:Gem::Version
|
68
86
|
version: 3.9.0
|
69
87
|
description: The one stop shop for online payments in Angola, allowing you to process
|
70
88
|
payments requests from EMIS GPO through vPOS.
|
71
89
|
email:
|
72
|
-
- sergio@
|
90
|
+
- sergio.maziano@vpos.ao
|
73
91
|
executables: []
|
74
92
|
extensions: []
|
75
93
|
extra_rdoc_files: []
|
76
94
|
files:
|
77
95
|
- ".github/workflows/ruby.yml"
|
78
96
|
- ".gitignore"
|
97
|
+
- ".ruby-version"
|
79
98
|
- Gemfile
|
80
99
|
- Gemfile.lock
|
81
100
|
- LICENSE.txt
|
@@ -88,7 +107,7 @@ files:
|
|
88
107
|
- lib/vpos_module.rb
|
89
108
|
- tags
|
90
109
|
- vpos.gemspec
|
91
|
-
homepage: https://github.com/
|
110
|
+
homepage: https://github.com/v-pos/vpos-ruby
|
92
111
|
licenses:
|
93
112
|
- MIT
|
94
113
|
metadata: {}
|
@@ -107,7 +126,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
126
|
- !ruby/object:Gem::Version
|
108
127
|
version: '0'
|
109
128
|
requirements: []
|
110
|
-
|
129
|
+
rubyforge_project:
|
130
|
+
rubygems_version: 2.7.6.2
|
111
131
|
signing_key:
|
112
132
|
specification_version: 4
|
113
133
|
summary: The one stop shop for online payments in Angola.
|