mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
ba75a44eb8
* Adopt Laravel coding style The Laravel framework adopts the PSR-2 coding style with some additions. Laravel apps *should* adopt this coding style as well. However, Shift allows you to customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config to your project. You may use [Shift's .php_cs][2] file as a base. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200 * Shift bindings PHP 5.5.9+ adds the new static `class` property which provides the fully qualified class name. This is preferred over using class name strings as these references are checked by the parser. * Shift core files * Shift to Throwable * Add laravel/ui dependency * Unindent vendor mail templates * Shift config files * Default config files In an effort to make upgrading the constantly changing config files easier, Shift defaulted them so you can review the commit diff for changes. Moving forward, you should use ENV variables or create a separate config file to allow the core config files to remain automatically upgradeable. * Shift Laravel dependencies * Shift cleanup * Upgrade to Laravel 7 Co-authored-by: Laravel Shift <shift@laravelshift.com>
165 lines
4.3 KiB
PHP
165 lines
4.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
use App\Events\Payment\Methods\MethodDeleted;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\ClientPortal\CreatePaymentMethodRequest;
|
|
use App\Models\ClientGatewayToken;
|
|
use App\Models\CompanyGateway;
|
|
use App\Models\GatewayType;
|
|
use App\PaymentDrivers\AuthorizePaymentDriver;
|
|
use App\Utils\Ninja;
|
|
use App\Utils\Traits\MakesDates;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class PaymentMethodController extends Controller
|
|
{
|
|
use MakesDates;
|
|
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
*/
|
|
public function index()
|
|
{
|
|
return $this->render('payment_methods.index');
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new resource.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function create(CreatePaymentMethodRequest $request)
|
|
{
|
|
$gateway = $this->getClientGateway();
|
|
|
|
$data['gateway'] = $gateway;
|
|
|
|
return $gateway
|
|
->driver(auth()->user()->client)
|
|
->setPaymentMethod($request->query('method'))
|
|
->authorizeView($data);
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
$gateway = $this->getClientGateway();
|
|
|
|
return $gateway
|
|
->driver(auth()->user()->client)
|
|
->setPaymentMethod($request->query('method'))
|
|
->authorizeResponse($request);
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param ClientGatewayToken $payment_method
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
*/
|
|
public function show(ClientGatewayToken $payment_method)
|
|
{
|
|
return $this->render('payment_methods.show', [
|
|
'payment_method' => $payment_method,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param int $id
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit($id)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param int $id
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(Request $request, $id)
|
|
{
|
|
//
|
|
}
|
|
|
|
public function verify(ClientGatewayToken $payment_method)
|
|
{
|
|
$gateway = $this->getClientGateway();
|
|
|
|
return $gateway
|
|
->driver(auth()->user()->client)
|
|
->setPaymentMethod(request()->query('method'))
|
|
->verificationView($payment_method);
|
|
}
|
|
|
|
public function processVerification(ClientGatewaytoken $payment_method)
|
|
{
|
|
$gateway = $this->getClientGateway();
|
|
|
|
return $gateway
|
|
->driver(auth()->user()->client)
|
|
->setPaymentMethod(request()->query('method'))
|
|
->processVerification($payment_method);
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param ClientGatewayToken $payment_method
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function destroy(ClientGatewayToken $payment_method)
|
|
{
|
|
try {
|
|
event(new MethodDeleted($payment_method, auth('contact')->user()->company, Ninja::eventVars()));
|
|
$payment_method->delete();
|
|
} catch (\Exception $e) {
|
|
Log::error(json_encode($e));
|
|
|
|
return back();
|
|
}
|
|
|
|
return redirect()
|
|
->route('client.payment_methods.index')
|
|
->withSuccess('Payment method has been successfully removed.');
|
|
}
|
|
|
|
private function getClientGateway()
|
|
{
|
|
if (request()->query('method') == GatewayType::CREDIT_CARD) {
|
|
return $gateway = auth()->user()->client->getCreditCardGateway();
|
|
}
|
|
|
|
if (request()->query('method') == GatewayType::BANK_TRANSFER) {
|
|
return $gateway = auth()->user()->client->getBankTransferGateway();
|
|
}
|
|
|
|
return abort(404);
|
|
}
|
|
}
|