killbill-orbital 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.md DELETED
@@ -1,159 +0,0 @@
1
- killbill-orbital-plugin
2
- =======================
3
-
4
- Plugin to use [Orbital](http://www.chasepaymentech.com/payment_gateway.html) as a gateway.
5
-
6
- Release builds are available on [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.kill-bill.billing.plugin.ruby%22%20AND%20a%3A%22orbital-plugin%22) with coordinates `org.kill-bill.billing.plugin.ruby:orbital-plugin`.
7
-
8
- Kill Bill compatibility
9
- -----------------------
10
-
11
- | Plugin version | Kill Bill version |
12
- | -------------: | ----------------: |
13
- | 0.0.x | 0.16.z |
14
- | 0.1.x | 0.18.z |
15
-
16
- Requirements
17
- ------------
18
-
19
- The plugin needs a database. The latest version of the schema can be found [here](https://github.com/killbill/killbill-orbital-plugin/blob/master/db/ddl.sql).
20
-
21
- Configuration
22
- -------------
23
-
24
- ```
25
- curl -v \
26
- -X POST \
27
- -u admin:password \
28
- -H 'X-Killbill-ApiKey: bob' \
29
- -H 'X-Killbill-ApiSecret: lazar' \
30
- -H 'X-Killbill-CreatedBy: admin' \
31
- -H 'Content-Type: text/plain' \
32
- -d ':orbital:
33
- - :account_id: "merchant_account_1"
34
- :login: "your-login"
35
- :password: "your-password"
36
- :merchant_id: "your-merchant-id"
37
- - :account_id: "merchant_account_2"
38
- :login: "your-login"
39
- :password: "your-password"
40
- :merchant_id: "your-merchant-id"' \
41
- http://127.0.0.1:8080/1.0/kb/tenants/uploadPluginConfig/killbill-orbital
42
- ```
43
-
44
- To go to production, create a `orbital.yml` configuration file under `/var/tmp/bundles/plugins/ruby/killbill-orbital/x.y.z/` containing the following:
45
-
46
- ```
47
- :orbital:
48
- :test: false
49
- ```
50
-
51
- Usage
52
- -----
53
-
54
- To store a credit card:
55
-
56
- ```
57
- curl -v \
58
- -X POST \
59
- -u admin:password \
60
- -H 'X-Killbill-ApiKey: bob' \
61
- -H 'X-Killbill-ApiSecret: lazar' \
62
- -H 'X-Killbill-CreatedBy: admin' \
63
- -H 'Content-Type: application/json' \
64
- -d '{
65
- "pluginName": "killbill-orbital",
66
- "pluginInfo": {
67
- "properties": [
68
- {
69
- "key": "ccFirstName",
70
- "value": "John"
71
- },
72
- {
73
- "key": "ccLastName",
74
- "value": "Doe"
75
- },
76
- {
77
- "key": "address1",
78
- "value": "5th Street"
79
- },
80
- {
81
- "key": "city",
82
- "value": "San Francisco"
83
- },
84
- {
85
- "key": "zip",
86
- "value": "94111"
87
- },
88
- {
89
- "key": "state",
90
- "value": "CA"
91
- },
92
- {
93
- "key": "country",
94
- "value": "USA"
95
- },
96
- {
97
- "key": "ccExpirationMonth",
98
- "value": 12
99
- },
100
- {
101
- "key": "ccExpirationYear",
102
- "value": 2017
103
- },
104
- {
105
- "key": "ccNumber",
106
- "value": "4111111111111111"
107
- }
108
- ]
109
- }
110
- }' \
111
- "http://127.0.0.1:8080/1.0/kb/accounts/<ACCOUNT_ID>/paymentMethods?isDefault=true"
112
- ```
113
-
114
- To trigger a payment:
115
-
116
- ```
117
- curl -v \
118
- -X POST \
119
- -u admin:password \
120
- -H 'X-Killbill-ApiKey: bob' \
121
- -H 'X-Killbill-ApiSecret: lazar' \
122
- -H 'X-Killbill-CreatedBy: admin' \
123
- -H 'Content-Type: application/json' \
124
- -d '{
125
- "transactionType": "AUTHORIZE",
126
- "amount": 5
127
- }' \
128
- http://127.0.0.1:8080/1.0/kb/accounts/<ACCOUNT_ID>/payments
129
- ```
130
-
131
- Plugin properties
132
- -----------------
133
-
134
- | Key | Description |
135
- | ---------------------------: | ----------------------------------------------------------------- |
136
- | skip_gw | If true, skip the call to Orbital |
137
- | payment_processor_account_id | Config entry name of the merchant account to use |
138
- | external_key_as_order_id | If true, set the payment external key as the Orbital order id |
139
- | cc_first_name | Credit card holder first name |
140
- | cc_last_name | Credit card holder last name |
141
- | cc_type | Credit card brand |
142
- | cc_expiration_month | Credit card expiration month |
143
- | cc_expiration_year | Credit card expiration year |
144
- | cc_verification_value | CVC/CVV/CVN |
145
- | cvv_indicator_visa_discover | If true, set '9' as `CardSecValInd` when CVV is absent (Visa / Discover only ) |
146
- | cvv_indicator_override_visa_discover | `CardSecValInd` value when CVV is absent (Visa / Discover only) |
147
- | email | Purchaser email |
148
- | address1 | Billing address first line |
149
- | address2 | Billing address second line |
150
- | city | Billing address city |
151
- | zip | Billing address zip code |
152
- | state | Billing address state |
153
- | country | Billing address country |
154
- | eci | Network tokenization attribute |
155
- | payment_cryptogram | Network tokenization attribute |
156
- | transaction_id | Network tokenization attribute |
157
- | payment_instrument_name | ApplePay tokenization attribute |
158
- | payment_network | ApplePay tokenization attribute |
159
- | transaction_identifier | ApplePay tokenization attribute |
data/Rakefile DELETED
@@ -1,30 +0,0 @@
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
-
16
- namespace :remote do
17
- desc 'Run RSpec remote tests'
18
- RSpec::Core::RakeTask.new do |task|
19
- task.name = 'spec'
20
- task.pattern = './spec/*/remote/*_spec.rb'
21
- end
22
- end
23
- end
24
-
25
- # Install tasks to package the plugin for Killbill
26
- require 'killbill/rake_task'
27
- Killbill::PluginHelper.install_tasks
28
-
29
- # Run tests by default
30
- task :default => 'test:spec'
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.1.3
data/config.ru DELETED
@@ -1,4 +0,0 @@
1
- require 'orbital'
2
- require 'orbital/application'
3
-
4
- run Sinatra::Application
data/db/ddl.sql DELETED
@@ -1,133 +0,0 @@
1
- CREATE TABLE orbital_payment_methods (
2
- id serial UNIQUE,
3
- kb_payment_method_id varchar(255) DEFAULT NULL,
4
- token varchar(255) DEFAULT NULL,
5
- cc_first_name varchar(255) DEFAULT NULL,
6
- cc_last_name varchar(255) DEFAULT NULL,
7
- cc_type varchar(255) DEFAULT NULL,
8
- cc_exp_month varchar(255) DEFAULT NULL,
9
- cc_exp_year varchar(255) DEFAULT NULL,
10
- cc_number varchar(255) DEFAULT NULL,
11
- cc_last_4 varchar(255) DEFAULT NULL,
12
- cc_start_month varchar(255) DEFAULT NULL,
13
- cc_start_year varchar(255) DEFAULT NULL,
14
- cc_issue_number varchar(255) DEFAULT NULL,
15
- cc_verification_value varchar(255) DEFAULT NULL,
16
- cc_track_data varchar(255) DEFAULT NULL,
17
- address1 varchar(255) DEFAULT NULL,
18
- address2 varchar(255) DEFAULT NULL,
19
- city varchar(255) DEFAULT NULL,
20
- state varchar(255) DEFAULT NULL,
21
- zip varchar(255) DEFAULT NULL,
22
- country varchar(255) DEFAULT NULL,
23
- is_deleted boolean NOT NULL DEFAULT '0',
24
- created_at datetime NOT NULL,
25
- updated_at datetime NOT NULL,
26
- kb_account_id varchar(255) DEFAULT NULL,
27
- kb_tenant_id varchar(255) DEFAULT NULL,
28
- PRIMARY KEY (id)
29
- ) /*! ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin */;
30
- CREATE INDEX index_orbital_payment_methods_kb_account_id ON orbital_payment_methods(kb_account_id);
31
- CREATE INDEX index_orbital_payment_methods_kb_payment_method_id ON orbital_payment_methods(kb_payment_method_id);
32
-
33
- CREATE TABLE orbital_transactions (
34
- id serial UNIQUE,
35
- orbital_response_id bigint /*! unsigned */ NOT NULL,
36
- api_call varchar(255) NOT NULL,
37
- kb_payment_id varchar(255) NOT NULL,
38
- kb_payment_transaction_id varchar(255) NOT NULL,
39
- transaction_type varchar(255) NOT NULL,
40
- payment_processor_account_id varchar(255) DEFAULT NULL,
41
- txn_id varchar(255) DEFAULT NULL,
42
- amount_in_cents int DEFAULT NULL,
43
- currency varchar(255) DEFAULT NULL,
44
- created_at datetime NOT NULL,
45
- updated_at datetime NOT NULL,
46
- kb_account_id varchar(255) NOT NULL,
47
- kb_tenant_id varchar(255) NOT NULL,
48
- PRIMARY KEY (id)
49
- ) /*! ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin */;
50
- CREATE INDEX index_orbital_transactions_kb_payment_id ON orbital_transactions(kb_payment_id);
51
- CREATE INDEX index_orbital_transactions_orbital_response_id ON orbital_transactions(orbital_response_id);
52
-
53
- CREATE TABLE orbital_responses (
54
- id serial UNIQUE,
55
- api_call varchar(255) NOT NULL,
56
- kb_payment_id varchar(255) DEFAULT NULL,
57
- kb_payment_transaction_id varchar(255) DEFAULT NULL,
58
- transaction_type varchar(255) DEFAULT NULL,
59
- payment_processor_account_id varchar(255) DEFAULT NULL,
60
- message varchar(255) DEFAULT NULL,
61
- authorisation varchar(255) DEFAULT NULL,
62
- fraud_review boolean DEFAULT NULL,
63
- test boolean DEFAULT NULL,
64
- params_account_num varchar(255) DEFAULT NULL,
65
- params_address_1 varchar(255) DEFAULT NULL,
66
- params_address_2 varchar(255) DEFAULT NULL,
67
- params_approval_status varchar(255) DEFAULT NULL,
68
- params_auth_code varchar(255) DEFAULT NULL,
69
- params_avs_resp_code varchar(255) DEFAULT NULL,
70
- params_card_brand varchar(255) DEFAULT NULL,
71
- params_cavv_resp_code varchar(255) DEFAULT NULL,
72
- params_cc_account_num varchar(255) DEFAULT NULL,
73
- params_cc_expire_date varchar(255) DEFAULT NULL,
74
- params_country_fraud_filter_status varchar(255) DEFAULT NULL,
75
- params_customer_bin varchar(255) DEFAULT NULL,
76
- params_customer_city varchar(255) DEFAULT NULL,
77
- params_customer_country_code varchar(255) DEFAULT NULL,
78
- params_customer_email varchar(255) DEFAULT NULL,
79
- params_customer_merchant_id varchar(255) DEFAULT NULL,
80
- params_customer_name varchar(255) DEFAULT NULL,
81
- params_customer_phone varchar(255) DEFAULT NULL,
82
- params_customer_profile_action varchar(255) DEFAULT NULL,
83
- params_customer_profile_message varchar(255) DEFAULT NULL,
84
- params_customer_profile_order_override_ind varchar(255) DEFAULT NULL,
85
- params_customer_ref_num varchar(255) DEFAULT NULL,
86
- params_customer_state varchar(255) DEFAULT NULL,
87
- params_customer_zip varchar(255) DEFAULT NULL,
88
- params_cvv2_resp_code varchar(255) DEFAULT NULL,
89
- params_ecp_account_dda varchar(255) DEFAULT NULL,
90
- params_ecp_account_rt varchar(255) DEFAULT NULL,
91
- params_ecp_account_type varchar(255) DEFAULT NULL,
92
- params_ecp_bank_pmt_dlv varchar(255) DEFAULT NULL,
93
- params_host_avs_resp_code varchar(255) DEFAULT NULL,
94
- params_host_cvv2_resp_code varchar(255) DEFAULT NULL,
95
- params_host_resp_code varchar(255) DEFAULT NULL,
96
- params_industry_type varchar(255) DEFAULT NULL,
97
- params_iso_country_code varchar(255) DEFAULT NULL,
98
- params_merchant_id varchar(255) DEFAULT NULL,
99
- params_message_type varchar(255) DEFAULT NULL,
100
- params_order_default_amount varchar(255) DEFAULT NULL,
101
- params_order_default_description varchar(255) DEFAULT NULL,
102
- params_order_id varchar(255) DEFAULT NULL,
103
- params_partial_auth_occurred varchar(255) DEFAULT NULL,
104
- params_proc_status varchar(255) DEFAULT NULL,
105
- params_profile_proc_status varchar(255) DEFAULT NULL,
106
- params_recurring_advice_cd varchar(255) DEFAULT NULL,
107
- params_redeemed_amount varchar(255) DEFAULT NULL,
108
- params_remaining_balance varchar(255) DEFAULT NULL,
109
- params_requested_amount varchar(255) DEFAULT NULL,
110
- params_resp_code varchar(255) DEFAULT NULL,
111
- params_resp_msg varchar(255) DEFAULT NULL,
112
- params_resp_time varchar(255) DEFAULT NULL,
113
- params_status varchar(255) DEFAULT NULL,
114
- params_status_msg varchar(255) DEFAULT NULL,
115
- params_switch_solo_issue_num varchar(255) DEFAULT NULL,
116
- params_switch_solo_start_date varchar(255) DEFAULT NULL,
117
- params_terminal_id varchar(255) DEFAULT NULL,
118
- params_tx_ref_idx varchar(255) DEFAULT NULL,
119
- params_tx_ref_num varchar(255) DEFAULT NULL,
120
- avs_result_code varchar(255) DEFAULT NULL,
121
- avs_result_message varchar(255) DEFAULT NULL,
122
- avs_result_street_match varchar(255) DEFAULT NULL,
123
- avs_result_postal_match varchar(255) DEFAULT NULL,
124
- cvv_result_code varchar(255) DEFAULT NULL,
125
- cvv_result_message varchar(255) DEFAULT NULL,
126
- success boolean DEFAULT NULL,
127
- created_at datetime NOT NULL,
128
- updated_at datetime NOT NULL,
129
- kb_account_id varchar(255) DEFAULT NULL,
130
- kb_tenant_id varchar(255) DEFAULT NULL,
131
- PRIMARY KEY (id)
132
- ) /*! ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin */;
133
- CREATE INDEX index_orbital_responses_kb_payment_id_kb_tenant_id ON orbital_responses(kb_payment_id, kb_tenant_id);
data/db/schema.rb DELETED
@@ -1,134 +0,0 @@
1
- require 'active_record'
2
-
3
- ActiveRecord::Schema.define(:version => 20140410153635) do
4
- create_table "orbital_payment_methods", :force => true do |t|
5
- t.string "kb_payment_method_id" # NULL before Kill Bill knows about it
6
- t.string "token" # orbital id
7
- t.string "cc_first_name"
8
- t.string "cc_last_name"
9
- t.string "cc_type"
10
- t.string "cc_exp_month"
11
- t.string "cc_exp_year"
12
- t.string "cc_number"
13
- t.string "cc_last_4"
14
- t.string "cc_start_month"
15
- t.string "cc_start_year"
16
- t.string "cc_issue_number"
17
- t.string "cc_verification_value"
18
- t.string "cc_track_data"
19
- t.string "address1"
20
- t.string "address2"
21
- t.string "city"
22
- t.string "state"
23
- t.string "zip"
24
- t.string "country"
25
- t.boolean "is_deleted", :null => false, :default => false
26
- t.datetime "created_at", :null => false
27
- t.datetime "updated_at", :null => false
28
- t.string "kb_account_id"
29
- t.string "kb_tenant_id"
30
- end
31
-
32
- add_index(:orbital_payment_methods, :kb_account_id)
33
- add_index(:orbital_payment_methods, :kb_payment_method_id)
34
-
35
- create_table "orbital_transactions", :force => true do |t|
36
- t.integer "orbital_response_id", :null => false
37
- t.string "api_call", :null => false
38
- t.string "kb_payment_id", :null => false
39
- t.string "kb_payment_transaction_id", :null => false
40
- t.string "transaction_type", :null => false
41
- t.string "payment_processor_account_id"
42
- t.string "txn_id" # orbital transaction id
43
- # Both null for void
44
- t.integer "amount_in_cents"
45
- t.string "currency"
46
- t.datetime "created_at", :null => false
47
- t.datetime "updated_at", :null => false
48
- t.string "kb_account_id", :null => false
49
- t.string "kb_tenant_id", :null => false
50
- end
51
-
52
- add_index(:orbital_transactions, :kb_payment_id)
53
- add_index(:orbital_transactions, :orbital_response_id)
54
-
55
- create_table "orbital_responses", :force => true do |t|
56
- t.string "api_call", :null => false
57
- t.string "kb_payment_id"
58
- t.string "kb_payment_transaction_id"
59
- t.string "transaction_type"
60
- t.string "payment_processor_account_id"
61
- t.string "message"
62
- t.string "authorization"
63
- t.boolean "fraud_review"
64
- t.boolean "test"
65
- t.string "params_account_num"
66
- t.string "params_address_1"
67
- t.string "params_address_2"
68
- t.string "params_approval_status"
69
- t.string "params_auth_code"
70
- t.string "params_avs_resp_code"
71
- t.string "params_card_brand"
72
- t.string "params_cavv_resp_code"
73
- t.string "params_cc_account_num"
74
- t.string "params_cc_expire_date"
75
- t.string "params_country_fraud_filter_status"
76
- t.string "params_customer_bin"
77
- t.string "params_customer_city"
78
- t.string "params_customer_country_code"
79
- t.string "params_customer_email"
80
- t.string "params_customer_merchant_id"
81
- t.string "params_customer_name"
82
- t.string "params_customer_phone"
83
- t.string "params_customer_profile_action"
84
- t.string "params_customer_profile_message"
85
- t.string "params_customer_profile_order_override_ind"
86
- t.string "params_customer_ref_num"
87
- t.string "params_customer_state"
88
- t.string "params_customer_zip"
89
- t.string "params_cvv2_resp_code"
90
- t.string "params_ecp_account_dda"
91
- t.string "params_ecp_account_rt"
92
- t.string "params_ecp_account_type"
93
- t.string "params_host_avs_resp_code"
94
- t.string "params_host_cvv2_resp_code"
95
- t.string "params_host_resp_code"
96
- t.string "params_industry_type"
97
- t.string "params_iso_country_code"
98
- t.string "params_merchant_id"
99
- t.string "params_message_type"
100
- t.string "params_order_default_amount"
101
- t.string "params_order_default_description"
102
- t.string "params_order_id"
103
- t.string "params_partial_auth_occurred"
104
- t.string "params_proc_status"
105
- t.string "params_profile_proc_status"
106
- t.string "params_recurring_advice_cd"
107
- t.string "params_redeemed_amount"
108
- t.string "params_remaining_balance"
109
- t.string "params_requested_amount"
110
- t.string "params_resp_code"
111
- t.string "params_resp_msg"
112
- t.string "params_resp_time"
113
- t.string "params_status"
114
- t.string "params_status_msg"
115
- t.string "params_switch_solo_issue_num"
116
- t.string "params_switch_solo_start_date"
117
- t.string "params_terminal_id"
118
- t.string "params_tx_ref_idx"
119
- t.string "params_tx_ref_num"
120
- t.string "avs_result_code"
121
- t.string "avs_result_message"
122
- t.string "avs_result_street_match"
123
- t.string "avs_result_postal_match"
124
- t.string "cvv_result_code"
125
- t.string "cvv_result_message"
126
- t.boolean "success"
127
- t.datetime "created_at", :null => false
128
- t.datetime "updated_at", :null => false
129
- t.string "kb_account_id"
130
- t.string "kb_tenant_id"
131
- end
132
-
133
- add_index(:orbital_responses, [:kb_payment_id, :kb_tenant_id])
134
- end
@@ -1,52 +0,0 @@
1
- version = File.read(File.expand_path('../VERSION', __FILE__)).strip
2
-
3
- Gem::Specification.new do |s|
4
- s.name = 'killbill-orbital'
5
- s.version = version
6
- s.summary = 'Plugin to use Orbital as a gateway.'
7
- s.description = 'Kill Bill payment plugin for Orbital.'
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://killbill.io'
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', '~> 8.0'
26
-
27
- s.add_dependency 'sinatra', '~> 1.3.4'
28
- s.add_dependency 'thread_safe', '~> 0.3.4'
29
- s.add_dependency 'activerecord', '~> 4.1.0'
30
- if defined?(JRUBY_VERSION)
31
- s.add_dependency 'activerecord-bogacs', '~> 0.3'
32
- s.add_dependency 'activerecord-jdbc-adapter', '~> 1.3', '< 1.5'
33
- s.add_dependency 'jruby-openssl', '~> 0.9.7'
34
- end
35
- s.add_dependency 'actionpack', '~> 4.1.0'
36
- s.add_dependency 'actionview', '~> 4.1.0'
37
- s.add_dependency 'activemerchant', '~> 1.55.0'
38
- s.add_dependency 'offsite_payments', '~> 2.1.0'
39
- s.add_dependency 'monetize', '~> 1.1.0'
40
- s.add_dependency 'money', '~> 6.5.1'
41
-
42
- s.add_development_dependency 'jbundler', '~> 0.9.2'
43
- s.add_development_dependency 'rake', '>= 10.0.0'
44
- s.add_development_dependency 'rspec', '~> 2.12.0'
45
- if defined?(JRUBY_VERSION)
46
- s.add_development_dependency 'jdbc-sqlite3', '~> 3.7'
47
- s.add_development_dependency 'jdbc-mariadb', '~> 1.1'
48
- s.add_development_dependency 'jdbc-postgres', '~> 9.4'
49
- else
50
- s.add_development_dependency 'sqlite3', '~> 1.3.7'
51
- end
52
- end
data/killbill.properties DELETED
@@ -1,3 +0,0 @@
1
- mainClass=Killbill::Orbital::PaymentPlugin
2
- require=orbital
3
- pluginType=PAYMENT
data/orbital.yml DELETED
@@ -1,34 +0,0 @@
1
- :orbital:
2
- - :account_id: default
3
- :test: true
4
- :login: <%= ENV['LOGIN'] %>
5
- :password: <%= ENV['PASSWORD'] %>
6
- :merchant_id: "<%= ENV['MERCHANT_ID'] %>"
7
-
8
- :database:
9
- # SQLite (development)
10
- :adapter: sqlite3
11
- :database: test.db
12
- # For PostgreSQL
13
- # :adapter: postgresql
14
- # :database: 'killbill'
15
- # For MySQL
16
- # :adapter: mariadb
17
- # :username: 'killbill'
18
- # :password: 'killbill'
19
- # :database: 'killbill' # or set the URL :
20
- # #:url: jdbc:mysql://127.0.0.1:3306/killbill
21
- # :driver: org.mariadb.jdbc.Driver # as in KB
22
- # :pool: 30 # AR's default is max 5 connections
23
- # In Kill Bill
24
- # :adapter: mysql
25
- # :jndi: 'killbill/osgi/jdbc'
26
- # :pool: false # false-pool (JNDI pool's max)
27
- # # uncomment if pool does not support JDBC4 :
28
- # #:connection_alive_sql: 'select 1'
29
- # # MySQL adapter #configure_connection defaults :
30
- # # @@SESSION.sql_auto_is_null = 0,
31
- # # @@SESSION.wait_timeout = 2147483,
32
- # # @@SESSION.sql_mode = 'STRICT_ALL_TABLES'
33
- # # ... can be disabled (on AR-JDBC 1.4) using :
34
- # :configure_connection: false
data/pom.xml DELETED
@@ -1,44 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!--
3
- ~ Copyright 2016 The Billing Project, LLC
4
- ~
5
- ~ The Billing Project 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>orbital-plugin</artifactId>
27
- <packaging>pom</packaging>
28
- <version>0.1.3</version>
29
- <name>orbital-plugin</name>
30
- <url>http://github.com/killbill/killbill-orbital-plugin</url>
31
- <description>Plugin for accessing Orbital as a payment gateway</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-orbital-plugin.git</connection>
41
- <url>https://github.com/killbill/killbill-orbital-plugin/</url>
42
- <developerConnection>scm:git:git@github.com:killbill/killbill-orbital-plugin.git</developerConnection>
43
- </scm>
44
- </project>
data/release.sh DELETED
@@ -1,61 +0,0 @@
1
- set -e
2
-
3
- BUNDLE=${BUNDLE-"bundle exec"}
4
- MVN=${MVN-"mvn"}
5
-
6
- if [ 'GNU' != "$(tar --help | grep GNU | head -1 | awk '{print $1}')" ]; then
7
- echo 'Unable to release: make sure to use GNU tar'
8
- exit 1
9
- fi
10
-
11
- if $(ruby -e'require "java"'); then
12
- # Good
13
- echo 'Detected JRuby'
14
- else
15
- echo 'Unable to release: make sure to use JRuby'
16
- exit 1
17
- fi
18
-
19
- VERSION=`grep -E '<version>([0-9]+\.[0-9]+\.[0-9]+)</version>' pom.xml | sed 's/[\t \n]*<version>\(.*\)<\/version>[\t \n]*/\1/'`
20
- if [[ -z "$NO_RELEASE" && "$VERSION" != "$(cat $PWD/VERSION)" ]]; then
21
- echo 'Unable to release: make sure the versions in pom.xml and VERSION match'
22
- exit 1
23
- fi
24
-
25
- echo 'Cleaning up'
26
- $BUNDLE rake killbill:clean
27
-
28
- echo 'Building gem'
29
- $BUNDLE rake build
30
-
31
- if [[ -z "$NO_RELEASE" ]]; then
32
- echo 'Pushing the gem to Rubygems'
33
- $BUNDLE rake release
34
- fi
35
-
36
- echo 'Building artifact'
37
- $BUNDLE rake killbill:package
38
-
39
- ARTIFACT="$PWD/pkg/killbill-orbital-$VERSION.tar.gz"
40
- echo "Pushing $ARTIFACT to Maven Central"
41
-
42
- if [[ -z "$NO_RELEASE" ]]; then
43
- GOAL=gpg:sign-and-deploy-file
44
- REPOSITORY_ID=ossrh-releases
45
- URL=https://oss.sonatype.org/service/local/staging/deploy/maven2/
46
- else
47
- GOAL=deploy:deploy-file
48
- REPOSITORY_ID=sonatype-nexus-snapshots
49
- URL=https://oss.sonatype.org/content/repositories/snapshots/
50
- VERSION="$VERSION-SNAPSHOT"
51
- fi
52
-
53
- $MVN $GOAL \
54
- -DgroupId=org.kill-bill.billing.plugin.ruby \
55
- -DartifactId=orbital-plugin \
56
- -Dversion=$VERSION \
57
- -Dpackaging=tar.gz \
58
- -DrepositoryId=$REPOSITORY_ID \
59
- -Durl=$URL \
60
- -Dfile=$ARTIFACT \
61
- -DpomFile=pom.xml