tap/app/jobs/tab_api_job.rb
2017-01-18 21:56:45 +01:00

33 lines
885 B
Ruby

TabApiJob = Struct.new(:order_id) do
def perform(*args)
order = Order.find_by(id: order_id)
if order && !order.transaction_id
body = {
transaction: {
debtor: order.user.name,
cents: order.price_cents,
message: order.to_sentence,
id_at_client: order.id
}
}
headers = {
"Authorization" => "Token token=#{Rails.application.secrets.tab_api_key}",
'Accept' => 'application/json'
}
result = HTTParty.post(File.join(Rails.application.config.api_url, "transactions"), body: body, headers: headers )
order.update_attribute(:transaction_id, JSON.parse(result.body)["id"].to_i)
end
end
def headers
{
"Authorization" => "Token token=#{Rails.application.secrets.tab_api_key}"
}
end
def error(job, exception)
Airbrake.notify(exception)
end
end