1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-15 07:33:04 +01:00
invoiceninja/app/PaymentDrivers/Blockonomics/Blockonomics.php

140 lines
4.7 KiB
PHP
Raw Normal View History

2024-09-02 09:59:12 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\PaymentDrivers\Blockonomics;
use App\Models\Payment;
2024-09-04 04:50:08 +02:00
use App\Models\PaymentType;
use App\Models\GatewayType;
2024-09-06 06:02:18 +02:00
use App\Models\SystemLog;
2024-09-02 09:59:12 +02:00
use App\PaymentDrivers\BlockonomicsPaymentDriver;
use App\Utils\Traits\MakesHash;
use App\PaymentDrivers\Common\MethodInterface;
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
use App\Exceptions\PaymentFailed;
2024-09-06 06:02:18 +02:00
use App\Jobs\Util\SystemLogger;
2024-09-02 09:59:12 +02:00
use App\Jobs\Mail\PaymentFailureMailer;
2024-09-16 01:30:05 +02:00
use Illuminate\Support\Facades\Http;
2024-09-02 09:59:12 +02:00
class Blockonomics implements MethodInterface
{
use MakesHash;
2024-09-16 01:32:39 +02:00
public function __construct(public BlockonomicsPaymentDriver $blockonomics)
2024-09-02 09:59:12 +02:00
{
}
2024-09-02 10:24:29 +02:00
public function authorizeView($data)
{
}
public function authorizeRequest($request)
{
}
2024-09-16 01:32:39 +02:00
2024-09-02 10:24:29 +02:00
public function authorizeResponse($request)
{
}
2024-09-05 07:29:16 +02:00
2024-09-16 01:32:39 +02:00
public function getBTCAddress(): string
2024-09-05 02:49:46 +02:00
{
2024-09-06 04:40:59 +02:00
$api_key = $this->blockonomics->api_key;
2024-09-05 07:29:16 +02:00
// TODO: remove ?reset=1 before marking PR as ready
$url = 'https://www.blockonomics.co/api/new_address?reset=1';
2024-09-05 02:49:46 +02:00
2024-09-16 01:30:05 +02:00
$r = Http::withToken($api_key)
->post($url, []);
2024-09-05 02:49:46 +02:00
2024-09-16 01:30:05 +02:00
if($r->successful())
return $r->object()->address ?? 'Something went wrong';
2024-09-05 02:49:46 +02:00
2024-09-16 01:30:05 +02:00
return $r->object()->message ?? 'Something went wrong';
2024-09-05 02:49:46 +02:00
}
2024-09-05 02:39:32 +02:00
public function getBTCPrice()
{
$currency_code = $this->blockonomics->client->getCurrencyCode();
2024-09-05 02:39:32 +02:00
$BLOCKONOMICS_BASE_URL = 'https://www.blockonomics.co';
$BLOCKONOMICS_PRICE_URL = $BLOCKONOMICS_BASE_URL . '/api/price?currency=';
$response = file_get_contents($BLOCKONOMICS_PRICE_URL . $currency_code);
$data = json_decode($response, true);
// TODO: handle error
return $data['price'];
}
2024-09-02 09:59:12 +02:00
public function paymentView($data)
{
2024-09-13 05:26:22 +02:00
$btc_price = $this->getBTCPrice();
$btc_address = $this->getBTCAddress();
$fiat_amount = $data['total']['amount_with_fee'];
$btc_amount = $fiat_amount / $btc_price;
2024-09-06 06:02:18 +02:00
$_invoice = collect($this->blockonomics->payment_hash->data->invoices)->first();
$data['gateway'] = $this->blockonomics;
2024-09-13 05:26:22 +02:00
$data['company_gateway_id'] = $this->blockonomics->getCompanyGatewayId();
$data['amount'] = $fiat_amount;
$data['currency'] = $this->blockonomics->client->getCurrencyCode();
2024-09-06 02:52:21 +02:00
$data['btc_amount'] = number_format($btc_amount, 10, '.', '');
$data['btc_address'] = $btc_address;
$data['btc_price'] = $btc_price;
2024-09-06 06:02:18 +02:00
$data['invoice_number'] = $_invoice->invoice_number;
2024-09-02 09:59:12 +02:00
return render('gateways.blockonomics.pay', $data);
}
public function paymentResponse(PaymentResponseRequest $request)
{
$request->validate([
'payment_hash' => ['required'],
'amount' => ['required'],
'currency' => ['required'],
2024-09-13 05:26:22 +02:00
'txid' => ['required'],
'payment_method_id' => ['required'],
2024-09-02 09:59:12 +02:00
]);
try {
2024-09-06 06:02:18 +02:00
$data = [];
2024-09-13 05:26:22 +02:00
$fiat_amount = $request->btc_price * $request->btc_amount;
$data['amount'] = $fiat_amount;
$data['currency'] = $request->currency;
2024-09-06 06:02:18 +02:00
$data['payment_method_id'] = $request->payment_method_id;
$data['payment_type'] = PaymentType::CRYPTO;
$data['gateway_type_id'] = GatewayType::CRYPTO;
2024-09-13 05:26:22 +02:00
$data['transaction_reference'] = "payment hash: " . $request->payment_hash . " txid: " . $request->txid . " BTC amount: " . $request->btc_amount;
2024-09-06 06:02:18 +02:00
2024-09-08 13:24:13 +02:00
$statusId = Payment::STATUS_PENDING;
$payment = $this->blockonomics->createPayment($data, $statusId);
2024-09-06 06:02:18 +02:00
SystemLogger::dispatch(
['response' => $payment, 'data' => $data],
SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_BLOCKONOMICS,
$this->blockonomics->client,
$this->blockonomics->client->company,
);
2024-09-16 01:32:39 +02:00
return redirect()->route('client.payments.show', ['payment' => $payment->hashed_id]);
2024-09-02 09:59:12 +02:00
} catch (\Throwable $e) {
$blockonomics = $this->blockonomics;
PaymentFailureMailer::dispatch($blockonomics->client, $blockonomics->payment_hash->data, $blockonomics->client->company, $request->amount);
2024-09-02 09:59:12 +02:00
throw new PaymentFailed('Error during Blockonomics payment : ' . $e->getMessage());
}
}
// Not supported yet
2024-09-02 09:59:12 +02:00
public function refund(Payment $payment, $amount)
{
}
}