Refactor system logger to enable multidb

This commit is contained in:
David Bomba 2021-05-19 11:12:23 +10:00
parent 8534778308
commit 52c3d63349
21 changed files with 84 additions and 45 deletions

View File

@ -23,6 +23,7 @@ use App\Libraries\MultiDB;
use App\Libraries\OAuth\OAuth; use App\Libraries\OAuth\OAuth;
use App\Libraries\OAuth\Providers\Google; use App\Libraries\OAuth\Providers\Google;
use App\Models\Client; use App\Models\Client;
use App\Models\Company;
use App\Models\CompanyToken; use App\Models\CompanyToken;
use App\Models\CompanyUser; use App\Models\CompanyUser;
use App\Models\SystemLog; use App\Models\SystemLog;
@ -236,11 +237,12 @@ class LoginController extends BaseController
->batch(); ->batch();
SystemLogger::dispatch( SystemLogger::dispatch(
request()->getClientIp(), json_encode(['id' => request()->getClientIp()]),
SystemLog::CATEGORY_SECURITY, SystemLog::CATEGORY_SECURITY,
SystemLog::EVENT_USER, SystemLog::EVENT_USER,
SystemLog::TYPE_LOGIN_FAILURE, SystemLog::TYPE_LOGIN_FAILURE,
Client::first(), null,
Company::first(),
); );
$this->incrementLoginAttempts($request); $this->incrementLoginAttempts($request);

View File

@ -290,7 +290,8 @@ class PaymentController extends Controller
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_ERROR, SystemLog::EVENT_GATEWAY_ERROR,
SystemLog::TYPE_FAILURE, SystemLog::TYPE_FAILURE,
auth('contact')->user()->client auth('contact')->user()->client,
auth('contact')->user()->client->company
); );
throw new PaymentFailed($e->getMessage()); throw new PaymentFailed($e->getMessage());

View File

@ -125,7 +125,13 @@ class PostMarkController extends BaseController
$this->invitation->email_status = 'delivered'; $this->invitation->email_status = 'delivered';
$this->invitation->save(); $this->invitation->save();
SystemLogger::dispatch($request->all(), SystemLog::CATEGORY_MAIL, SystemLog::EVENT_MAIL_DELIVERY, SystemLog::TYPE_WEBHOOK_RESPONSE, $this->invitation->contact->client); SystemLogger::dispatch($request->all(),
SystemLog::CATEGORY_MAIL,
SystemLog::EVENT_MAIL_DELIVERY,
SystemLog::TYPE_WEBHOOK_RESPONSE,
$this->invitation->contact->client,
$this->invitation->company
);
} }
// { // {
@ -167,7 +173,7 @@ class PostMarkController extends BaseController
LightLogs::create($bounce)->batch(); LightLogs::create($bounce)->batch();
SystemLogger::dispatch($request->all(), SystemLog::CATEGORY_MAIL, SystemLog::EVENT_MAIL_BOUNCED, SystemLog::TYPE_WEBHOOK_RESPONSE, $this->invitation->contact->client); SystemLogger::dispatch($request->all(), SystemLog::CATEGORY_MAIL, SystemLog::EVENT_MAIL_BOUNCED, SystemLog::TYPE_WEBHOOK_RESPONSE, $this->invitation->contact->client, $this->invitation->company);
} }
// { // {
@ -209,7 +215,7 @@ class PostMarkController extends BaseController
LightLogs::create($bounce)->batch(); LightLogs::create($bounce)->batch();
SystemLogger::dispatch($request->all(), SystemLog::CATEGORY_MAIL, SystemLog::EVENT_MAIL_SPAM_COMPLAINT, SystemLog::TYPE_WEBHOOK_RESPONSE, $this->invitation->contact->client); SystemLogger::dispatch($request->all(), SystemLog::CATEGORY_MAIL, SystemLog::EVENT_MAIL_SPAM_COMPLAINT, SystemLog::TYPE_WEBHOOK_RESPONSE, $this->invitation->contact->client, $this->invitation->company);
} }
private function discoverInvitation($message_id) private function discoverInvitation($message_id)

View File

