ccavenue_payment 1.1.7

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4223ce0e93bdf039cd87c200419e97d812bbf177569de4feab3741757c2d1781
4
+ data.tar.gz: 6c6f2d4ed344fc562691a451a0c639beaad5ac021d3bcf71055e7b0dd64da598
5
+ SHA512:
6
+ metadata.gz: 913a7788e60d2329dc86cde483c2bb5d7bac0b3433bc0b462b70052089ccbbd4b9413203a71609860f8d629f166eab7976b3d61933b67b9c8718317e1e16b3c3
7
+ data.tar.gz: e65b044a86414aa7cf4600c5f2ce9255122079db8698df3d0e43efd44bd9e92fed8086733a5d8ce1b49ba098aa310d72a55e64390d07eacb4d4365dc211ef356
@@ -0,0 +1,10 @@
1
+ *.swp
2
+ .bundle
3
+ gemfiles/*.lock
4
+ coverage
5
+ factory_girl_rails-*.gem
6
+ pkg
7
+ rdoc
8
+ test.db
9
+ tmp
10
+ .rubocop-https*
@@ -0,0 +1,9 @@
1
+ dist: trusty
2
+ language: ruby
3
+ rvm:
4
+ - "2.0.0"
5
+ - "2.2.5"
6
+ - "2.3.1"
7
+ script: "bundle exec rspec"
8
+
9
+ sudo: false
File without changes
@@ -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 chid@jobready.com.au. 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 [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in ccavenue_payment.gemspec
4
+ gemspec
5
+
6
+ gem "bundler", "~> 2.2"
7
+ gem "rake", "~> 12.0"
8
+ gem "rspec", "~> 3.0"
9
+ gem "figaro", "~> 1.1"
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Dang Chi
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,136 @@
1
+ # CCAvenue Payment
2
+
3
+ CCAvenue payment gem allows merchants to instantly collect payments from their users using various payment modes like credit cards, debit cards, cash cards, net banking etc.
4
+
5
+ ## Bundler
6
+
7
+
8
+ ```ruby
9
+ source 'https://rubygems.org'
10
+
11
+ gem 'rails'
12
+ gem 'figaro'
13
+ gem 'ccavenue_payment'
14
+ ```
15
+
16
+ ## Installation
17
+
18
+
19
+ Add this line to your application's Gemfile:
20
+
21
+ ```ruby
22
+ gem 'ccavenue_payment'
23
+ ```
24
+
25
+ And then execute:
26
+
27
+ $ bundle install
28
+
29
+ Or install it yourself as:
30
+
31
+ $ gem install ccavenue_payment
32
+
33
+ ## Usage
34
+
35
+
36
+ CCAvenue test and production environments are separate.
37
+ Merchants need an active CCAvenue account to use the test environment and production environment. Merchants will have to log in to their CCAvenue M.A.R.S account and get the API credentials for using these environments.
38
+
39
+ All transactions initiated by the merchant on our test environment are not processed. Test environment is strictly for testing the request and response functions.
40
+
41
+ After successfully testing the integration, merchant can move to the production environment by changing the URL.
42
+
43
+ CCAvenue test URL is: https://test.ccavenue.com
44
+
45
+ CCAvenue production URL is: https://secure.ccavenue.com
46
+
47
+ To test the integration login to your CCAvenue M.A.R.S account, under Settings tab -> API Keys page; copy the following credentials:
48
+ 1. Merchant ID
49
+ 2. Access Code
50
+ 3. Working Key
51
+
52
+ For rails application, create a configuration file(config/application.yml):
53
+
54
+ ```ruby
55
+ CCAVENUE_MERCHANT_ID: 'MERCHANT_ID'
56
+ CCAVENUE_ACCESS_CODE: 'ACCESS_CODE'
57
+ CCAVENUE_WORKING_KEY: 'WORKING_KEY'
58
+ CCAVENUE_MODE: 'LIVE'
59
+ #CCAVENUE_MODE: 'TEST'
60
+ ```
61
+
62
+ Main functions:
63
+
64
+ ```ruby
65
+ # encrypted hash data
66
+ CcavenuePayment.encrypted_data(data)
67
+
68
+ # decrypted response string
69
+ CcavenuePayment.decrypted_data(params['encResponse'])
70
+
71
+ # Ccavenue request url
72
+ CcavenuePayment.request_url
73
+ ```
74
+
75
+ ## Example Usage
76
+
77
+
78
+ Once you've configured CcavenuePayment, you need a checkout action; my action looks like:
79
+
80
+ ```ruby
81
+ def index
82
+ data = {
83
+ order_id: 'order-id-1',
84
+ currency: 'INR',
85
+ amount: 100,
86
+ redirect_url: 'http://localhost:3000/payment_confirm',
87
+ cancel_url: 'http://localhost:3000/payment_cancel'
88
+ }
89
+ @encRequest = CcavenuePayment.encrypted_data(data)
90
+ @ccavenue_request_url = CcavenuePayment.request_url
91
+ @ccavenue_access_code = ENV.fetch('CCAVENUE_ACCESS_CODE').freeze
92
+ end
93
+ ```
94
+
95
+ And my view looks like:
96
+
97
+ ```ruby
98
+ <form id="redirect" method="post" name="redirect" action="<%= @ccavenue_request_url %>">
99
+ <input type="hidden" name="encRequest" value="<%= @encRequest %>">
100
+ <input type="hidden" name="access_code" id="access_code" value="<%= @ccavenue_access_code %>">
101
+ <button type="submit" class="btn btn-danger">Submit</button>
102
+ </form>
103
+ ```
104
+
105
+ Action confirmation looks like this:
106
+
107
+ ```ruby
108
+ def payment_confirm
109
+ # parameter to response is encrypted reponse we get from CCavenue
110
+ @data = 'null'
111
+ if params['encResponse'].present?
112
+ @data = CcavenuePayment.decrypted_data(params['encResponse'])
113
+ # Return parameters:
114
+ # Auth Description: <String: Payment Failed/Success>
115
+ # Checksum Verification <Bool: True/False>
116
+ # Response Data: <HASH/Array: Order_id, amount etc>
117
+ end
118
+ end
119
+ ```
120
+
121
+ ## Notes
122
+
123
+
124
+ All transactions initiated by the merchant on our test environment are not processed. Test environment is strictly for testing the request and response functions.
125
+
126
+ For testing CCAvenue you have to mail your merchant id and register site to CCAvenue help team and they will activate your account for test environment. mail account : service@ccavenue.com
127
+
128
+ You need provide theme the posting request URL for HDFC (CCAvenue) payment gateway. Example:
129
+
130
+ ```sh
131
+ http://localhost:3000/ccavenue_bridge_pay
132
+ ```
133
+
134
+ ## License
135
+
136
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -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 "ccavenue_payment"
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,32 @@
1
+ require_relative 'lib/ccavenue_payment/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "ccavenue_payment"
5
+ spec.version = CcavenuePayment::VERSION
6
+ spec.authors = ["Dang Chi"]
7
+ spec.email = ["dangtanminhchi@gmail.com"]
8
+
9
+ spec.summary = %q{CCAvenue billing page (Non-Seamless)}
10
+ spec.description = %q{Avoid the hassle of developing and managing your own checkout page. Use the customizable billing page provided by CCAvenue which enables you to collect billing and shipping information of the customer.}
11
+ spec.homepage = "https://github.com/chidang/ccavenue_payment"
12
+ spec.license = "MIT"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
14
+
15
+ spec.metadata["homepage_uri"] = spec.homepage
16
+ spec.metadata["source_code_uri"] = "https://github.com/chidang/ccavenue_payment"
17
+ spec.metadata["changelog_uri"] = "https://github.com/chidang/ccavenue_payment/blob/master/CHANGELOG.md"
18
+
19
+ # Specify which files should be added to the gem when it is released.
20
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
22
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
23
+ end
24
+ spec.bindir = "exe"
25
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
+ spec.require_paths = ["lib"]
27
+
28
+ spec.add_development_dependency('bundler', '~> 2.2')
29
+ spec.add_development_dependency('rake', '~> 12.0')
30
+ spec.add_development_dependency('rspec', '~> 3.0')
31
+ spec.add_dependency 'figaro', '~> 1.1', '>= 1.1.1'
32
+ end
@@ -0,0 +1,36 @@
1
+ require "ccavenue_payment/version"
2
+ require "ccavenue_payment/config"
3
+ require "ccavenue_payment/crypto"
4
+
5
+ module CcavenuePayment
6
+ class << self
7
+ # Create request object
8
+ # === Options(Hash)
9
+ def encrypted_data(data)
10
+ query_string = data.merge!({ merchant_id: Config.merchant_id }).to_query
11
+ crypto.encrypt(query_string)
12
+ end
13
+
14
+ def decrypted_data(encrypted_string)
15
+ crypto.decrypt(encrypted_string)
16
+ end
17
+
18
+ def request_url
19
+ if Config.mode.upcase == 'TEST'
20
+ "https://test.ccavenue.com/transaction/transaction.do?command=initiateTransaction"
21
+ elsif Config.mode.upcase == 'LIVE'
22
+ "https://secure.ccavenue.com/transaction/transaction.do?command=initiateTransaction"
23
+ end
24
+ end
25
+
26
+ def access_code
27
+ @access_code ||= Config.access_code
28
+ end
29
+
30
+ private
31
+
32
+ def crypto
33
+ @crypto ||= Crypto.new(working_key: Config.working_key)
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,21 @@
1
+ module CcavenuePayment
2
+ class Config
3
+ class << self
4
+ def merchant_id
5
+ ENV.fetch('CCAVENUE_MERCHANT_ID').freeze
6
+ end
7
+
8
+ def working_key
9
+ ENV.fetch('CCAVENUE_WORKING_KEY').freeze
10
+ end
11
+
12
+ def access_code
13
+ ENV.fetch('CCAVENUE_ACCESS_CODE').freeze
14
+ end
15
+
16
+ def mode
17
+ ENV.fetch('CCAVENUE_MODE').freeze
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,31 @@
1
+ module CcavenuePayment
2
+ class Crypto
3
+ attr_reader :working_key
4
+
5
+ INIT_VECTOR = (0..15).to_a.pack("C*")
6
+
7
+ def initialize(working_key:)
8
+ @working_key = working_key
9
+ end
10
+
11
+ def encrypt(plain_text)
12
+ secret_key = [Digest::MD5.hexdigest(working_key)].pack("H*")
13
+ cipher = OpenSSL::Cipher::Cipher.new('aes-128-cbc')
14
+ cipher.encrypt
15
+ cipher.key = secret_key
16
+ cipher.iv = INIT_VECTOR
17
+ encrypted_text = cipher.update(plain_text) + cipher.final
18
+ (encrypted_text.unpack("H*")).first
19
+ end
20
+
21
+ def decrypt(cipher_text)
22
+ secret_key = [Digest::MD5.hexdigest(working_key)].pack("H*")
23
+ encrypted_text = [cipher_text].pack("H*")
24
+ decipher = OpenSSL::Cipher::Cipher.new('aes-128-cbc')
25
+ decipher.decrypt
26
+ decipher.key = secret_key
27
+ decipher.iv = INIT_VECTOR
28
+ (decipher.update(encrypted_text) + decipher.final).gsub(/\0+$/, '')
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,3 @@
1
+ module CcavenuePayment
2
+ VERSION = "1.1.7"
3
+ end
metadata ADDED
@@ -0,0 +1,125 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ccavenue_payment
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.7
5
+ platform: ruby
6
+ authors:
7
+ - Dang Chi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-12-12 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: '2.2'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '12.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '12.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: figaro
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.1'
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: 1.1.1
65
+ type: :runtime
66
+ prerelease: false
67
+ version_requirements: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - "~>"
70
+ - !ruby/object:Gem::Version
71
+ version: '1.1'
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 1.1.1
75
+ description: Avoid the hassle of developing and managing your own checkout page. Use
76
+ the customizable billing page provided by CCAvenue which enables you to collect
77
+ billing and shipping information of the customer.
78
+ email:
79
+ - dangtanminhchi@gmail.com
80
+ executables: []
81
+ extensions: []
82
+ extra_rdoc_files: []
83
+ files:
84
+ - ".gitignore"
85
+ - ".travis.yml"
86
+ - CHANGELOG.md
87
+ - CODE_OF_CONDUCT.md
88
+ - Gemfile
89
+ - LICENSE.txt
90
+ - README.md
91
+ - Rakefile
92
+ - bin/console
93
+ - bin/setup
94
+ - ccavenue_payment.gemspec
95
+ - lib/ccavenue_payment.rb
96
+ - lib/ccavenue_payment/config.rb
97
+ - lib/ccavenue_payment/crypto.rb
98
+ - lib/ccavenue_payment/version.rb
99
+ homepage: https://github.com/chidang/ccavenue_payment
100
+ licenses:
101
+ - MIT
102
+ metadata:
103
+ homepage_uri: https://github.com/chidang/ccavenue_payment
104
+ source_code_uri: https://github.com/chidang/ccavenue_payment
105
+ changelog_uri: https://github.com/chidang/ccavenue_payment/blob/master/CHANGELOG.md
106
+ post_install_message:
107
+ rdoc_options: []
108
+ require_paths:
109
+ - lib
110
+ required_ruby_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: 2.3.0
115
+ required_rubygems_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ requirements: []
121
+ rubygems_version: 3.0.3
122
+ signing_key:
123
+ specification_version: 4
124
+ summary: CCAvenue billing page (Non-Seamless)
125
+ test_files: []