wcx 0.0.5 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c06011ebb6ad8dd69460531ff86b8b33531a6ad8
4
- data.tar.gz: 98be76ab0528fdd192fee9c80f885d168152d529
3
+ metadata.gz: c49b2c5e64fa3a018d035594fa7a977161377b9f
4
+ data.tar.gz: f15354f82c30487f473c8fb6bf7e96fd92c558c7
5
5
  SHA512:
6
- metadata.gz: 8794425d9e65bba146e11572d06176df696b8976568689fa1dd0eda833a936285dc1251700d2eac4621b628d4900fc44144aa20e392981a9b525b25889992bda
7
- data.tar.gz: 4377c673f7d0863a46625c69d747f5f7b335c79e81484c49840a62a655899413a943034782eb02726a81355c7a6c55adb67bb4de21c330d7a41f38a7c74c7959
6
+ metadata.gz: d467bf157379815563368d9805872dce7350376a8e00e43f3dd801e5e6a03467cf3c3db894e34ffe87365c67ace363d2be420b09a4c1da8b74cf781d39c48f3f
7
+ data.tar.gz: c4fe48f2a9afbaaf4e52b74969ce6e4c2b4d5a049da1b09ceee359094278203b3c382972927757bb82333927e2e2520ffdc853d9c0344b4d64c96f76809e1850
@@ -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
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.15.4
@@ -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 TODO: Write your email address. 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
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+ source "https://rubygems.org"
3
+
4
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
5
+
6
+ # gem "rails"
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 TODO: Write your name
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.
@@ -0,0 +1,43 @@
1
+ # Wcx
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/wcx`. 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 'wcx'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install wcx
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 spec` 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]/wcx. 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](http://opensource.org/licenses/MIT).
40
+
41
+ ## Code of Conduct
42
+
43
+ Everyone interacting in the Wcx project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/wcx/blob/master/CODE_OF_CONDUCT.md).
@@ -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
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "wcx"
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__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,96 @@
1
+ require "wcx/version"
2
+ require 'httpclient'
3
+ require 'json'
4
+ require 'connection_pool'
5
+ require 'base64'
6
+
7
+ module Wcx
8
+ @api_key = nil
9
+ @base_url = "http://localhost/wcx_bitbucket/api/VERSION/API_CALL?api_key="
10
+ @secret = nil
11
+ @encryptionKey = nil
12
+ @conn_pool = nil
13
+ @version = nil
14
+
15
+ def self.set_options(args = {})
16
+ # initialize BlockIo
17
+ @api_key = args[:api_key]
18
+ @secret = args[:secret]
19
+ @args = args
20
+ # @encryptionKey = Helper.pinToAesKey(@pin) if !@pin.nil?
21
+
22
+ @conn_pool = ConnectionPool.new(size: 5, timeout: 300) { HTTPClient.new }
23
+
24
+ @version = args[:version] || 1 # default version is 2
25
+
26
+ self.api_call(['get_balances',""],args)
27
+ end
28
+
29
+ def self.method_missing(m, *args, &block)
30
+
31
+ method_name = m.to_s
32
+
33
+ params = get_params(args.first)
34
+ self.api_call([method_name, params])
35
+
36
+ end
37
+
38
+ private
39
+
40
+ def self.api_call(endpoint,options={})
41
+
42
+ body = nil
43
+
44
+ @conn_pool.with do |hc|
45
+ # prevent initiation of HTTPClients every time we make this call, use a connection_pool
46
+
47
+ puts options
48
+
49
+ payload = {}
50
+ payload['request'] = endpoint[0]
51
+ payload['nonce'] = (Time.now.to_f * 1_000_000_000).to_i.to_s
52
+ payload.merge!(options)
53
+
54
+ payload_enc = Base64.encode64(payload.to_json).gsub(/\s/, '')
55
+
56
+ digest = OpenSSL::Digest.new('sha384')
57
+ sig = OpenSSL::HMAC.hexdigest(digest, @secret, payload_enc)
58
+
59
+
60
+ #puts payload
61
+ header = { "X-WCX-APIKEY" => @api_key, "X-WCX-PAYLOAD" => payload_enc, 'X-WCX-SIGNATURE' => sig}
62
+
63
+ puts header
64
+ hc.ssl_config.ssl_version = :TLSv1
65
+ response = hc.get("#{@base_url.gsub('API_CALL',endpoint[0]).gsub('VERSION', 'v'+@version.to_s)}", endpoint[1],header)
66
+ body = JSON.parse(response.body)
67
+ # puts 'rest'+body
68
+ begin
69
+ body = JSON.parse(response.body)
70
+
71
+ raise Exception.new(body['result']) if !body['status'].eql?('1')
72
+ rescue
73
+ raise Exception.new('Unknown error occurred. Please report this.')
74
+ end
75
+ end
76
+
77
+ return body
78
+ end
79
+
80
+ private
81
+
82
+ def self.get_params(args = {})
83
+ # construct the parameter string
84
+ params = ""
85
+ args = {} if args.nil?
86
+
87
+ args.each do |k,v|
88
+ params += '&' if params.length > 0
89
+ params += "#{k.to_s}=#{v.to_s}"
90
+ end
91
+
92
+ return params
93
+ end
94
+
95
+ end
96
+
@@ -0,0 +1,3 @@
1
+ module Wcx
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "wcx/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "wcx"
8
+ spec.version = Wcx::VERSION
9
+ spec.authors = ["veerasarma"]
10
+ spec.email = ["veerasarma@osiztechnologies.com"]
11
+
12
+ spec.summary = %q{An easy to use Bitcoin wallet API by CryptoWallet. Sign up required at cryptowallet.com.}
13
+ spec.description = %q{This Ruby Gem is the official reference client for the CryptoWallet.com payments API. To use this, you will need the Bitcoin API key from cryptowallet.com. Go ahead, sign up :)}
14
+ spec.homepage = "http://cryptowallet.osizdemos.com/merchant-tools-api"
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
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_development_dependency "bundler", "~> 1.15"
34
+ spec.add_development_dependency "rake", "~> 10.0"
35
+ spec.add_development_dependency "rspec", "~> 3.0"
36
+
37
+ spec.add_runtime_dependency "httpclient", "~> 2.4", '>= 2.4.0'
38
+ spec.add_runtime_dependency "json", "~> 1.8", '>= 1.8.1'
39
+ spec.add_runtime_dependency "connection_pool", "~> 2.0", '>= 2.0.0'
40
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wcx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
- - Veerasarma A
7
+ - veerasarma
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-31 00:00:00.000000000 Z
11
+ date: 2017-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.14'
19
+ version: '1.15'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.14'
26
+ version: '1.15'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -112,20 +112,32 @@ dependencies:
112
112
  - - ">="
