fixed omnipay

This commit is contained in:
denisdulici 2019-12-21 13:05:33 +03:00
parent 408c5125ed
commit 4af8557a9e
4 changed files with 67 additions and 33 deletions

View File

@ -2,9 +2,9 @@
namespace App\Abstracts\Http;
use App\Events\Income\PaymentReceived;
use App\Http\Requests\Portal\InvoicePayment as PaymentRequest;
use App\Models\Income\Invoice;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Support\Facades\URL;
use Monolog\Logger;
@ -169,7 +169,7 @@ abstract class PaymentController extends BaseController
$request['payment_method'] = $this->alias;
$request['reference'] = $this->getReference($invoice);
event(new \App\Events\Income\PaymentReceived($invoice, $request));
event(new PaymentReceived($invoice, $request));
}
public function setReference($invoice, $reference)

View File

@ -2,18 +2,11 @@
namespace App\Traits;
use Omnipay\Omnipay as Library;
trait Omnipay
{
use Library;
public $gateway;
public function create($name)
{
$this->gateway = Library::create($name);
}
public $factory;
public function authorize($invoice, $request, $extra_options = [])
{
@ -156,4 +149,42 @@ trait Omnipay
'data' => false,
]);
}
public function all()
{
return $this->callFactory('all');
}
public function replace($gateways)
{
return $this->callFactory('replace', [$gateways]);
}
public function register($class_name)
{
return $this->callFactory('register', [$class_name]);
}
public function create($class, $http_client = null, $http_request = null)
{
$this->gateway = $this->callFactory('create', [$class, $http_client, $http_request]);
return $this->gateway;
}
public function callFactory($method, $parameters = [])
{
$factory = $this->getFactory();
return call_user_func_array(array($factory, $method), (array) $parameters);
}
public function getFactory()
{
if (is_null($this->factory)) {
$this->factory = new \Omnipay\Common\GatewayFactory();
}
return $this->factory;
}
}

View File

@ -1,4 +1,5 @@
<div class="d-none">
<div>
<div class="d-none">
@if (!empty($setting['name']))
<h2>{{ $setting['name'] }}</h2>
@endif
@ -6,10 +7,10 @@
@if (!empty($setting['description']))
<div class="well well-sm">{{ $setting['description'] }}</div>
@endif
</div>
<br>
</div>
<br>
<div class="buttons">
<div class="buttons">
<div class="pull-right">
{!! Form::open([
'url' => $confirm_url,
@ -23,4 +24,5 @@
</button>
{!! Form::close() !!}
</div>
</div>
</div>

View File

@ -1,3 +1,4 @@
<div>
<div class="d-none">
@if (!empty($setting['name']))
<h2>{{ $setting['name'] }}</h2>
@ -24,4 +25,4 @@
{!! Form::close() !!}
</div>
</div>
</div>