sendowl 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +80 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/sendowl/request.rb +56 -0
- data/lib/sendowl/resources/license.rb +47 -0
- data/lib/sendowl/version.rb +3 -0
- data/lib/sendowl.rb +16 -0
- data/sendowl.gemspec +31 -0
- metadata +128 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8d8116e7166cf1ba6cc5d3dafbce5859f5e08626fff048a39f49c8ec405aa7e4
|
4
|
+
data.tar.gz: 066e82ebec298ab61d3ce6a11fdb8af91ce0e5c7fa3c66353d99c576e10c530e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 64f3cd0c9664f7d221fbb729ae55930e66898a3ed7906f980e67dad6a2d2ce5f6c14c3468f56945ed11a55d108d0127ee842b34e918d7674147bc646e6669b02
|
7
|
+
data.tar.gz: 0c3423fc0f055fd7de977f540f0eb08296b4a5de260ef882c273dd49e9f050ffaccd17d3121fb66f494a559fcae5de8b74fd277be97601ffe0fc221ad132f6c3
|
data/.gitignore
ADDED
data/.rspec
ADDED
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 tdtadeu@gmail.com. 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) 2019 Thiago Dias
|
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,80 @@
|
|
1
|
+
# Sendowl
|
2
|
+
|
3
|
+
Ruby client for Send Owl. Check it out at [SendOwl](https://www.sendowl.com/)
|
4
|
+
|
5
|
+
## Getting Started
|
6
|
+
|
7
|
+
### Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem "sendowl"
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install sendowl
|
22
|
+
|
23
|
+
### Configure your API key and API secret
|
24
|
+
|
25
|
+
You can set your API key/secret in Ruby:
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
Sendowl.api_key = "YOUR_API_KEY"
|
29
|
+
Sendowl.api_secret = "YOUR_API_SECRET"
|
30
|
+
```
|
31
|
+
|
32
|
+
or set the environment variable _SENDOWL\_API\_KEY_ (**recommended**)
|
33
|
+
and _SENDOWL\_API\_SECRET_ (**recommended if needed**)
|
34
|
+
|
35
|
+
## Usage
|
36
|
+
|
37
|
+
So far, one single feature from the whole platform is available: Licenses.
|
38
|
+
|
39
|
+
### Licenses
|
40
|
+
|
41
|
+
#### Validating a License Key
|
42
|
+
|
43
|
+
To validate a License Key, all you need to do is the following:
|
44
|
+
|
45
|
+
```ruby
|
46
|
+
Sendowl::License.new(product_id: 1, key: "ABCD-1234-EFGH-5678").valid?
|
47
|
+
```
|
48
|
+
|
49
|
+
This returns `true` or `false`
|
50
|
+
|
51
|
+
## Contributing
|
52
|
+
|
53
|
+
### TODO
|
54
|
+
|
55
|
+
As you may have noticed, this gem is in construction and most features are not yet
|
56
|
+
available. So support to Products, Bundles, Subscriptions, Drip Items etc are
|
57
|
+
missing and I welcome any effort to help supporting those features.
|
58
|
+
|
59
|
+
This gem also needs specs and, since it's been brought to life in a hurry
|
60
|
+
because I only needed one feature of it, has no open source CI configured nor
|
61
|
+
anything that remotely guarantees its stability. So help in making it stable is
|
62
|
+
also welcome.
|
63
|
+
|
64
|
+
### Development
|
65
|
+
|
66
|
+
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.
|
67
|
+
|
68
|
+
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).
|
69
|
+
|
70
|
+
### Bugs and Issues
|
71
|
+
|
72
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/tdtadeu/sendowl. 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.
|
73
|
+
|
74
|
+
## License
|
75
|
+
|
76
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
77
|
+
|
78
|
+
## Code of Conduct
|
79
|
+
|
80
|
+
Everyone interacting in the Sendowl project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/tdtadeu/sendowl/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 "sendowl"
|
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
@@ -0,0 +1,56 @@
|
|
1
|
+
require "uri"
|
2
|
+
require "rest_client"
|
3
|
+
require "json"
|
4
|
+
|
5
|
+
module Sendowl
|
6
|
+
class Request
|
7
|
+
attr_accessor :model, :path, :method, :parameters, :headers, :query
|
8
|
+
|
9
|
+
DEFAULT_HEADERS = {
|
10
|
+
'Content-Type' => 'application/json; charset=utf8',
|
11
|
+
'Accept' => 'application/json',
|
12
|
+
'User-Agent' => "sendowl-ruby/#{Sendowl::VERSION}"
|
13
|
+
}
|
14
|
+
|
15
|
+
def initialize(path, method, model, options={})
|
16
|
+
@path = path
|
17
|
+
@method = method
|
18
|
+
@model = model
|
19
|
+
@parameters = options[:params] || {}
|
20
|
+
@query = options[:query] || {}
|
21
|
+
@headers = options[:headers] || {}
|
22
|
+
end
|
23
|
+
|
24
|
+
def run
|
25
|
+
response = RestClient::Request.execute request_params
|
26
|
+
JSON.parse response.body
|
27
|
+
end
|
28
|
+
|
29
|
+
def call
|
30
|
+
model.parse run
|
31
|
+
end
|
32
|
+
|
33
|
+
protected
|
34
|
+
|
35
|
+
def request_params
|
36
|
+
{
|
37
|
+
method: method,
|
38
|
+
user: Sendowl.api_key,
|
39
|
+
password: Sendowl.api_secret,
|
40
|
+
url: api_url,
|
41
|
+
payload: JSON.generate(parameters),
|
42
|
+
open_timeout: Sendowl.open_timeout,
|
43
|
+
timeout: Sendowl.timeout,
|
44
|
+
headers: DEFAULT_HEADERS.merge(headers),
|
45
|
+
ssl_version: 'TLSv1_2'
|
46
|
+
}
|
47
|
+
end
|
48
|
+
|
49
|
+
def api_url
|
50
|
+
url = Sendowl.api_endpoint + path
|
51
|
+
url += '?' + URI.encode_www_form(query) unless query.empty?
|
52
|
+
|
53
|
+
url
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module Sendowl
|
2
|
+
class License
|
3
|
+
attr_reader :id, :order_id, :product_id, :key, :order_refunded
|
4
|
+
|
5
|
+
def initialize(product_id:, key:, id: nil, order_id: nil, order_refunded: nil)
|
6
|
+
@id = id
|
7
|
+
@order_id = order_id
|
8
|
+
@product_id = product_id
|
9
|
+
@key = key
|
10
|
+
@order_refunded = order_refunded
|
11
|
+
end
|
12
|
+
|
13
|
+
def valid?
|
14
|
+
license = Sendowl::Request.new(
|
15
|
+
check_valid_path,
|
16
|
+
"GET",
|
17
|
+
self.class,
|
18
|
+
{ query: { key: key } }
|
19
|
+
).call.first
|
20
|
+
|
21
|
+
!(license.nil? || license.order_id.nil? || license.order_refunded)
|
22
|
+
end
|
23
|
+
|
24
|
+
class << self
|
25
|
+
def parse(response)
|
26
|
+
case response
|
27
|
+
when Array
|
28
|
+
response.map { |x| parse x }
|
29
|
+
when Hash
|
30
|
+
if response["licenses"]
|
31
|
+
response["licenses"]["invalid_keys"]
|
32
|
+
else
|
33
|
+
new response["license"].transform_keys { |k| k.to_sym }
|
34
|
+
end
|
35
|
+
else
|
36
|
+
response
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
private
|
42
|
+
|
43
|
+
def check_valid_path
|
44
|
+
"/products/#{product_id}/licenses/check_valid"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
data/lib/sendowl.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
require_relative "sendowl/version"
|
2
|
+
require_relative "sendowl/request"
|
3
|
+
|
4
|
+
require_relative "sendowl/resources/license"
|
5
|
+
|
6
|
+
module Sendowl
|
7
|
+
class << self
|
8
|
+
attr_accessor :api_endpoint, :open_timeout, :timeout, :api_key, :api_secret
|
9
|
+
end
|
10
|
+
|
11
|
+
self.api_endpoint = "https://www.sendowl.com/api/v1"
|
12
|
+
self.open_timeout = 10
|
13
|
+
self.timeout = 30
|
14
|
+
self.api_key = ENV["SENDOWL_API_KEY"]
|
15
|
+
self.api_secret = ENV["SENDOWL_API_SECRET"]
|
16
|
+
end
|
data/sendowl.gemspec
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "sendowl/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "sendowl"
|
8
|
+
spec.version = Sendowl::VERSION
|
9
|
+
spec.authors = ["Thiago Dias"]
|
10
|
+
spec.email = ["tdtadeu@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Ruby client for SendOwl Digital Products platform}
|
13
|
+
spec.homepage = "https://github.com/tdtadeu/sendowl"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
# Specify which files should be added to the gem when it is released.
|
17
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
18
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
19
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
20
|
+
end
|
21
|
+
spec.bindir = "exe"
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.17"
|
26
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
+
spec.add_development_dependency "rspec", "~> 3.8"
|
28
|
+
spec.add_development_dependency "vcr"
|
29
|
+
|
30
|
+
spec.add_dependency "rest-client"
|
31
|
+
end
|
metadata
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sendowl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Thiago Dias
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-09-06 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: '1.17'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.17'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.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.8'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.8'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: vcr
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rest-client
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- tdtadeu@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".rspec"
|
92
|
+
- ".travis.yml"
|
93
|
+
- CODE_OF_CONDUCT.md
|
94
|
+
- Gemfile
|
95
|
+
- LICENSE.txt
|
96
|
+
- README.md
|
97
|
+
- Rakefile
|
98
|
+
- bin/console
|
99
|
+
- bin/setup
|
100
|
+
- lib/sendowl.rb
|
101
|
+
- lib/sendowl/request.rb
|
102
|
+
- lib/sendowl/resources/license.rb
|
103
|
+
- lib/sendowl/version.rb
|
104
|
+
- sendowl.gemspec
|
105
|
+
homepage: https://github.com/tdtadeu/sendowl
|
106
|
+
licenses:
|
107
|
+
- MIT
|
108
|
+
metadata: {}
|
109
|
+
post_install_message:
|
110
|
+
rdoc_options: []
|
111
|
+
require_paths:
|
112
|
+
- lib
|
113
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0'
|
123
|
+
requirements: []
|
124
|
+
rubygems_version: 3.0.1
|
125
|
+
signing_key:
|
126
|
+
specification_version: 4
|
127
|
+
summary: Ruby client for SendOwl Digital Products platform
|
128
|
+
test_files: []
|