blob: 301fba44c8b7f0e2ff5e3e2f1b4042e1e009a785 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
module SuperGood
module SolidusTaxJar
class API
def self.default_taxjar_client
::Taxjar::Client.new(
api_key: ENV.fetch("TAXJAR_API_KEY"),
api_url: ENV.fetch("TAXJAR_API_URL") { 'https://api.taxjar.com' } # Sandbox URL: https://api.sandbox.taxjar.com
)
end
def initialize(taxjar_client: self.class.default_taxjar_client)
@taxjar_client = taxjar_client
end
def tax_for(order)
taxjar_client.tax_for_order APIParams.order_params(order)
end
def tax_rates_for(address)
taxjar_client.rates_for_location(*APIParams.address_params(address))
end
def create_transaction_for(order)
taxjar_client.create_order APIParams.transaction_params(order)
end
private
attr_reader :taxjar_client
end
end
end
|