@ -222,7 +222,8 @@ class NinjaMailerJob implements ShouldQueue
SystemLog::CATEGORY_MAIL, SystemLog::CATEGORY_MAIL,
SystemLog::EVENT_MAIL_SEND, SystemLog::EVENT_MAIL_SEND,
SystemLog::TYPE_FAILURE, SystemLog::TYPE_FAILURE,
$recipient_object $recipient_object,
$this->nmo->company
); );
} }

View File

@ -11,7 +11,9 @@
namespace App\Jobs\Util; namespace App\Jobs\Util;
use App\Libraries\MultiDB;
use App\Models\Client; use App\Models\Client;
use App\Models\Company;
use App\Models\SystemLog; use App\Models\SystemLog;
use Illuminate\Bus\Queueable; use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Contracts\Queue\ShouldQueue;
@ -33,7 +35,9 @@ class SystemLogger implements ShouldQueue
protected $client; protected $client;
public function __construct($log, $category_id, $event_id, $type_id, ?Client $client) protected $company;
public function __construct($log, $category_id, $event_id, $type_id, ?Client $client, Company $company)
{ {
$this->log = $log; $this->log = $log;
$this->category_id = $category_id; $this->category_id = $category_id;
@ -44,13 +48,16 @@ class SystemLogger implements ShouldQueue
public function handle() :void public function handle() :void
{ {
if(!$this->client)
return; MultiDB::setDb($this->company->db);
$client_id = $this->client ? $this->client->id : null;
$user_id = $this->client ? $this->client->user_id : $this->company->owner()->id;
$sl = [ $sl = [
'client_id' => $this->client->id, 'client_id' => $client_id,
'company_id' => $this->client->company->id, 'company_id' => $this->company->id,
'user_id' => $this->client->user_id, 'user_id' => $user_id,
'log' => $this->log, 'log' => $this->log,
'category_id' => $this->category_id, 'category_id' => $this->category_id,
'event_id' => $this->event_id, 'event_id' => $this->event_id,

View File

@ -123,6 +123,7 @@ class WebhookHandler implements ShouldQueue
SystemLog::EVENT_WEBHOOK_RESPONSE, SystemLog::EVENT_WEBHOOK_RESPONSE,
SystemLog::TYPE_WEBHOOK_RESPONSE, SystemLog::TYPE_WEBHOOK_RESPONSE,
$this->company->clients->first(), $this->company->clients->first(),
$this->company
); );
} }
@ -136,6 +137,7 @@ class WebhookHandler implements ShouldQueue
SystemLog::EVENT_WEBHOOK_RESPONSE, SystemLog::EVENT_WEBHOOK_RESPONSE,
SystemLog::TYPE_WEBHOOK_RESPONSE, SystemLog::TYPE_WEBHOOK_RESPONSE,
$this->company->clients->first(), $this->company->clients->first(),
$this->company,
); );
} }

View File

@ -75,6 +75,7 @@ class UpdateUserLastLogin implements ShouldQueue
SystemLog::EVENT_USER, SystemLog::EVENT_USER,
SystemLog::TYPE_LOGIN_SUCCESS, SystemLog::TYPE_LOGIN_SUCCESS,
$event->company->clients()->first(), $event->company->clients()->first(),
$event->company,
); );
} }

View File

@ -136,7 +136,7 @@ class AuthorizeCreditCard
PaymentFailureMailer::dispatch($this->authorize->client, $response->getTransactionResponse()->getTransId(), $this->authorize->client->company, $amount); PaymentFailureMailer::dispatch($this->authorize->client, $response->getTransactionResponse()->getTransId(), $this->authorize->client->company, $amount);
SystemLogger::dispatch($logger_message, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client); SystemLogger::dispatch($logger_message, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client, $this->authorize->client->company);
return false; return false;
} }
@ -192,7 +192,8 @@ class AuthorizeCreditCard
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_AUTHORIZE, SystemLog::TYPE_AUTHORIZE,
$this->authorize->client $this->authorize->client,
$this->authorize->client->company,
); );
return redirect()->route('client.payments.show', ['payment' => $this->encodePrimaryKey($payment->id)]); return redirect()->route('client.payments.show', ['payment' => $this->encodePrimaryKey($payment->id)]);

