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

153 lines
4.6 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-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;
use App\Jobs\Mail\PaymentFailureMailer;
use Illuminate\Mail\Mailables\Address;
use App\Services\Email\EmailObject;
use App\Services\Email\Email;
use Illuminate\Support\Facades\App;
2024-09-05 02:39:32 +02:00
use App\Models\Invoice;
2024-09-02 09:59:12 +02:00
class Blockonomics implements MethodInterface
{
use MakesHash;
public $driver_class;
public function __construct(BlockonomicsPaymentDriver $driver_class)
{
$this->driver_class = $driver_class;
$this->driver_class->init();
2024-09-05 02:39:32 +02:00
// TODO: set invoice_id
$this->invoice_id = "123";
2024-09-02 09:59:12 +02:00
}
2024-09-02 10:24:29 +02:00
public function authorizeView($data)
{
}
public function authorizeRequest($request)
{
}
public function authorizeResponse($request)
{
}
2024-09-05 02:49:46 +02:00
public function getBTCAddress()
{
$api_key = $this->driver_class->api_key;
$url = 'https://www.blockonomics.co/api/new_address';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
$header = "Authorization: Bearer " . $api_key;
$headers = array();
$headers[] = $header;
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$contents = curl_exec($ch);
if (curl_errno($ch)) {
echo "Error:" . curl_error($ch);
}
$responseObj = json_decode($contents);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close ($ch);
if ($status == 200) {
return $responseObj->address;
} else {
echo "ERROR: " . $status . ' ' . $responseObj->message;
}
return "Something went wrong";
}
2024-09-05 02:39:32 +02:00
public function getBTCPrice()
{
$currency_code = $this->driver_class->client->getCurrencyCode();
$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)
{
$data['gateway'] = $this->driver_class;
$data['amount'] = $data['total']['amount_with_fee'];
$data['currency'] = $this->driver_class->client->getCurrencyCode();
2024-09-05 02:39:32 +02:00
$btc_amount = $data['amount'] / $this->getBTCPrice();
$data['btc_amount'] = round($btc_amount, 10);
2024-09-05 02:49:46 +02:00
$data['btc_address'] = $this->getBTCAddress();
2024-09-05 02:39:32 +02:00
$data['invoice_id'] = $this->invoice_id;
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'],
]);
$drv = $this->driver_class;
if (
2024-09-04 04:50:08 +02:00
strlen($drv->api_key) < 1 ||
strlen($drv->callback_secret) < 1 ||
strlen($drv->callback_url) < 1
2024-09-02 09:59:12 +02:00
) {
throw new PaymentFailed('Blockonomics is not well configured');
}
try {
2024-09-04 04:50:08 +02:00
// $data = [
// 'payment_method' => '',
// 'payment_type' => PaymentType::CRYPTO,
// 'amount' => 200,
// 'transaction_reference' => 123,
// 'gateway_type_id' => GatewayType::CRYPTO,
// ];
// $payment = $this->createPayment($data, Payment::STATUS_COMPLETED);
return redirect()->route('client.payments.show', ['payment' => $this->encodePrimaryKey(6)]);
2024-09-02 09:59:12 +02:00
} catch (\Throwable $e) {
PaymentFailureMailer::dispatch($drv->client, $drv->payment_hash->data, $drv->client->company, $request->amount);
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)
{
}
}