cubepay 1.0.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 +7 -0
- data/.gitignore +8 -0
- data/.idea/cubepay-ruby.iml +13 -0
- data/.idea/inspectionProfiles/Project_Default.xml +6 -0
- data/.idea/misc.xml +7 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +586 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/cubepay.gemspec +38 -0
- data/example/_config.rb +9 -0
- data/example/do_payment.rb +32 -0
- data/example/do_payment_by_coin_id.rb +35 -0
- data/example/get_coin_list.rb +6 -0
- data/example/get_fiat_list.rb +6 -0
- data/example/query_payment.rb +11 -0
- data/lib/cubepay.rb +1 -0
- data/lib/cubepay/client.rb +113 -0
- data/lib/cubepay/http_request.rb +26 -0
- data/lib/cubepay/signature.rb +41 -0
- data/lib/cubepay/version.rb +3 -0
- metadata +114 -0
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at a8765432. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 iamthirteeen@gmail.com
|
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
|
+
# Cubepay
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/cubepay/ruby`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'cubepay-ruby'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install cubepay-ruby
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/cubepay-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.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the Cubepay::Ruby project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/cubepay-ruby/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "cubepay"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/cubepay.gemspec
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "cubepay/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "cubepay"
|
8
|
+
spec.version = Cubepay::VERSION
|
9
|
+
spec.authors = ["CubepayIO"]
|
10
|
+
spec.email = ["service@cubepay.io"]
|
11
|
+
|
12
|
+
spec.summary = %q{CubePay API library for Ruby, a third-party cryptocurrency payment gateway.}
|
13
|
+
spec.description = %q{A third-party cryptocurrency payment gateway. Make it easy for receiving cryptocurrency! More information at https://cubepay.io.}
|
14
|
+
spec.homepage = "https://cubepay.io"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
# if spec.respond_to?(:metadata)
|
20
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
21
|
+
# else
|
22
|
+
# raise "RubyGems 2.0 or newer is required to protect against " \
|
23
|
+
# "public gem pushes."
|
24
|
+
# end
|
25
|
+
|
26
|
+
# Specify which files should be added to the gem when it is released.
|
27
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
28
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
29
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
30
|
+
end
|
31
|
+
spec.bindir = "exe"
|
32
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
33
|
+
spec.require_paths = ["lib"]
|
34
|
+
|
35
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
36
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
37
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
38
|
+
end
|
data/example/_config.rb
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
require '../lib/cubepay'
|
2
|
+
|
3
|
+
# GET CLIENT_ID, CLIENT_SECRET on http://cubepay.io
|
4
|
+
CLIENT_ID = '3874216a29c69352f3d5576c4ece090c'
|
5
|
+
CLIENT_SECRET = '6RGgjhRCadwqtj4PeqKkuf8PucPKKJKKRsLtDgNx'
|
6
|
+
|
7
|
+
# Live mode : https://api.cubepay.io
|
8
|
+
# Sandbox mode : https://api.sandbox.cubepay.io
|
9
|
+
URL = 'https://api.cubepay.io'
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require './_config'
|
2
|
+
require 'securerandom'
|
3
|
+
|
4
|
+
client = Cubepay::Client.new(CLIENT_ID, CLIENT_SECRET, URL);
|
5
|
+
|
6
|
+
# Coin id of your original list price (447 means USD).
|
7
|
+
source_coin_id = 447
|
8
|
+
# Original list price of your product price (100 USD).
|
9
|
+
source_amount = 100
|
10
|
+
# The customize name of your item.
|
11
|
+
item_name = "Test Item Name"
|
12
|
+
# Transaction ID generated by your shop (Recommend be unique).
|
13
|
+
merchant_transaction_id = SecureRandom.uuid
|
14
|
+
# Other information you can pass to the payment, such as your member id, your product id or anything you want,
|
15
|
+
# We'll return the field for your at IPN_URL.
|
16
|
+
other = "member_account=peter||product_id=product_test"
|
17
|
+
# The url you want your customer back to. it will show a link button on the coin pay page.
|
18
|
+
return_url = ""
|
19
|
+
# When the payment finish(success), we'll sending transaction information as your request parameter by POST method.
|
20
|
+
ipn_url = ""
|
21
|
+
# Coin id you want to send back to your customer, we'll send this coin to receive_address you define.
|
22
|
+
# If you pass value on send_coin_id, you should pass value on receive_address and send_amount too.
|
23
|
+
send_coin_id = nil
|
24
|
+
# Coin amount you want to send back to your customer.
|
25
|
+
# Must be positive number and large then zero, and make sure you have enough amount of the send coin.
|
26
|
+
send_amount = ""
|
27
|
+
# Coin address you want to send back to your customer.
|
28
|
+
receive_address = ""
|
29
|
+
|
30
|
+
result = client.do_payment(source_coin_id, source_amount, item_name, merchant_transaction_id, other,
|
31
|
+
return_url, ipn_url, send_coin_id, send_amount, receive_address)
|
32
|
+
print result
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require './_config'
|
2
|
+
require 'securerandom'
|
3
|
+
|
4
|
+
client = Cubepay::Client.new(CLIENT_ID, CLIENT_SECRET, URL);
|
5
|
+
|
6
|
+
# Coin id of your original list price (447 means USD).
|
7
|
+
source_coin_id = 447
|
8
|
+
# Original list price of your product price (100 USD).
|
9
|
+
source_amount = 100
|
10
|
+
# The customize name of your item.
|
11
|
+
item_name = "Test Item Name"
|
12
|
+
# Transaction ID generated by your shop (Recommend be unique).
|
13
|
+
merchant_transaction_id = SecureRandom.uuid
|
14
|
+
# Other information you can pass to the payment, such as your member id, your product id or anything you want,
|
15
|
+
# We'll return the field for your at IPN_URL.
|
16
|
+
other = "member_account=peter||product_id=product_test"
|
17
|
+
# The url you want your customer back to. it will show a link button on the coin pay page.
|
18
|
+
return_url = ""
|
19
|
+
# When the payment finish(success), we'll sending transaction information as your request parameter by POST method.
|
20
|
+
ipn_url = ""
|
21
|
+
# Coin id you want to send back to your customer, we'll send this coin to receive_address you define.
|
22
|
+
# If you pass value on send_coin_id, you should pass value on receive_address and send_amount too.
|
23
|
+
send_coin_id = ""
|
24
|
+
# Coin amount you want to send back to your customer.
|
25
|
+
# Must be positive number and large then zero, and make sure you have enough amount of the send coin.
|
26
|
+
send_amount = ""
|
27
|
+
# Coin address you want to send back to your customer.
|
28
|
+
receive_address = ""
|
29
|
+
|
30
|
+
# Coin id you want receive. (1 means ETH).
|
31
|
+
coin_id = 1
|
32
|
+
|
33
|
+
result = client.do_payment_by_coin_id(coin_id, source_coin_id, source_amount, item_name, merchant_transaction_id, other,
|
34
|
+
return_url, ipn_url, send_coin_id, send_amount, receive_address)
|
35
|
+
print result
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require './_config'
|
2
|
+
|
3
|
+
client = Cubepay::Client.new(CLIENT_ID, CLIENT_SECRET, URL);
|
4
|
+
|
5
|
+
# CubePay payment ID
|
6
|
+
cubepay_transaction_id = "C1538368710528143362"
|
7
|
+
# Transaction ID generated by your shop.If your transaction is not unique, it'll return the last one record.
|
8
|
+
merchant_transaction_id = ""
|
9
|
+
|
10
|
+
result = client.query_payment(cubepay_transaction_id, merchant_transaction_id)
|
11
|
+
print result
|
data/lib/cubepay.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require_relative 'cubepay/client'
|
@@ -0,0 +1,113 @@
|
|
1
|
+
require_relative 'http_request'
|
2
|
+
require_relative 'signature'
|
3
|
+
|
4
|
+
module Cubepay
|
5
|
+
class Client
|
6
|
+
attr_accessor(
|
7
|
+
:client_id,
|
8
|
+
:client_secret,
|
9
|
+
:url
|
10
|
+
)
|
11
|
+
attr_reader(
|
12
|
+
:http_request,
|
13
|
+
:signature
|
14
|
+
)
|
15
|
+
|
16
|
+
def initialize(client_id, client_secret, url)
|
17
|
+
@http_request = HttpRequest.new(url)
|
18
|
+
@signature = Signature.new(client_id, client_secret)
|
19
|
+
end
|
20
|
+
|
21
|
+
# Get list of available cryptocurrencies.
|
22
|
+
# You can use these currencies at payment API for receive/send coin.
|
23
|
+
def get_coin
|
24
|
+
method = "/currency/coin"
|
25
|
+
params = {}
|
26
|
+
|
27
|
+
sign_params = self.signature.get_params_with_signature(params)
|
28
|
+
response = self.http_request.get_response(method, sign_params)
|
29
|
+
|
30
|
+
return response
|
31
|
+
end
|
32
|
+
|
33
|
+
# Get list of available fiat currenies.
|
34
|
+
# You can only use these fiat currencies for your product's original list price, not for receive/send,
|
35
|
+
# we'll convert value by exchange rate between currency of list price and currency of actual paid.
|
36
|
+
def get_fiat
|
37
|
+
method = "/currency/fiat"
|
38
|
+
params = {}
|
39
|
+
|
40
|
+
sign_params = self.signature.get_params_with_signature(params)
|
41
|
+
response = self.http_request.get_response(method, sign_params)
|
42
|
+
|
43
|
+
return response
|
44
|
+
end
|
45
|
+
|
46
|
+
# Render a page(but not initial a payment yet) within these information:
|
47
|
+
# - Your shop information
|
48
|
+
# - Item name
|
49
|
+
# - Payable coin list and corresponding price.
|
50
|
+
def do_payment(source_coin_id, source_amount, item_name, merchant_transaction_id, other = "", return_url = "",
|
51
|
+
ipn_url = "", send_coin_id = "", send_amount = "", receive_address = "")
|
52
|
+
method = "/payment"
|
53
|
+
params = {
|
54
|
+
"source_coin_id" => source_coin_id,
|
55
|
+
"source_amount" => source_amount,
|
56
|
+
"item_name" => item_name,
|
57
|
+
"merchant_transaction_id" => merchant_transaction_id,
|
58
|
+
"other" => other,
|
59
|
+
"return_url" => return_url,
|
60
|
+
"ipn_url" => ipn_url,
|
61
|
+
"send_coin_id" => send_coin_id,
|
62
|
+
"send_amount" => send_amount,
|
63
|
+
"receive_address" => receive_address,
|
64
|
+
}
|
65
|
+
|
66
|
+
sign_params = self.signature.get_params_with_signature(params)
|
67
|
+
response = self.http_request.get_response(method, sign_params)
|
68
|
+
|
69
|
+
return response
|
70
|
+
end
|
71
|
+
|
72
|
+
# Initial order with specific coin. Order will expire after 6 hours.
|
73
|
+
# If you define the parameter send_coin_id, receive_address, send_amount to send back coin to your customer,
|
74
|
+
# we'll lock the amount of send coin and fee temporarily and unlock until payment finish or expired.
|
75
|
+
def do_payment_by_coin_id(coin_id, source_coin_id, source_amount, item_name, merchant_transaction_id, other = "", return_url = "",
|
76
|
+
ipn_url = "", send_coin_id = "", send_amount = "", receive_address = "")
|
77
|
+
method = "/payment/coin"
|
78
|
+
params = {
|
79
|
+
"coin_id" => coin_id,
|
80
|
+
"source_coin_id" => source_coin_id,
|
81
|
+
"source_amount" => source_amount,
|
82
|
+
"item_name" => item_name,
|
83
|
+
"merchant_transaction_id" => merchant_transaction_id,
|
84
|
+
"other" => other,
|
85
|
+
"return_url" => return_url,
|
86
|
+
"ipn_url" => ipn_url,
|
87
|
+
"send_coin_id" => send_coin_id,
|
88
|
+
"send_amount" => send_amount,
|
89
|
+
"receive_address" => receive_address,
|
90
|
+
}
|
91
|
+
|
92
|
+
sign_params = self.signature.get_params_with_signature(params)
|
93
|
+
response = self.http_request.get_response(method, sign_params)
|
94
|
+
|
95
|
+
return response
|
96
|
+
end
|
97
|
+
|
98
|
+
# Query payment information by specific identity.
|
99
|
+
def query_payment(cubepay_transaction_id = "", merchant_transaction_id = "")
|
100
|
+
method = "/payment/query"
|
101
|
+
params = {
|
102
|
+
"id" => cubepay_transaction_id,
|
103
|
+
"merchant_transaction_id" => merchant_transaction_id,
|
104
|
+
}
|
105
|
+
|
106
|
+
sign_params = self.signature.get_params_with_signature(params)
|
107
|
+
response = self.http_request.get_response(method, sign_params)
|
108
|
+
|
109
|
+
return response
|
110
|
+
end
|
111
|
+
|
112
|
+
end
|
113
|
+
end
|