View File

@ -86,7 +86,7 @@ class RefundTransaction
'amount' => $amount, 'amount' => $amount,
]; ];
SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_AUTHORIZE, $this->authorize->client); SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_AUTHORIZE, $this->authorize->client, $this->authorize->client->company);
return $data; return $data;
@ -105,7 +105,7 @@ class RefundTransaction
'amount' => $amount, 'amount' => $amount,
]; ];
SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client); SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client, $this->authorize->client->company);
return $data; return $data;
} }
@ -125,7 +125,7 @@ class RefundTransaction
'amount' => $amount, 'amount' => $amount,
]; ];
SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client); SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client, $this->authorize->client->company);
return $data; return $data;
@ -141,7 +141,7 @@ class RefundTransaction
'amount' => $amount, 'amount' => $amount,
]; ];
SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client); SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client, $this->authorize->client->company);
return $data; return $data;
} }
@ -158,7 +158,7 @@ class RefundTransaction
'amount' => $amount, 'amount' => $amount,
]; ];
SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client); SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client, $this->authorize->client->company);
return $data; return $data;
} }
@ -173,7 +173,7 @@ class RefundTransaction
'amount' => $amount, 'amount' => $amount,
]; ];
SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client); SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_AUTHORIZE, $this->authorize->client, $this->authorize->client->company);
} }
} }

View File

@ -394,6 +394,7 @@ class BaseDriver extends AbstractPaymentDriver
SystemLog::EVENT_GATEWAY_ERROR, SystemLog::EVENT_GATEWAY_ERROR,
$gateway::SYSTEM_LOG_TYPE, $gateway::SYSTEM_LOG_TYPE,
$gateway->client, $gateway->client,
$gateway->client->company,
); );
throw new PaymentFailed($error, $e->getCode()); throw new PaymentFailed($error, $e->getCode());
@ -527,6 +528,7 @@ class BaseDriver extends AbstractPaymentDriver
SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::EVENT_GATEWAY_SUCCESS,
$gateway_const, $gateway_const,
$this->client, $this->client,
$this->client->company,
); );
} }
} }

View File

@ -149,7 +149,8 @@ class CreditCard
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_BRAINTREE, SystemLog::TYPE_BRAINTREE,
$this->braintree->client $this->braintree->client,
$this->braintree->client->company,
); );
return redirect()->route('client.payments.show', ['payment' => $this->braintree->encodePrimaryKey($payment->id)]); return redirect()->route('client.payments.show', ['payment' => $this->braintree->encodePrimaryKey($payment->id)]);
@ -179,7 +180,8 @@ class CreditCard
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_BRAINTREE, SystemLog::TYPE_BRAINTREE,
$this->braintree->client $this->braintree->client,
$this->braintree->client->company,
); );
throw new PaymentFailed($response->transaction->additionalProcessorResponse, $response->transaction->processorResponseCode); throw new PaymentFailed($response->transaction->additionalProcessorResponse, $response->transaction->processorResponseCode);

View File

@ -76,7 +76,8 @@ trait Utilities
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_CHECKOUT, SystemLog::TYPE_CHECKOUT,
$this->getParent()->client $this->getParent()->client,
$this->getParent()->client->company
); );
return redirect()->route('client.payments.show', ['payment' => $this->getParent()->encodePrimaryKey($payment->id)]); return redirect()->route('client.payments.show', ['payment' => $this->getParent()->encodePrimaryKey($payment->id)]);
@ -101,7 +102,8 @@ trait Utilities
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_CHECKOUT, SystemLog::TYPE_CHECKOUT,
$this->getParent()->client $this->getParent()->client,
$this->getParent()->client->company,
); );
if ($throw_exception) { if ($throw_exception) {

View File

@ -282,7 +282,7 @@ class CheckoutComPaymentDriver extends BaseDriver
'message' => $message, 'message' => $message,
]; ];
SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_CHECKOUT, $this->client); SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_CHECKOUT, $this->client, $this->client->company);
} }
} }

View File

