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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 89cc2923597e888adbd3b0ed950546c4aa62e91912cceff1406de414452f2b1c
4
- data.tar.gz: de0949ee1d315d7e8f000320c0b28bfa4dc7b0127fe7fd715a502225e515209d
3
+ metadata.gz: 10b8e6fb86c8c97d29a81597f7cda1c9752d791ca9550c6b190dd06054ebc34b
4
+ data.tar.gz: 2c468628a9fcf6bb132ef7f80418a7a882acb0232ccb4c3774c11f23c3fd27e0
5
5
  SHA512:
6
- metadata.gz: 27485c1d09f1f010d6499e081dd39a86c18241dbc9d2c105795f58c636df36f6e550543397be28f4180dcb52f94883f7fc55bf32e9575989983503d4c30ea121
7
- data.tar.gz: 7199d91f1e2e7421770f2f1f07c692761ed090cec9f84e795ea645348e6647e54dce341ca7f3e66dfed703e8f2049725b7cf57189e952610f191b4d9a18f8294
6
+ metadata.gz: 5469c418cd3b02970808267cb0def075c324c2e17c6982a986c06db04fca2fcd1fa17fccd19b322e1b46d2bc72eec5403542de672a08a64d60225488426da590
7
+ data.tar.gz: dfb359eb34f3e1b7f829e4abd87d452384285343672eb08a2b01b21d4ee2803ace52d56d76478adadd5d60e12e30310b8c9b19afc77babf885a9f3add2337055
@@ -30,7 +30,7 @@ jobs:
30
30
  - name: Install dependencies
31
31
  run: bundle install
32
32
  - name: Run tests
33
- run: bundle exec rake
33
+ run: rspec
34
34
  env:
35
35
  MERCHANT_VPOS_TOKEN: ${{ secrets.MERCHANT_VPOS_TOKEN }}
36
36
  GPO_POS_ID: ${{ secrets.GPO_POS_ID }}
data/.gitignore CHANGED
@@ -23,3 +23,4 @@ test/tmp
23
23
  test/version_tmp
24
24
  tmp
25
25
  example.rb
26
+ .idea
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.3)
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 (10.5.0)
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.1.4)
39
- rake (~> 10.0)
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.1.4
43
+ 2.2.6
data/README.md CHANGED
@@ -1,15 +1,14 @@
1
1
  # vPOS Ruby
2
-
3
- ![Ruby](https://github.com/nextbss/vpos-ruby/workflows/Ruby/badge.svg)
2
+ [![Ruby](https://github.com/v-pos/vpos-ruby/actions/workflows/ruby.yml/badge.svg?branch=main)](https://github.com/v-pos/vpos-ruby/actions/workflows/ruby.yml)
4
3
  [![Gem Version](https://badge.fury.io/rb/vpos.svg)](https://badge.fury.io/rb/vpos)
5
- [![](https://img.shields.io/badge/nextbss-opensource-blue.svg)](https://www.nextbss.co.ao)
4
+ [![](https://img.shields.io/badge/vPOS-OpenSource-blue.svg)](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.1.2'
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 set up the following environment variables on your machine before
38
- interacting with the API using this library:
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
- Don't have this information? [Talk to us](suporte@vpos.ao)
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
- The next section will show the various payment actions that can be performed by you, the merchant.
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
- require 'vpos'
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
- require 'vpos'
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
- require 'vpos'
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", "259,000.00" | `string`
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
- require 'vpos'
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
- require 'vpos'
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
@@ -1,3 +1,3 @@
1
1
  module VposModule
2
- VERSION = "0.1.3"
2
+ VERSION = "1.0.2"
3
3
  end
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: default_pos_id, callback_url: default_payment_callback_url)
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: default_supervisor_card, callback_url: default_refund_callback_url)
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(request)
35
- if request[:location].nil?
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 request[:status] == 202
39
- request[:location].gsub("/api/v1/requests/", "")
38
+ if response[:status_code] == 202
39
+ response[:location].gsub("/api/v1/requests/", "")
40
40
  else
41
- request[:location].gsub("/api/v1/transactions/", "")
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 {status: request.response.code.to_i, message: request.response.message, data: request.parsed_response}
55
+ return {status_code: request.response.code.to_i, message: request.response.message, data: request.parsed_response}
56
56
  when 202, 303
57
- return {status: request.response.code.to_i, message: request.response.message, location: request.headers["location"]}
57
+ return {status_code: request.response.code.to_i, message: request.response.message, location: request.headers["location"]}
58
58
  else
59
- return {status: request.response.code.to_i, message: request.response.message, details: request.parsed_response["errors"]}
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' => set_token, 'Idempotency-Key' => SecureRandom.uuid}
65
+ headers = {'Content-Type' => "application/json", 'Accept' => "application/json", 'Authorization' => @token, 'Idempotency-Key' => SecureRandom.uuid}
66
66
  content[:headers] = headers
67
- return content
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 ENV["VPOS_ENVIRONMENT"] == "PRD"
97
- return "https://api.vpos.ao/api/v1"
71
+ if @environment == "PRD"
72
+ "https://api.vpos.ao/api/v1"
98
73
  else
99
- return "https://sandbox.vpos.ao/api/v1"
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@nextbss.co.ao"]
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/nextbss/vpos-ruby"
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", "~> 2.2.3"
26
- spec.add_development_dependency "rake", "~> 10.0"
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", "~> 3.9.0"
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.1.3
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: 2020-12-31 00:00:00.000000000 Z
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: '10.0'
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: '10.0'
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@nextbss.co.ao
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/nextbss/vpos-ruby
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
- rubygems_version: 3.0.3
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.