113
113
  - !ruby/object:Gem::Version
114
114
  version: 2.0.0
115
- description: This Ruby Gem is the official reference client for the Wcx.com payments
116
- API. To use this, you will need the Bitcoin API key from cryptowallet.com. Go ahead,
117
- sign up :)
115
+ description: This Ruby Gem is the official reference client for the CryptoWallet.com
116
+ payments API. To use this, you will need the Bitcoin API key from cryptowallet.com.
117
+ Go ahead, sign up :)
118
118
  email:
119
119
  - veerasarma@osiztechnologies.com
120
120
  executables: []
121
121
  extensions: []
122
122
  extra_rdoc_files: []
123
- files: []
124
- homepage: http://wcx.com/merchant-tools-api
123
+ files:
124
+ - ".gitignore"
125
+ - ".rspec"
126
+ - ".travis.yml"
127
+ - CODE_OF_CONDUCT.md
128
+ - Gemfile
129
+ - LICENSE.txt
130
+ - README.md
131
+ - Rakefile
132
+ - bin/console
133
+ - bin/setup
134
+ - lib/wcx.rb
135
+ - lib/wcx/version.rb
136
+ - wcx.gemspec
137
+ homepage: http://cryptowallet.osizdemos.com/merchant-tools-api
125
138
  licenses:
126
139
  - MIT
127
- metadata:
128
- allowed_push_host: https://rubygems.org
140
+ metadata: {}
129
141
  post_install_message:
130
142
  rdoc_options: []
131
143
  require_paths:
@@ -145,5 +157,5 @@ rubyforge_project:
145
157
  rubygems_version: 2.5.1
146
158
  signing_key:
147
159
  specification_version: 4
148
- summary: An easy to use Bitcoin wallet API by Wcx. Sign up required at wcx.com.
160
+ summary: An easy to use Bitcoin wallet API by CryptoWallet. Sign up required at cryptowallet.com.
149
161
  test_files: []