@ -106,7 +106,8 @@ class PayPalExpressPaymentDriver extends BaseDriver
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_PAYPAL, SystemLog::TYPE_PAYPAL,
$this->client $this->client,
$this->client->company,
); );
throw new PaymentFailed($response->getMessage(), $response->getCode()); throw new PaymentFailed($response->getMessage(), $response->getCode());
@ -140,7 +141,8 @@ class PayPalExpressPaymentDriver extends BaseDriver
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_PAYPAL, SystemLog::TYPE_PAYPAL,
$this->client $this->client,
$this->client->company,
); );
return redirect()->route('client.payments.show', ['payment' => $this->encodePrimaryKey($payment->id)]); return redirect()->route('client.payments.show', ['payment' => $this->encodePrimaryKey($payment->id)]);
@ -162,7 +164,8 @@ class PayPalExpressPaymentDriver extends BaseDriver
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_PAYPAL, SystemLog::TYPE_PAYPAL,
$this->client $this->client,
$this->client->company,
); );
throw new PaymentFailed($response->getMessage(), $response->getCode()); throw new PaymentFailed($response->getMessage(), $response->getCode());

View File

@ -87,7 +87,8 @@ class Alipay
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_STRIPE, SystemLog::TYPE_STRIPE,
$this->stripe->client $this->stripe->client,
$this->stripe->client->company,
); );
return redirect()->route('client.payments.show', ['payment' => $this->stripe->encodePrimaryKey($payment->id)]); return redirect()->route('client.payments.show', ['payment' => $this->stripe->encodePrimaryKey($payment->id)]);
@ -116,7 +117,8 @@ class Alipay
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_STRIPE, SystemLog::TYPE_STRIPE,
$this->stripe->client $this->stripe->client,
$this->stripe->client->company,
); );
throw new PaymentFailed('Failed to process the payment.', 500); throw new PaymentFailed('Failed to process the payment.', 500);

View File

@ -79,7 +79,7 @@ class Charge
$response = $this->stripe->createPaymentIntent($data, $this->stripe->stripe_connect_auth); $response = $this->stripe->createPaymentIntent($data, $this->stripe->stripe_connect_auth);
// $response = $local_stripe->paymentIntents->create($data); // $response = $local_stripe->paymentIntents->create($data);
SystemLogger::dispatch($response, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_STRIPE, $this->stripe->client); SystemLogger::dispatch($response, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_STRIPE, $this->stripe->client, $this->stripe->client->company);
} catch (\Exception $e) { } catch (\Exception $e) {
$data =[ $data =[
@ -119,7 +119,7 @@ class Charge
$this->stripe->processInternallyFailedPayment($this->stripe, $e); $this->stripe->processInternallyFailedPayment($this->stripe, $e);
SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_STRIPE, $this->stripe->client); SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_STRIPE, $this->stripe->client, $this->stripe->client->company);
} }
if (! $response) { if (! $response) {

View File

@ -141,7 +141,8 @@ class CreditCard
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_STRIPE, SystemLog::TYPE_STRIPE,
$this->stripe->client $this->stripe->client,
$this->stripe->client->company,
); );
return redirect()->route('client.payments.show', ['payment' => $this->stripe->encodePrimaryKey($payment->id)]); return redirect()->route('client.payments.show', ['payment' => $this->stripe->encodePrimaryKey($payment->id)]);
@ -168,7 +169,8 @@ class CreditCard
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_STRIPE, SystemLog::TYPE_STRIPE,
$this->stripe->client $this->stripe->client,
$this->stripe->client->company,
); );
throw new PaymentFailed('Failed to process the payment.', 500); throw new PaymentFailed('Failed to process the payment.', 500);

View File

@ -92,7 +92,8 @@ class SOFORT
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_STRIPE, SystemLog::TYPE_STRIPE,
$this->stripe->client $this->stripe->client,
$this->stripe->client->company,
); );
return redirect()->route('client.payments.show', ['payment' => $this->stripe->encodePrimaryKey($payment->id)]); return redirect()->route('client.payments.show', ['payment' => $this->stripe->encodePrimaryKey($payment->id)]);
@ -119,7 +120,8 @@ class SOFORT
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_STRIPE, SystemLog::TYPE_STRIPE,
$this->stripe->client $this->stripe->client,
$this->stripe->client->company,
); );
throw new PaymentFailed('Failed to process the payment.', 500); throw new PaymentFailed('Failed to process the payment.', 500);

