1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Http/Controllers/StripeController.php

90 lines
2.7 KiB
PHP
Raw Normal View History

2021-05-17 06:02:43 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2021-05-17 06:02:43 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2021-05-17 06:02:43 +02:00
*/
namespace App\Http\Controllers;
use App\Jobs\Util\ImportStripeCustomers;
2021-05-17 06:02:43 +02:00
use App\Jobs\Util\StripeUpdatePaymentMethods;
2021-09-02 04:08:16 +02:00
use App\Libraries\MultiDB;
2021-08-15 07:49:36 +02:00
use App\Models\Client;
2021-08-15 07:13:20 +02:00
use App\Models\CompanyGateway;
2021-10-09 09:07:05 +02:00
use App\Utils\Traits\MakesHash;
2021-05-17 06:02:43 +02:00
class StripeController extends BaseController
{
use MakesHash;
2021-05-17 06:02:43 +02:00
2021-08-15 07:13:20 +02:00
private $stripe_keys = ['d14dd26a47cecc30fdd65700bfb67b34', 'd14dd26a37cecc30fdd65700bfb55b23'];
public function update()
{
2023-08-04 10:13:26 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
if ($user->isAdmin()) {
StripeUpdatePaymentMethods::dispatch($user->company());
2021-05-17 06:02:43 +02:00
return response()->json(['message' => 'Processing'], 200);
}
2021-05-17 06:02:43 +02:00
return response()->json(['message' => 'Unauthorized'], 403);
}
2021-05-17 06:02:43 +02:00
public function import()
{
2023-08-04 10:13:26 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
2023-08-04 10:13:26 +02:00
if ($user->isAdmin()) {
ImportStripeCustomers::dispatch($user->company());
2021-07-09 02:44:34 +02:00
return response()->json(['message' => 'Processing'], 200);
}
2021-07-09 02:44:34 +02:00
return response()->json(['message' => 'Unauthorized'], 403);
}
public function verify()
{
2023-08-04 10:13:26 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
if ($user->isAdmin()) {
MultiDB::findAndSetDbByCompanyKey($user->company()->company_key);
2023-08-04 10:13:26 +02:00
/** @var \App\Models\CompanyGateway $company_gateway */
$company_gateway = CompanyGateway::where('company_id', $user->company()->id)
->where('is_deleted', 0)
->whereIn('gateway_key', $this->stripe_keys)
->first();
2021-05-17 06:02:43 +02:00
return $company_gateway->driver(new Client)->verifyConnect();
}
2021-08-15 07:13:20 +02:00
return response()->json(['message' => 'Unauthorized'], 403);
}
2021-08-15 07:13:20 +02:00
public function disconnect(string $company_gateway_id)
{
2023-08-04 10:13:26 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
/** @var \App\Models\CompanyGateway $company_gateway */
$company_gateway = CompanyGateway::where('company_id', $user->company()->id)
->where('id', $this->decodePrimaryKey($company_gateway_id))
->whereIn('gateway_key', $this->stripe_keys)
->firstOrFail();
2021-08-15 07:13:20 +02:00
return $company_gateway->driver()->disconnect();
}
}