share_a_sale 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/lib/share_a_sale/version.rb +3 -0
- data/lib/share_a_sale.rb +54 -0
- data/share_a_sale.gemspec +25 -0
- data/spec/share_a_sale_spec.rb +15 -0
- metadata +130 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Tejas Dinkar
|
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
|
+
# ShareASale
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'share_a_sale'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install share_a_sale
|
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 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/lib/share_a_sale.rb
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
require "share_a_sale/version"
|
2
|
+
require 'digest'
|
3
|
+
require 'uri'
|
4
|
+
require 'rest-client'
|
5
|
+
|
6
|
+
module ShareASale
|
7
|
+
SHARE_A_SALE_HOST = "shareasale.com"
|
8
|
+
SHARE_A_SALE_PATH = "/w.cfm"
|
9
|
+
SHARE_A_SALE_VERSION = "1.8"
|
10
|
+
|
11
|
+
class Client < Struct.new(:merchant_id, :token, :api_secret)
|
12
|
+
{ banner_list: "bannerList", transaction_detail: "transactionDetail", reference: "reference" }.each do |method, api_action|
|
13
|
+
class_eval <<-EORUBY, __FILE__, __LINE__
|
14
|
+
def #{method}(options = {}, date = Time.now)
|
15
|
+
request('#{api_action}', options, date).execute!
|
16
|
+
end
|
17
|
+
EORUBY
|
18
|
+
end
|
19
|
+
|
20
|
+
def request(action, options, date = Time.now)
|
21
|
+
Request.new(merchant_id, token, api_secret, action, options, date)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
class Request < Struct.new(:merchant_id, :token, :api_secret, :action, :options, :date)
|
26
|
+
def date_string
|
27
|
+
date.strftime("%a, %d %b %Y %H:%M:%S GMT")
|
28
|
+
end
|
29
|
+
|
30
|
+
def string_to_hash
|
31
|
+
"#{token}:#{date_string}:#{action}:#{api_secret}"
|
32
|
+
end
|
33
|
+
|
34
|
+
def authentication_hash
|
35
|
+
Digest::SHA256.hexdigest(string_to_hash).upcase
|
36
|
+
end
|
37
|
+
|
38
|
+
def url
|
39
|
+
params = [['merchantId', merchant_id], ['token', token], ['version', SHARE_A_SALE_VERSION], ['action', action], ['date', date.strftime("%D")]] + options.to_a
|
40
|
+
URI::HTTPS.build(host: SHARE_A_SALE_HOST, path: SHARE_A_SALE_PATH, query: URI.encode_www_form(params)).to_s
|
41
|
+
end
|
42
|
+
|
43
|
+
def custom_headers
|
44
|
+
{
|
45
|
+
"x-ShareASale-Date" => date_string,
|
46
|
+
"x-ShareASale-Authentication" => authentication_hash
|
47
|
+
}
|
48
|
+
end
|
49
|
+
|
50
|
+
def execute!
|
51
|
+
RestClient.get(url, custom_headers)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'share_a_sale/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "share_a_sale"
|
8
|
+
spec.version = ShareASale::VERSION
|
9
|
+
spec.authors = ["Tejas Dinkar"]
|
10
|
+
spec.email = ["tejas@gja.in"]
|
11
|
+
spec.description = %q{Gem to share sales via the Share a Sale Network}
|
12
|
+
spec.summary = %q{Gem to share sales via the Share a Sale Network}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'rest-client'
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
23
|
+
spec.add_development_dependency "rake"
|
24
|
+
spec.add_development_dependency "rspec"
|
25
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'share_a_sale'
|
2
|
+
|
3
|
+
module ShareASale
|
4
|
+
describe Request do
|
5
|
+
context "API metadata" do
|
6
|
+
let(:client) { Client.new(1234, 'NGc6dg5e9URups5o', 'ATj7vd8b7CCjeq9yQUo8cc2w3OThqe2e') }
|
7
|
+
subject { client.request('bannerList', { param: 'value' }, Time.gm(2011, 04, 14, 22, 44, 22)) }
|
8
|
+
|
9
|
+
its(:date_string) { should eq "Thu, 14 Apr 2011 22:44:22 GMT" }
|
10
|
+
its(:string_to_hash) { should eq "NGc6dg5e9URups5o:Thu, 14 Apr 2011 22:44:22 GMT:bannerList:ATj7vd8b7CCjeq9yQUo8cc2w3OThqe2e" }
|
11
|
+
its(:authentication_hash) { should eq "78D54A3051AE0AAAF022AA2DA230B97D5219D82183FEFF71E2D53DEC6057D9F1" }
|
12
|
+
its(:url) { should eq "https://shareasale.com/w.cfm?merchantId=1234&token=NGc6dg5e9URups5o&version=1.8&action=bannerList&date=04/14/11¶m=value"}
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: share_a_sale
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Tejas Dinkar
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-01-08 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rest-client
|
16
|
+
requirement: !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: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: bundler
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '1.3'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '1.3'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rake
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: rspec
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
description: Gem to share sales via the Share a Sale Network
|
79
|
+
email:
|
80
|
+
- tejas@gja.in
|
81
|
+
executables: []
|
82
|
+
extensions: []
|
83
|
+
extra_rdoc_files: []
|
84
|
+
files:
|
85
|
+
- !binary |-
|
86
|
+
LmdpdGlnbm9yZQ==
|
87
|
+
- !binary |-
|
88
|
+
R2VtZmlsZQ==
|
89
|
+
- !binary |-
|
90
|
+
TElDRU5TRS50eHQ=
|
91
|
+
- !binary |-
|
92
|
+
UkVBRE1FLm1k
|
93
|
+
- !binary |-
|
94
|
+
UmFrZWZpbGU=
|
95
|
+
- !binary |-
|
96
|
+
bGliL3NoYXJlX2Ffc2FsZS5yYg==
|
97
|
+
- !binary |-
|
98
|
+
bGliL3NoYXJlX2Ffc2FsZS92ZXJzaW9uLnJi
|
99
|
+
- !binary |-
|
100
|
+
c2hhcmVfYV9zYWxlLmdlbXNwZWM=
|
101
|
+
- !binary |-
|
102
|
+
c3BlYy9zaGFyZV9hX3NhbGVfc3BlYy5yYg==
|
103
|
+
homepage: ''
|
104
|
+
licenses:
|
105
|
+
- MIT
|
106
|
+
post_install_message:
|
107
|
+
rdoc_options: []
|
108
|
+
require_paths:
|
109
|
+
- lib
|
110
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
111
|
+
none: false
|
112
|
+
requirements:
|
113
|
+
- - ! '>='
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
116
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
117
|
+
none: false
|
118
|
+
requirements:
|
119
|
+
- - ! '>='
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
requirements: []
|
123
|
+
rubyforge_project:
|
124
|
+
rubygems_version: 1.8.23
|
125
|
+
signing_key:
|
126
|
+
specification_version: 3
|
127
|
+
summary: Gem to share sales via the Share a Sale Network
|
128
|
+
test_files:
|
129
|
+
- !binary |-
|
130
|
+
c3BlYy9zaGFyZV9hX3NhbGVfc3BlYy5yYg==
|