gopay-ruby 0.1.1 → 0.2.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 +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +0 -1
- data/README.md +112 -6
- data/lib/gopay/payment.rb +5 -0
- data/lib/gopay/version.rb +2 -2
- data/lib/gopay.rb +5 -1
- metadata +3 -6
- data/.DS_Store +0 -0
- data/lib/.DS_Store +0 -0
- data/lib/gopay/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29758303f4240c5454eda97ba81cd6dd21e256fc
|
4
|
+
data.tar.gz: 0528b98ea9cb686ce4de2b9da133e0e8cef91560
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 007ed3780d3cfc8a375a49e548c661e1e3351d4f135b0564120ae64a224b12d4f43fc8fef2be3af4989ffde7bf7990c360cc63743eb5f43489928b9a1ba83036
|
7
|
+
data.tar.gz: dd7379e99b17452b379da4412ba1bcd7647c0f9180650f82308fb92b1b35ade09b465f66e1d18bf9ec0a17235dd2bd5a4e70f946a1a73dcc4368d9600042247e
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -2,18 +2,20 @@
|
|
2
2
|
|
3
3
|
[](http://badge.fury.io/rb/gopay-ruby)
|
4
4
|
[](https://travis-ci.org/PrimeHammer/gopay-ruby)
|
5
|
-
[](https://gemnasium.com/PrimeHammer/gopay-ruby)
|
6
5
|
[](https://codeclimate.com/github/PrimeHammer/gopay-ruby)
|
7
|
-
[](https://coveralls.io/github/PrimeHammer/gopay-ruby?branch=master)
|
8
6
|
|
9
|
-
|
7
|
+
The GoPay Ruby allows Ruby applications to access to the GoPay REST API.
|
8
|
+
|
9
|
+
## Benefits
|
10
|
+
It does OAuth authorization under the hood automatically. Easy configuration through initializer.
|
10
11
|
|
11
12
|
## Installation
|
12
13
|
|
13
14
|
Add this line to your application's Gemfile:
|
14
15
|
|
15
16
|
```ruby
|
16
|
-
gem 'gopay-ruby'
|
17
|
+
gem 'gopay-ruby', require: 'gopay'
|
18
|
+
|
17
19
|
```
|
18
20
|
|
19
21
|
And then execute:
|
@@ -24,14 +26,118 @@ Or install it yourself as:
|
|
24
26
|
|
25
27
|
$ gem install gopay-ruby
|
26
28
|
|
29
|
+
## Configure
|
30
|
+
The Gem is framework agnostic. However, if you use Rails, put the initializer in Rails config dir:
|
31
|
+
```ruby
|
32
|
+
config/initializers/gopay.rb
|
33
|
+
```
|
34
|
+
|
35
|
+
```ruby
|
36
|
+
GoPay.configure do |config|
|
37
|
+
config.goid = GOPAY_ID
|
38
|
+
config.client_id = GOPAY_CLIENT_ID
|
39
|
+
config.client_secret = GOPAY_SECRET
|
40
|
+
config.return_host = RETURN_HOST_URL
|
41
|
+
config.notification_host = NOTIFICATION_HOST_URL
|
42
|
+
config.gate = GATE_URL
|
43
|
+
end
|
44
|
+
```
|
45
|
+
|
27
46
|
## Usage
|
28
47
|
|
29
|
-
###
|
48
|
+
### Create a Payment
|
49
|
+
Before charging a user, we need to create a new payment. This will return a hash including a URL which you can use to popup payment modal or redirect the user to the GoPay payment page.
|
50
|
+
|
51
|
+
```ruby
|
52
|
+
GoPay::Payment.create payment_data
|
53
|
+
```
|
54
|
+
|
55
|
+
### payment_data example
|
56
|
+
|
57
|
+
```ruby
|
58
|
+
{
|
59
|
+
"payer":{"allowed_payment_instruments": ["BANK_ACCOUNT"],
|
60
|
+
"contact":{"first_name": "John",
|
61
|
+
"last_name": "Doe",
|
62
|
+
"email": "john.doe@example.com"
|
63
|
+
}
|
64
|
+
},
|
65
|
+
"target":{"type": "ACCOUNT",
|
66
|
+
"goid": "8123456789"
|
67
|
+
},
|
68
|
+
"amount":"1000",
|
69
|
+
"currency":"CZK",
|
70
|
+
"order_number":"001",
|
71
|
+
"order_description":"description001",
|
72
|
+
"callback":{"return_url":"url.for.return",
|
73
|
+
"notification_url":"url.for.notification"
|
74
|
+
},
|
75
|
+
"lang":"en"
|
76
|
+
}
|
77
|
+
```
|
78
|
+
|
79
|
+
### Create a Payment response example
|
80
|
+
This is a basic example of response hash, for more complex examples visit [GoPay API docs](https://doc.gopay.com).
|
81
|
+
```ruby
|
82
|
+
{
|
83
|
+
"id":3000006529,
|
84
|
+
"order_number":"001",
|
85
|
+
"state":"CREATED",
|
86
|
+
"amount":1000,"currency":"CZK",
|
87
|
+
"payer":{"allowed_payment_instruments":["BANK_ACCOUNT"],
|
88
|
+
"contact": {"first_name":"John",
|
89
|
+
"last_name":"Doe",
|
90
|
+
"email":"john.doe@example.com",
|
91
|
+
}
|
92
|
+
},
|
93
|
+
"target":{"type":"ACCOUNT",
|
94
|
+
"goid":8123456789
|
95
|
+
},
|
96
|
+
"additional_params":[{"name":"invoicenumber",
|
97
|
+
"value":"2015001003"
|
98
|
+
}],
|
99
|
+
"lang":"en",
|
100
|
+
"gw_url":" https://gw.sandbox.gopay.com/gw/v3/bCcvmwTKK5hrJx2aGG8ZnFyBJhAvF"
|
101
|
+
}
|
102
|
+
```
|
103
|
+
|
104
|
+
### Retrieve the Payment
|
105
|
+
If you want to return a payment object from GoPay REST API.
|
106
|
+
|
107
|
+
```ruby
|
108
|
+
GoPay::Payment.retrieve gopay_id
|
109
|
+
```
|
110
|
+
|
111
|
+
### Refund of the payment
|
112
|
+
This functionality allows you to refund payment paid by a customer.
|
113
|
+
You can use the refund in two ways. First option is a full refund payment and the other one is a partial refund. Both based on `amount` parameter.
|
114
|
+
|
115
|
+
```ruby
|
116
|
+
GoPay::Payment.refund gopay_id, amount
|
117
|
+
```
|
118
|
+
|
119
|
+
### Cancellation of the recurring payment
|
120
|
+
The functionality allows you to cancel recurrence of a previously created recurring payment.
|
121
|
+
|
122
|
+
```ruby
|
123
|
+
GoPay::Payment.void_recurrence gopay_id
|
124
|
+
```
|
125
|
+
|
126
|
+
## Dealing with errors
|
127
|
+
Errors are raised as GoPay::Error. The error contains error code error body returned by GoPay API.
|
128
|
+
You can easily catch errors in your models as shown below.
|
30
129
|
|
31
130
|
```ruby
|
32
|
-
|
131
|
+
begin
|
132
|
+
response = GoPay::Payment.refund(gopay_id, gopay_amount)
|
133
|
+
rescue GoPay::Error => exception
|
134
|
+
log_gopay_error exception
|
135
|
+
end
|
33
136
|
```
|
34
137
|
|
138
|
+
## Documentation
|
139
|
+
Parameters for all GoPay methods follow the official documentation. For further explanation please visit [GoPay API docs](https://doc.gopay.com).
|
140
|
+
|
35
141
|
## Contributing
|
36
142
|
|
37
143
|
Bug reports and pull requests are welcome on GitHub at https://github.com/PrimeHammer/gopay-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
data/lib/gopay/payment.rb
CHANGED
@@ -19,5 +19,10 @@ module GoPay
|
|
19
19
|
def self.refund(id, amount)
|
20
20
|
GoPay.request :post, "/api/payments/payment/#{id}/refund", body_parameters: { amount: amount }
|
21
21
|
end
|
22
|
+
|
23
|
+
def self.create_recurrence(original_payment_id, recurring_payment_data)
|
24
|
+
GoPay.request :post, "/api/payments/payment/#{original_payment_id}/create-recurrence", body_parameters: recurring_payment_data
|
25
|
+
end
|
26
|
+
|
22
27
|
end
|
23
28
|
end
|
data/lib/gopay/version.rb
CHANGED
data/lib/gopay.rb
CHANGED
@@ -36,7 +36,11 @@ module GoPay
|
|
36
36
|
end
|
37
37
|
|
38
38
|
def get_content_type(path)
|
39
|
-
path == '/api/payments/payment'
|
39
|
+
if (path == '/api/payments/payment') || (path =~ /create-recurrence/)
|
40
|
+
'application/json'
|
41
|
+
else
|
42
|
+
'application/x-www-form-urlencoded'
|
43
|
+
end
|
40
44
|
end
|
41
45
|
|
42
46
|
# payment-create - for new payment
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gopay-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Hrachovy & Ondrej Zadnik
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -45,7 +45,6 @@ executables: []
|
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
-
- ".DS_Store"
|
49
48
|
- ".coveralls.yaml"
|
50
49
|
- ".gitignore"
|
51
50
|
- ".rspec"
|
@@ -55,9 +54,7 @@ files:
|
|
55
54
|
- README.md
|
56
55
|
- Rakefile
|
57
56
|
- gopay.gemspec
|
58
|
-
- lib/.DS_Store
|
59
57
|
- lib/gopay.rb
|
60
|
-
- lib/gopay/.DS_Store
|
61
58
|
- lib/gopay/error.rb
|
62
59
|
- lib/gopay/payment.rb
|
63
60
|
- lib/gopay/version.rb
|
@@ -81,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
78
|
version: '0'
|
82
79
|
requirements: []
|
83
80
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
81
|
+
rubygems_version: 2.5.1
|
85
82
|
signing_key:
|
86
83
|
specification_version: 4
|
87
84
|
summary: Unofficial wrapper for GoPay REST API
|
data/.DS_Store
DELETED
Binary file
|
data/lib/.DS_Store
DELETED
Binary file
|
data/lib/gopay/.DS_Store
DELETED
Binary file
|