speedway 0.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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/lib/speedway.rb +69 -0
- data/lib/speedway/response_codes.rb +10 -0
- data/lib/speedway/version.rb +3 -0
- data/speedway.gemspec +21 -0
- metadata +76 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2012 Ben Askins
|
|
2
|
+
|
|
3
|
+
MIT License
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Speedway
|
|
2
|
+
|
|
3
|
+
TODO: Write a gem description
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add this line to your application's Gemfile:
|
|
8
|
+
|
|
9
|
+
gem 'speedway'
|
|
10
|
+
|
|
11
|
+
And then execute:
|
|
12
|
+
|
|
13
|
+
$ bundle
|
|
14
|
+
|
|
15
|
+
Or install it yourself as:
|
|
16
|
+
|
|
17
|
+
$ gem install speedway
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
TODO: Write usage instructions here
|
|
22
|
+
|
|
23
|
+
## Contributing
|
|
24
|
+
|
|
25
|
+
1. Fork it
|
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
27
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/lib/speedway.rb
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
require 'speedway/version'
|
|
2
|
+
require 'speedway/response_codes'
|
|
3
|
+
require 'savon'
|
|
4
|
+
require 'akami'
|
|
5
|
+
|
|
6
|
+
module Speedway
|
|
7
|
+
class RapidAPI
|
|
8
|
+
attr_reader :customer_id, :user_name, :password
|
|
9
|
+
|
|
10
|
+
def initialize(customer_id, user_name, password)
|
|
11
|
+
@client = initialize_client
|
|
12
|
+
|
|
13
|
+
@customer_id = customer_id
|
|
14
|
+
@user_name = user_name
|
|
15
|
+
@password = password
|
|
16
|
+
|
|
17
|
+
puts @client.wsdl.soap_actions
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def create_access_code(customer, payment, redirect_url)
|
|
22
|
+
@client.request :create_access_code do
|
|
23
|
+
soap.body = {
|
|
24
|
+
'request' => {
|
|
25
|
+
'Authentication' => credentials,
|
|
26
|
+
'Customer' => {
|
|
27
|
+
'FirstName' => customer[:first_name],
|
|
28
|
+
'LastName' => customer[:last_name]
|
|
29
|
+
},
|
|
30
|
+
'Payment' => {
|
|
31
|
+
'TotalAmount' => (payment[:total_amount] * 100).to_i
|
|
32
|
+
# 'InvoiceNumber' => invoice
|
|
33
|
+
},
|
|
34
|
+
'RedirectUrl' => redirect_url
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def get_access_code_result(access_code)
|
|
42
|
+
@client.request :get_access_code_result do
|
|
43
|
+
soap.body = {
|
|
44
|
+
'request' => {
|
|
45
|
+
'Authentication' => credentials,
|
|
46
|
+
'AccessCode' => access_code
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
protected
|
|
54
|
+
|
|
55
|
+
def credentials
|
|
56
|
+
{
|
|
57
|
+
'CustomerID' => customer_id,
|
|
58
|
+
'Username' => user_name,
|
|
59
|
+
'Password' => password
|
|
60
|
+
}
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
def initialize_client
|
|
64
|
+
Savon.client do |wsdl, http, wsse|
|
|
65
|
+
wsdl.document = "https://au.ewaypayments.com/hotpotato/soap.asmx?wsdl"
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
end
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
module Speedway
|
|
2
|
+
|
|
3
|
+
module ResponseCodes
|
|
4
|
+
|
|
5
|
+
SuccessfulResponses = %w(00 08 10 11 16)
|
|
6
|
+
FailedResponses = %w(01 02 03 04 05 06 07 09 10 12 13 14 15 19 21 22 23 25 30 31 33 34 35 36 37 38 39 40 41 42 43 44 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 75 82 90 91 92 93 94 96)
|
|
7
|
+
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
end
|
data/speedway.gemspec
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
require File.expand_path('../lib/speedway/version', __FILE__)
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |gem|
|
|
5
|
+
gem.authors = ["Ben Askins"]
|
|
6
|
+
gem.email = ["ben.askins@gmail.com"]
|
|
7
|
+
gem.description = %q{eWay RapidAPI Integration}
|
|
8
|
+
gem.summary = %q{eWay RapidAPI Integration}
|
|
9
|
+
gem.homepage = ""
|
|
10
|
+
|
|
11
|
+
gem.files = `git ls-files`.split($\)
|
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
14
|
+
gem.name = "speedway"
|
|
15
|
+
gem.require_paths = ["lib"]
|
|
16
|
+
gem.version = Speedway::VERSION
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
gem.add_dependency 'akami'
|
|
20
|
+
gem.add_dependency 'savon'
|
|
21
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: speedway
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Ben Askins
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-08-01 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: akami
|
|
16
|
+
requirement: &70257517903540 !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *70257517903540
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: savon
|
|
27
|
+
requirement: &70257517903080 !ruby/object:Gem::Requirement
|
|
28
|
+
none: false
|
|
29
|
+
requirements:
|
|
30
|
+
- - ! '>='
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: *70257517903080
|
|
36
|
+
description: eWay RapidAPI Integration
|
|
37
|
+
email:
|
|
38
|
+
- ben.askins@gmail.com
|
|
39
|
+
executables: []
|
|
40
|
+
extensions: []
|
|
41
|
+
extra_rdoc_files: []
|
|
42
|
+
files:
|
|
43
|
+
- .gitignore
|
|
44
|
+
- Gemfile
|
|
45
|
+
- LICENSE
|
|
46
|
+
- README.md
|
|
47
|
+
- Rakefile
|
|
48
|
+
- lib/speedway.rb
|
|
49
|
+
- lib/speedway/response_codes.rb
|
|
50
|
+
- lib/speedway/version.rb
|
|
51
|
+
- speedway.gemspec
|
|
52
|
+
homepage: ''
|
|
53
|
+
licenses: []
|
|
54
|
+
post_install_message:
|
|
55
|
+
rdoc_options: []
|
|
56
|
+
require_paths:
|
|
57
|
+
- lib
|
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
59
|
+
none: false
|
|
60
|
+
requirements:
|
|
61
|
+
- - ! '>='
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: '0'
|
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
|
+
none: false
|
|
66
|
+
requirements:
|
|
67
|
+
- - ! '>='
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0'
|
|
70
|
+
requirements: []
|
|
71
|
+
rubyforge_project:
|
|
72
|
+
rubygems_version: 1.8.10
|
|
73
|
+
signing_key:
|
|
74
|
+
specification_version: 3
|
|
75
|
+
summary: eWay RapidAPI Integration
|
|
76
|
+
test_files: []
|