View File

@ -338,7 +338,7 @@ class StripePaymentDriver extends BaseDriver
->create(['charge' => $payment->transaction_reference, 'amount' => $this->convertToStripeAmount($amount, $this->client->currency()->precision)], $meta); ->create(['charge' => $payment->transaction_reference, 'amount' => $this->convertToStripeAmount($amount, $this->client->currency()->precision)], $meta);
if ($response->status == $response::STATUS_SUCCEEDED) { if ($response->status == $response::STATUS_SUCCEEDED) {
SystemLogger::dispatch(['server_response' => $response, 'data' => request()->all(),], SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_STRIPE, $this->client); SystemLogger::dispatch(['server_response' => $response, 'data' => request()->all(),], SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_STRIPE, $this->client, $this->client->company);
return [ return [
'transaction_reference' => $response->charge, 'transaction_reference' => $response->charge,
@ -349,7 +349,7 @@ class StripePaymentDriver extends BaseDriver
]; ];
} }
SystemLogger::dispatch(['server_response' => $response, 'data' => request()->all(),], SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_STRIPE, $this->client); SystemLogger::dispatch(['server_response' => $response, 'data' => request()->all(),], SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_STRIPE, $this->client, $this->client->company);
return [ return [
'transaction_reference' => null, 'transaction_reference' => null,
@ -359,7 +359,7 @@ class StripePaymentDriver extends BaseDriver
'code' => 422, 'code' => 422,
]; ];
} catch (Exception $e) { } catch (Exception $e) {
SystemLogger::dispatch(['server_response' => $response, 'data' => request()->all(),], SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_STRIPE, $this->client); SystemLogger::dispatch(['server_response' => $response, 'data' => request()->all(),], SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_STRIPE, $this->client, $this->client->company);
nlog($e->getMessage()); nlog($e->getMessage());
@ -426,7 +426,7 @@ class StripePaymentDriver extends BaseDriver
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_STRIPE, SystemLog::TYPE_STRIPE,
$this->client); $this->client, $this->client->company);
} }
} }
@ -459,7 +459,7 @@ class StripePaymentDriver extends BaseDriver
SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_STRIPE, SystemLog::TYPE_STRIPE,
$this->client); $this->client, $this->client->company);
} }
} }

View File

@ -664,7 +664,8 @@ class SubscriptionService
SystemLog::CATEGORY_WEBHOOK, SystemLog::CATEGORY_WEBHOOK,
SystemLog::EVENT_WEBHOOK_RESPONSE, SystemLog::EVENT_WEBHOOK_RESPONSE,
SystemLog::TYPE_WEBHOOK_RESPONSE, SystemLog::TYPE_WEBHOOK_RESPONSE,
$client, $client,
$client->company,
); );
return $response; return $response;

View File

@ -125,7 +125,8 @@ class Phantom
SystemLog::CATEGORY_PDF, SystemLog::CATEGORY_PDF,
SystemLog::EVENT_PDF_RESPONSE, SystemLog::EVENT_PDF_RESPONSE,
SystemLog::TYPE_PDF_FAILURE, SystemLog::TYPE_PDF_FAILURE,
$invitation->contact->client $invitation->contact->client,
$invitation->company,
); );
throw new PhantomPDFFailure('There was an error generating the PDF with Phantom JS'); throw new PhantomPDFFailure('There was an error generating the PDF with Phantom JS');
@ -137,7 +138,8 @@ class Phantom
SystemLog::CATEGORY_PDF, SystemLog::CATEGORY_PDF,
SystemLog::EVENT_PDF_RESPONSE, SystemLog::EVENT_PDF_RESPONSE,
SystemLog::TYPE_PDF_SUCCESS, SystemLog::TYPE_PDF_SUCCESS,
$invitation->contact->client $invitation->contact->client,
$invitation->company,
); );
} }