gopay-ruby 0.1.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e7ba20408322f371b9de9e36af01afb3e02c7638
4
+ data.tar.gz: 29a80a9197e1125a353a6837428b692d18fe5e0d
5
+ SHA512:
6
+ metadata.gz: 67f6cc99c7be3fc151a43c4976257135f9a0618b0f6fa8ea5e5362f882d978ca69ecdbb8b8484b1966ab2569a9361f45eb0a047d4d43a1a1dc4036c53abfdcc2
7
+ data.tar.gz: dac32604cb0813f31c57ce474a5aa94833d5a1addc3ead785624302a1c0ac6b5f85fc5bcdd3f265404d1279432e6c073be7c6deeeb73bfdd1766f9646909e5c7
data/.coveralls.yaml ADDED
@@ -0,0 +1 @@
1
+ service_name: travis-ci
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ .DS_Store
11
+ *.gem
12
+ *.rbc
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,26 @@
1
+ cache: bundler
2
+
3
+ language: ruby
4
+
5
+ rvm:
6
+ - 2.0.0
7
+ - 2.1
8
+ - 2.2
9
+ - jruby-head
10
+ - rbx-2
11
+ - ruby-head
12
+
13
+ sudo: false
14
+
15
+ bundler_args: --without development --retry=3 --jobs=3
16
+
17
+ env:
18
+ global:
19
+ - JRUBY_OPTS="$JRUBY_OPTS --debug"
20
+
21
+ matrix:
22
+ allow_failures:
23
+ - rvm: jruby-head
24
+ - rvm: rbx-2
25
+ - rvm: ruby-head
26
+ fast_finish: true
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rake'
4
+ gem 'rspec'
5
+ gem 'vcr'
6
+ gem 'webmock'
7
+ gem 'addressable'
8
+ gem "coveralls"
9
+ gem "simplecov"
10
+
11
+ # Specify your gem's dependencies in gopay-ruby.gemspec
12
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 David Hrachovy
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # gopay-ruby
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/gopay-ruby.png)](http://badge.fury.io/rb/gopay-ruby)
4
+ [![Build Status](https://travis-ci.org/PrimeHammer/gopay-ruby.png?branch=master)](https://travis-ci.org/PrimeHammer/gopay-ruby)
5
+ [![Dependency Status](https://gemnasium.com/PrimeHammer/gopay-ruby.png)](https://gemnasium.com/PrimeHammer/gopay-ruby)
6
+ [![Code Climate](https://codeclimate.com/github/PrimeHammer/gopay-ruby.png)](https://codeclimate.com/github/PrimeHammer/gopay-ruby)
7
+ [![Coverage Status](https://coveralls.io/repos/PrimeHammer/gopay-ruby/badge.svg?branch=master&service=github)](https://coveralls.io/github/PrimeHammer/gopay-ruby?branch=master)
8
+
9
+ Unofficial wrapper for GoPay REST API
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ ```ruby
16
+ gem 'gopay-ruby'
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install gopay-ruby
26
+
27
+ ## Usage
28
+
29
+ ### Retrieve a payment
30
+
31
+ ```ruby
32
+ GoPay::Payment.retrieve 35345534
33
+ ```
34
+
35
+ ## Contributing
36
+
37
+ 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.
38
+
39
+
40
+ ## License
41
+
42
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
43
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/gopay.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'gopay/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "gopay-ruby"
8
+ spec.version = GoPay::Version
9
+ spec.authors = ["David Hrachovy & Ondrej Zadnik"]
10
+ spec.email = ["david.hrachovy@gmail.com"]
11
+
12
+ spec.summary = %q{Unofficial wrapper for GoPay REST API}
13
+ spec.description = %q{Unofficial wrapper for GoPay REST API}
14
+ spec.homepage = "https://github.com/PrimeHammer/gopay-ruby"
15
+ spec.required_ruby_version = '>= 2.0'
16
+ spec.license = "MIT"
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+ spec.add_development_dependency "bundler"
22
+ spec.add_dependency 'unirest', '~> 1.1'
23
+ end
data/lib/gopay.rb ADDED
@@ -0,0 +1,61 @@
1
+ require 'gopay/payment'
2
+
3
+ module GoPay
4
+ class << self
5
+ attr_accessor :return_host, :notification_host, :gate, :client_id, :goid, :client_secret
6
+ end
7
+
8
+ def self.configure
9
+ yield self
10
+ end
11
+
12
+ def self.request(method, path, body_parameters: {})
13
+ token = token get_token_scope(method, path)
14
+ content_type = get_content_type(path)
15
+
16
+ body_parameters = content_type == 'application/json' ? body_parameters.to_json : from_hash_to_query(body_parameters)
17
+
18
+ response = Unirest.send(method, GoPay.gate+path, headers: { "Accept" => "application/json", "Content-Type" => content_type, "Authorization" => "Bearer #{token}" }, parameters: body_parameters)
19
+
20
+ unless response.code == 200
21
+ raise GoPay::Error.handle_gopay_error(response)
22
+ end
23
+
24
+ response.body
25
+ end
26
+
27
+ class << self
28
+ private
29
+
30
+ def get_token_scope(method, path)
31
+ if method == :post && path == '/api/payments/payment'
32
+ 'payment-create'
33
+ else
34
+ 'payment-all'
35
+ end
36
+ end
37
+
38
+ def get_content_type(path)
39
+ path == '/api/payments/payment' ? 'application/json' : 'application/x-www-form-urlencoded'
40
+ end
41
+
42
+ # payment-create - for new payment
43
+ # payment-all - for testing state etc
44
+ def token(scope = 'payment-create')
45
+ response = Unirest.post(
46
+ "#{gate}/api/oauth2/token",
47
+ headers: {
48
+ "Accept" => "application/json",
49
+ "Content-Type" => "application/x-www-form-urlencoded",
50
+ "Authorization" => "Basic #{Base64.encode64(client_id + ':' + client_secret)}"
51
+ },
52
+ parameters: "grant_type=client_credentials&scope=#{scope}")
53
+ response.body["access_token"]
54
+ end
55
+
56
+ def from_hash_to_query(hash)
57
+ hash = hash == "{}" ? "{}" : URI.escape(hash.collect { |key,val| "#{CGI.escape(key.to_s)}=#{CGI.escape(val.to_s)}" }.join('&'))
58
+ return hash
59
+ end
60
+ end
61
+ end
@@ -0,0 +1,8 @@
1
+ module GoPay
2
+ class Error < StandardError
3
+
4
+ def self.handle_gopay_error(response)
5
+ new("#{response.code} : #{response.body}")
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,23 @@
1
+ require 'unirest'
2
+ require 'gopay/error'
3
+
4
+ module GoPay
5
+ class Payment
6
+ def self.create(payment_data)
7
+ target = { target: { type: "ACCOUNT", goid: GoPay.goid } }
8
+ GoPay.request :post, "/api/payments/payment", body_parameters: payment_data.merge(target)
9
+ end
10
+
11
+ def self.retrieve(id)
12
+ GoPay.request :get, "/api/payments/payment/#{id}"
13
+ end
14
+
15
+ def self.void_recurrence(id)
16
+ GoPay.request :post, "/api/payments/payment/#{id}/void-recurrence"
17
+ end
18
+
19
+ def self.refund(id, amount)
20
+ GoPay.request :post, "/api/payments/payment/#{id}/refund", body_parameters: { amount: amount }
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,13 @@
1
+ module GoPay
2
+ class Version
3
+ MAJOR = 0
4
+ MINOR = 1
5
+ PATCH = 1
6
+
7
+ class << self
8
+ def to_s
9
+ [MAJOR, MINOR, PATCH].compact.join('.')
10
+ end
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,88 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gopay-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - David Hrachovy & Ondrej Zadnik
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-03-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: unirest
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.1'
41
+ description: Unofficial wrapper for GoPay REST API
42
+ email:
43
+ - david.hrachovy@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".DS_Store"
49
+ - ".coveralls.yaml"
50
+ - ".gitignore"
51
+ - ".rspec"
52
+ - ".travis.yml"
53
+ - Gemfile
54
+ - LICENSE.txt
55
+ - README.md
56
+ - Rakefile
57
+ - gopay.gemspec
58
+ - lib/.DS_Store
59
+ - lib/gopay.rb
60
+ - lib/gopay/.DS_Store
61
+ - lib/gopay/error.rb
62
+ - lib/gopay/payment.rb
63
+ - lib/gopay/version.rb
64
+ homepage: https://github.com/PrimeHammer/gopay-ruby
65
+ licenses:
66
+ - MIT
67
+ metadata: {}
68
+ post_install_message:
69
+ rdoc_options: []
70
+ require_paths:
71
+ - lib
72
+ required_ruby_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '2.0'
77
+ required_rubygems_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ requirements: []
83
+ rubyforge_project:
84
+ rubygems_version: 2.4.8
85
+ signing_key:
86
+ specification_version: 4
87
+ summary: Unofficial wrapper for GoPay REST API
88
+ test_files: []