killbill-helloworld 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +35 -0
- data/.travis.yml +19 -0
- data/Gemfile +3 -0
- data/Jarfile +6 -0
- data/LICENSE +202 -0
- data/NEWS +2 -0
- data/README.md +30 -0
- data/Rakefile +22 -0
- data/VERSION +1 -0
- data/config.ru +4 -0
- data/db/ddl.sql +8 -0
- data/db/schema.rb +11 -0
- data/helloworld.yml +3 -0
- data/killbill-helloworld.gemspec +40 -0
- data/killbill.properties +3 -0
- data/lib/helloworld.rb +27 -0
- data/lib/helloworld/config/application.rb +26 -0
- data/lib/helloworld/initializer.rb +34 -0
- data/lib/helloworld/user.rb +5 -0
- data/lib/helloworld/user_listener.rb +17 -0
- data/pom.xml +44 -0
- data/release.sh +41 -0
- data/spec/helloworld/user_listener_spec.rb +77 -0
- data/spec/spec_helper.rb +36 -0
- metadata +183 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5f9ebf5dc4161d1a2d2356669a85a0226020f0f5
|
4
|
+
data.tar.gz: b31447aa80ec52f79b06c8eb786adbc457571e24
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4563da694eb8d1a26c8801c56ac6acf545d141ae135f4098163f820a1c95e2cfbf9b1735ffdbe9e5ea7f44544fe118f56e7a2914b8fe7a14877227df8904e14d
|
7
|
+
data.tar.gz: 0b035451d5a26282d2c1cac289ef021d4eb3744d6988ac12f5a310ef0b8782928d8b560b7ed4d5387e135ba7c4039cc11c049565179d8946e883ac625cd768f3
|
data/.gitignore
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
*.swp
|
4
|
+
.bundle
|
5
|
+
.config
|
6
|
+
coverage
|
7
|
+
InstalledFiles
|
8
|
+
lib/bundler/man
|
9
|
+
pkg
|
10
|
+
rdoc
|
11
|
+
spec/reports
|
12
|
+
test/tmp
|
13
|
+
test/version_tmp
|
14
|
+
tmp
|
15
|
+
|
16
|
+
# YARD artifacts
|
17
|
+
.yardoc
|
18
|
+
_yardoc
|
19
|
+
doc/
|
20
|
+
|
21
|
+
.jbundler
|
22
|
+
Jarfile.lock
|
23
|
+
Gemfile.lock
|
24
|
+
|
25
|
+
.DS_Store
|
26
|
+
|
27
|
+
# Build directory
|
28
|
+
killbill-helloworld/
|
29
|
+
|
30
|
+
target
|
31
|
+
pom.xml.asc
|
32
|
+
|
33
|
+
.idea/
|
34
|
+
|
35
|
+
test.db
|
data/.travis.yml
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
language: ruby
|
2
|
+
|
3
|
+
notifications:
|
4
|
+
email:
|
5
|
+
- kill-bill-commits@googlegroups.com
|
6
|
+
|
7
|
+
rvm:
|
8
|
+
- jruby-19mode
|
9
|
+
- jruby-20mode
|
10
|
+
- jruby-head
|
11
|
+
|
12
|
+
jdk:
|
13
|
+
- openjdk6
|
14
|
+
- openjdk7
|
15
|
+
- oraclejdk7
|
16
|
+
|
17
|
+
matrix:
|
18
|
+
allow_failures:
|
19
|
+
- rvm: jruby-head
|
data/Gemfile
ADDED
data/Jarfile
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
jar 'org.kill-bill.billing:killbill-api', '0.8.2'
|
2
|
+
jar 'org.kill-bill.billing.plugin:killbill-plugin-api-notification', '0.6.4'
|
3
|
+
jar 'org.kill-bill.billing.plugin:killbill-plugin-api-payment', '0.6.4'
|
4
|
+
jar 'org.kill-bill.billing.plugin:killbill-plugin-api-currency', '0.6.4'
|
5
|
+
jar 'org.kill-bill.billing:killbill-util:tests', '0.9.1'
|
6
|
+
jar 'javax.servlet:javax.servlet-api', '3.0.1'
|
data/LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright 2010-2014 Ning, Inc.
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
202
|
+
|
data/README.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
killbill-hello-world-ruby-plugin
|
2
|
+
================================
|
3
|
+
|
4
|
+
Hello World Kill Bill plugin in Ruby.
|
5
|
+
|
6
|
+
To package your app for Kill Bill, run:
|
7
|
+
|
8
|
+
```
|
9
|
+
# Use JRuby to avoid building native extensions
|
10
|
+
rvm use jruby
|
11
|
+
bundle install
|
12
|
+
jbundle install
|
13
|
+
rake killbill:clean
|
14
|
+
rake build
|
15
|
+
rake killbill:package
|
16
|
+
```
|
17
|
+
|
18
|
+
The artifact is available under the pkg/ directory.
|
19
|
+
|
20
|
+
Tests
|
21
|
+
-----
|
22
|
+
|
23
|
+
You need JRuby to run the test suite.
|
24
|
+
|
25
|
+
```
|
26
|
+
rvm use jruby
|
27
|
+
bundle install
|
28
|
+
jbundle install
|
29
|
+
rake
|
30
|
+
```
|
data/Rakefile
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
|
3
|
+
# Install tasks to build and release the plugin
|
4
|
+
require 'bundler/setup'
|
5
|
+
Bundler::GemHelper.install_tasks
|
6
|
+
|
7
|
+
# Install test tasks
|
8
|
+
require 'rspec/core/rake_task'
|
9
|
+
namespace :test do
|
10
|
+
desc 'Run RSpec tests'
|
11
|
+
RSpec::Core::RakeTask.new do |task|
|
12
|
+
task.name = 'spec'
|
13
|
+
task.pattern = './spec/*/*_spec.rb'
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
# Install tasks to package the plugin for Killbill
|
18
|
+
require 'killbill/rake_task'
|
19
|
+
Killbill::PluginHelper.install_tasks
|
20
|
+
|
21
|
+
# Run tests by default
|
22
|
+
task :default => 'test:spec'
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
data/config.ru
ADDED
data/db/ddl.sql
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
CREATE TABLE `users` (
|
2
|
+
`id` int(11) NOT NULL AUTO_INCREMENT,
|
3
|
+
`kb_account_id` varchar(255) NOT NULL,
|
4
|
+
`created_at` datetime NOT NULL,
|
5
|
+
`updated_at` datetime NOT NULL,
|
6
|
+
PRIMARY KEY (`id`),
|
7
|
+
UNIQUE KEY `index_users_on_kb_account_id` (`kb_account_id`),
|
8
|
+
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
data/db/schema.rb
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'active_record'
|
2
|
+
|
3
|
+
ActiveRecord::Schema.define(:version => 20130606153635) do
|
4
|
+
create_table 'users', :force => true do |t|
|
5
|
+
t.string 'kb_account_id', :null => false
|
6
|
+
t.datetime 'created_at', :null => false
|
7
|
+
t.datetime 'updated_at', :null => false
|
8
|
+
end
|
9
|
+
|
10
|
+
add_index(:users, :kb_account_id, :unique => true)
|
11
|
+
end
|
data/helloworld.yml
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
version = File.read(File.expand_path('../VERSION', __FILE__)).strip
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = 'killbill-helloworld'
|
5
|
+
s.version = version
|
6
|
+
s.summary = 'Hello World Kill Bill plugin in Ruby'
|
7
|
+
s.description = 'Hello World Kill Bill plugin in Ruby'
|
8
|
+
|
9
|
+
s.required_ruby_version = '>= 1.9.3'
|
10
|
+
|
11
|
+
s.license = 'Apache License (2.0)'
|
12
|
+
|
13
|
+
s.author = 'Kill Bill core team'
|
14
|
+
s.email = 'killbilling-users@googlegroups.com'
|
15
|
+
s.homepage = 'http://kill-bill.org'
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
+
s.bindir = 'bin'
|
20
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
21
|
+
s.require_paths = ["lib"]
|
22
|
+
|
23
|
+
s.rdoc_options << '--exclude' << '.'
|
24
|
+
|
25
|
+
s.add_dependency 'killbill', '~> 3.0.0'
|
26
|
+
s.add_dependency 'sinatra', '~> 1.3.4'
|
27
|
+
s.add_dependency 'activerecord', '~> 3.2.1'
|
28
|
+
if defined?(JRUBY_VERSION)
|
29
|
+
s.add_dependency 'activerecord-jdbcmysql-adapter', '~> 1.2.9'
|
30
|
+
end
|
31
|
+
|
32
|
+
s.add_development_dependency 'jbundler', '~> 0.4.1'
|
33
|
+
s.add_development_dependency 'rake', '>= 10.0.0'
|
34
|
+
s.add_development_dependency 'rspec', '~> 2.12.0'
|
35
|
+
if defined?(JRUBY_VERSION)
|
36
|
+
s.add_development_dependency 'activerecord-jdbcsqlite3-adapter', '~> 1.2.6'
|
37
|
+
else
|
38
|
+
s.add_development_dependency 'sqlite3', '~> 1.3.7'
|
39
|
+
end
|
40
|
+
end
|
data/killbill.properties
ADDED
data/lib/helloworld.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'active_record'
|
2
|
+
require 'sinatra'
|
3
|
+
|
4
|
+
require 'killbill'
|
5
|
+
|
6
|
+
require 'helloworld/user'
|
7
|
+
require 'helloworld/user_listener'
|
8
|
+
require 'helloworld/initializer'
|
9
|
+
|
10
|
+
module Killbill::HelloWorld
|
11
|
+
class HelloWorldPlugin < Killbill::Plugin::Notification
|
12
|
+
|
13
|
+
def start_plugin
|
14
|
+
super
|
15
|
+
@listener = Killbill::HelloWorld::Initializer.instance.initialize!(@conf_dir, @kb_apis, @logger)
|
16
|
+
end
|
17
|
+
|
18
|
+
def after_request
|
19
|
+
# return DB connections to the Pool if required
|
20
|
+
ActiveRecord::Base.connection.close
|
21
|
+
end
|
22
|
+
|
23
|
+
def on_event(event)
|
24
|
+
@listener.update(event.account_id) if [:ACCOUNT_CREATION, :ACCOUNT_CHANGE].include?(event.event_type)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
configure do
|
2
|
+
# Usage: rackup -Ilib -E test
|
3
|
+
if (development? or test?) and !Killbill::HelloWorld::Initializer.instance.initialized?
|
4
|
+
require 'logger'
|
5
|
+
Killbill::HelloWorld::Initializer.instance.initialize! File.expand_path(File.dirname(__FILE__) + '../../../../'),
|
6
|
+
nil,
|
7
|
+
Logger.new(STDOUT)
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
after do
|
12
|
+
# return DB connections to the Pool if required
|
13
|
+
ActiveRecord::Base.connection.close
|
14
|
+
end
|
15
|
+
|
16
|
+
# curl -v http://127.0.0.1:9292/plugins/killbill-helloworld/users/6939c8c0-cf89-11e2-8b8b-0800200c9a66
|
17
|
+
# Given a Kill Bill account id, retrieve the Kill Bill - HelloWorld mapping
|
18
|
+
get '/plugins/killbill-helloworld/users/:id', :provides => 'json' do
|
19
|
+
mapping = Killbill::HelloWorld::User.find_by_kb_account_id(params[:id])
|
20
|
+
|
21
|
+
if mapping
|
22
|
+
mapping.to_json
|
23
|
+
else
|
24
|
+
status 404
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
module Killbill::HelloWorld
|
2
|
+
class Initializer
|
3
|
+
include Singleton
|
4
|
+
|
5
|
+
attr_reader :listener
|
6
|
+
|
7
|
+
def initialize!(conf_dir, kb_apis, logger)
|
8
|
+
# Parse the config file
|
9
|
+
begin
|
10
|
+
@config = YAML.load_file("#{conf_dir}/helloworld.yml")
|
11
|
+
rescue Errno::ENOENT
|
12
|
+
logger.warn "Unable to find the config file #{conf_dir}/helloworld.yml"
|
13
|
+
return
|
14
|
+
end
|
15
|
+
|
16
|
+
logger.log_level = Logger::DEBUG if (@config[:logger] || {})[:debug]
|
17
|
+
|
18
|
+
if defined?(JRUBY_VERSION)
|
19
|
+
# See https://github.com/jruby/activerecord-jdbc-adapter/issues/302
|
20
|
+
require 'jdbc/mysql'
|
21
|
+
Jdbc::MySQL.load_driver(:require) if Jdbc::MySQL.respond_to?(:load_driver)
|
22
|
+
end
|
23
|
+
|
24
|
+
ActiveRecord::Base.establish_connection(@config[:database])
|
25
|
+
ActiveRecord::Base.logger = logger
|
26
|
+
|
27
|
+
@listener = UserListener.new(kb_apis, logger)
|
28
|
+
end
|
29
|
+
|
30
|
+
def initialized?
|
31
|
+
!@listener.nil?
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Killbill::HelloWorld
|
2
|
+
class UserListener
|
3
|
+
def initialize(kb_apis, logger)
|
4
|
+
@kb_apis = kb_apis
|
5
|
+
@logger = logger
|
6
|
+
end
|
7
|
+
|
8
|
+
def update(account_id)
|
9
|
+
user = User.where(:kb_account_id => account_id).first_or_create!
|
10
|
+
|
11
|
+
# Find the Kill Bill account associated with that account id
|
12
|
+
kb_account = @kb_apis.account_user_api.get_account_by_id(account_id, @kb_apis.create_context)
|
13
|
+
|
14
|
+
@logger.info "Successfully saved #{kb_account.name} (#{kb_account.email})"
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/pom.xml
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
~ Copyright 2010-2013 Ning, Inc.
|
4
|
+
~
|
5
|
+
~ Ning licenses this file to you under the Apache License, version 2.0
|
6
|
+
~ (the "License"); you may not use this file except in compliance with the
|
7
|
+
~ License. You may obtain a copy of the License at:
|
8
|
+
~
|
9
|
+
~ http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
~
|
11
|
+
~ Unless required by applicable law or agreed to in writing, software
|
12
|
+
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
13
|
+
~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
14
|
+
~ License for the specific language governing permissions and limitations
|
15
|
+
~ under the License.
|
16
|
+
-->
|
17
|
+
|
18
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
19
|
+
<parent>
|
20
|
+
<groupId>org.sonatype.oss</groupId>
|
21
|
+
<artifactId>oss-parent</artifactId>
|
22
|
+
<version>5</version>
|
23
|
+
</parent>
|
24
|
+
<modelVersion>4.0.0</modelVersion>
|
25
|
+
<groupId>org.kill-bill.billing.plugin.ruby</groupId>
|
26
|
+
<artifactId>helloworld-plugin</artifactId>
|
27
|
+
<packaging>pom</packaging>
|
28
|
+
<version>0.1.0</version>
|
29
|
+
<name>helloworld-plugin</name>
|
30
|
+
<url>http://github.com/killbill/killbill-hello-world-plugin</url>
|
31
|
+
<description>Hello World Kill Bill plugin in Ruby </description>
|
32
|
+
<licenses>
|
33
|
+
<license>
|
34
|
+
<name>Apache License 2.0</name>
|
35
|
+
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
|
36
|
+
<distribution>repo</distribution>
|
37
|
+
</license>
|
38
|
+
</licenses>
|
39
|
+
<scm>
|
40
|
+
<connection>scm:git:git://github.com/killbill/killbill-hello-world-plugin.git</connection>
|
41
|
+
<url>https://github.com/killbill/killbill-hello-world-plugin/</url>
|
42
|
+
<developerConnection>scm:git:git@github.com:killbill/killbill-hello-world-plugin.git</developerConnection>
|
43
|
+
</scm>
|
44
|
+
</project>
|
data/release.sh
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
set -e
|
2
|
+
|
3
|
+
if [ "GNU" != "$(tar --help | grep GNU | head -1 | awk '{print $1}')" ]; then
|
4
|
+
echo "Unable to release: make sure to use GNU tar"
|
5
|
+
exit 1
|
6
|
+
fi
|
7
|
+
|
8
|
+
if $(ruby -e'require "java"'); then
|
9
|
+
# Good
|
10
|
+
echo "Detected JRuby"
|
11
|
+
else
|
12
|
+
echo "Unable to release: make sure to use JRuby"
|
13
|
+
exit 1
|
14
|
+
fi
|
15
|
+
|
16
|
+
VERSION=`grep -E '<version>([0-9]+\.[0-9]+\.[0-9]+)</version>' pom.xml | sed 's/[\t \n]*<version>\(.*\)<\/version>[\t \n]*/\1/'`
|
17
|
+
if [ "$VERSION" != "$(cat $PWD/VERSION)" ]; then
|
18
|
+
echo "Unable to release: make sure the versions in pom.xml and VERSION match"
|
19
|
+
exit 1
|
20
|
+
fi
|
21
|
+
|
22
|
+
echo "Cleaning up"
|
23
|
+
rake killbill:clean ; rake build
|
24
|
+
|
25
|
+
echo "Pushing the gem to Rubygems"
|
26
|
+
rake release
|
27
|
+
|
28
|
+
echo "Building artifact"
|
29
|
+
rake killbill:package
|
30
|
+
|
31
|
+
ARTIFACT="$PWD/pkg/killbill-helloworld-$VERSION.tar.gz"
|
32
|
+
echo "Pushing $ARTIFACT to Maven Central"
|
33
|
+
mvn gpg:sign-and-deploy-file \
|
34
|
+
-DgroupId=org.kill-bill.billing.plugin.ruby \
|
35
|
+
-DartifactId=helloworld-plugin \
|
36
|
+
-Dversion=$VERSION \
|
37
|
+
-Dpackaging=tar.gz \
|
38
|
+
-DrepositoryId=ossrh-releases \
|
39
|
+
-Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ \
|
40
|
+
-Dfile=$ARTIFACT \
|
41
|
+
-DpomFile=pom.xml
|
@@ -0,0 +1,77 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
class FakeJavaUserAccountApi
|
4
|
+
attr_accessor :accounts
|
5
|
+
|
6
|
+
def initialize
|
7
|
+
@accounts = []
|
8
|
+
end
|
9
|
+
|
10
|
+
def get_account_by_id(id, context)
|
11
|
+
@accounts.find { |account| account.id == id.to_s }
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
describe Killbill::HelloWorld::HelloWorldPlugin do
|
16
|
+
before(:each) do
|
17
|
+
@plugin = Killbill::HelloWorld::HelloWorldPlugin.new
|
18
|
+
@plugin.conf_dir = File.expand_path(File.dirname(__FILE__) + '../../../')
|
19
|
+
|
20
|
+
logger = Logger.new(STDOUT)
|
21
|
+
logger.level = Logger::INFO
|
22
|
+
@plugin.logger = logger
|
23
|
+
|
24
|
+
@account_api = FakeJavaUserAccountApi.new
|
25
|
+
svcs = { :account_user_api => @account_api }
|
26
|
+
@plugin.kb_apis = Killbill::Plugin::KillbillApi.new('helloworld', svcs)
|
27
|
+
|
28
|
+
@plugin.start_plugin
|
29
|
+
end
|
30
|
+
|
31
|
+
after(:each) do
|
32
|
+
@plugin.stop_plugin
|
33
|
+
end
|
34
|
+
|
35
|
+
it 'should be able to listen to account events' do
|
36
|
+
kb_account_id = create_kb_account
|
37
|
+
|
38
|
+
# Verify the initial state of our table
|
39
|
+
Killbill::HelloWorld::User.count.should == 0
|
40
|
+
|
41
|
+
# Send a creation event
|
42
|
+
@plugin.on_event OpenStruct.new(:event_type => :ACCOUNT_CREATION, :account_id => kb_account_id)
|
43
|
+
|
44
|
+
# Verify the account exists
|
45
|
+
Killbill::HelloWorld::User.count.should == 1
|
46
|
+
|
47
|
+
# Send an update event
|
48
|
+
@plugin.on_event OpenStruct.new(:event_type => :ACCOUNT_CHANGE, :account_id => kb_account_id)
|
49
|
+
|
50
|
+
# Verify we didn't create dups
|
51
|
+
Killbill::HelloWorld::User.count.should == 1
|
52
|
+
|
53
|
+
# Create a new user
|
54
|
+
kb_account_id = create_kb_account
|
55
|
+
@plugin.on_event OpenStruct.new(:event_type => :ACCOUNT_CREATION, :account_id => kb_account_id)
|
56
|
+
|
57
|
+
Killbill::HelloWorld::User.count.should == 2
|
58
|
+
end
|
59
|
+
|
60
|
+
private
|
61
|
+
|
62
|
+
def create_kb_account
|
63
|
+
external_key = Time.now.to_i.to_s + '-test'
|
64
|
+
kb_account_id = SecureRandom.uuid
|
65
|
+
email = external_key + '@tester.com'
|
66
|
+
|
67
|
+
account = Killbill::Plugin::Model::Account.new
|
68
|
+
account.id = kb_account_id
|
69
|
+
account.external_key = external_key
|
70
|
+
account.email = email
|
71
|
+
account.name = 'Integration Spector'
|
72
|
+
|
73
|
+
@account_api.accounts << account
|
74
|
+
|
75
|
+
return kb_account_id
|
76
|
+
end
|
77
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'bundler'
|
2
|
+
require 'helloworld'
|
3
|
+
|
4
|
+
require 'logger'
|
5
|
+
require 'ostruct'
|
6
|
+
|
7
|
+
require 'rspec'
|
8
|
+
|
9
|
+
RSpec.configure do |config|
|
10
|
+
config.color_enabled = true
|
11
|
+
config.tty = true
|
12
|
+
config.formatter = 'documentation'
|
13
|
+
end
|
14
|
+
|
15
|
+
require 'active_record'
|
16
|
+
ActiveRecord::Base.establish_connection(
|
17
|
+
:adapter => 'sqlite3',
|
18
|
+
:database => 'test.db'
|
19
|
+
)
|
20
|
+
# Create the schema
|
21
|
+
require File.expand_path(File.dirname(__FILE__) + '../../db/schema.rb')
|
22
|
+
|
23
|
+
begin
|
24
|
+
require 'securerandom'
|
25
|
+
SecureRandom.uuid
|
26
|
+
rescue LoadError, NoMethodError
|
27
|
+
# See http://jira.codehaus.org/browse/JRUBY-6176
|
28
|
+
module SecureRandom
|
29
|
+
def self.uuid
|
30
|
+
ary = self.random_bytes(16).unpack("NnnnnN")
|
31
|
+
ary[2] = (ary[2] & 0x0fff) | 0x4000
|
32
|
+
ary[3] = (ary[3] & 0x3fff) | 0x8000
|
33
|
+
"%08x-%04x-%04x-%04x-%04x%08x" % ary
|
34
|
+
end unless respond_to?(:uuid)
|
35
|
+
end
|
36
|
+
end
|
metadata
ADDED
@@ -0,0 +1,183 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: killbill-helloworld
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kill Bill core team
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-03-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: killbill
|
15
|
+
version_requirements: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.0.0
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ~>
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 3.0.0
|
25
|
+
prerelease: false
|
26
|
+
type: :runtime
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: sinatra
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.3.4
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ~>
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: 1.3.4
|
39
|
+
prerelease: false
|
40
|
+
type: :runtime
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: activerecord
|
43
|
+
version_requirements: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 3.2.1
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ~>
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 3.2.1
|
53
|
+
prerelease: false
|
54
|
+
type: :runtime
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: activerecord-jdbcmysql-adapter
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.2.9
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ~>
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 1.2.9
|
67
|
+
prerelease: false
|
68
|
+
type: :runtime
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: jbundler
|
71
|
+
version_requirements: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.4.1
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ~>
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 0.4.1
|
81
|
+
prerelease: false
|
82
|
+
type: :development
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 10.0.0
|
90
|
+
requirement: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - '>='
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: 10.0.0
|
95
|
+
prerelease: false
|
96
|
+
type: :development
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec
|
99
|
+
version_requirements: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ~>
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 2.12.0
|
104
|
+
requirement: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ~>
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: 2.12.0
|
109
|
+
prerelease: false
|
110
|
+
type: :development
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: activerecord-jdbcsqlite3-adapter
|
113
|
+
version_requirements: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ~>
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 1.2.6
|
118
|
+
requirement: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ~>
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: 1.2.6
|
123
|
+
prerelease: false
|
124
|
+
type: :development
|
125
|
+
description: Hello World Kill Bill plugin in Ruby
|
126
|
+
email: killbilling-users@googlegroups.com
|
127
|
+
executables: []
|
128
|
+
extensions: []
|
129
|
+
extra_rdoc_files: []
|
130
|
+
files:
|
131
|
+
- .gitignore
|
132
|
+
- .travis.yml
|
133
|
+
- Gemfile
|
134
|
+
- Jarfile
|
135
|
+
- LICENSE
|
136
|
+
- NEWS
|
137
|
+
- README.md
|
138
|
+
- Rakefile
|
139
|
+
- VERSION
|
140
|
+
- config.ru
|
141
|
+
- db/ddl.sql
|
142
|
+
- db/schema.rb
|
143
|
+
- helloworld.yml
|
144
|
+
- killbill-helloworld.gemspec
|
145
|
+
- killbill.properties
|
146
|
+
- lib/helloworld.rb
|
147
|
+
- lib/helloworld/config/application.rb
|
148
|
+
- lib/helloworld/initializer.rb
|
149
|
+
- lib/helloworld/user.rb
|
150
|
+
- lib/helloworld/user_listener.rb
|
151
|
+
- pom.xml
|
152
|
+
- release.sh
|
153
|
+
- spec/helloworld/user_listener_spec.rb
|
154
|
+
- spec/spec_helper.rb
|
155
|
+
homepage: http://kill-bill.org
|
156
|
+
licenses:
|
157
|
+
- Apache License (2.0)
|
158
|
+
metadata: {}
|
159
|
+
post_install_message:
|
160
|
+
rdoc_options:
|
161
|
+
- --exclude
|
162
|
+
- .
|
163
|
+
require_paths:
|
164
|
+
- lib
|
165
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - '>='
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: 1.9.3
|
170
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - '>='
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0'
|
175
|
+
requirements: []
|
176
|
+
rubyforge_project:
|
177
|
+
rubygems_version: 2.1.9
|
178
|
+
signing_key:
|
179
|
+
specification_version: 4
|
180
|
+
summary: Hello World Kill Bill plugin in Ruby
|
181
|
+
test_files:
|
182
|
+
- spec/helloworld/user_listener_spec.rb
|
183
|
+
- spec/spec_helper.rb
|