2019-10-02 00:44:13 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-10-02 00:44:13 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-10-02 00:44:13 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
|
2019-10-04 08:22:22 +02:00
|
|
|
use App\Models\Client;
|
2019-10-02 00:44:13 +02:00
|
|
|
use App\Models\SystemLog;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class SystemLogTrait.
|
2019-10-02 00:44:13 +02:00
|
|
|
*/
|
|
|
|
trait SystemLogTrait
|
|
|
|
{
|
2020-10-28 11:10:49 +01:00
|
|
|
public function sysLog($log, $category_id = SystemLog::CATEGORY_GATEWAY_RESPONSE, $event_id = SystemLog::EVENT_GATEWAY_FAILURE, Client $client = null)
|
2019-12-30 22:59:12 +01:00
|
|
|
{
|
|
|
|
if ($client != null) {
|
|
|
|
$this->client = $client;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sl = [
|
|
|
|
'client_id' => $this->client->id,
|
|
|
|
'company_id' => $this->client->company->id,
|
|
|
|
'user_id' => $this->client->user_id,
|
|
|
|
'log' => $log,
|
|
|
|
'category_id' => $category_id,
|
|
|
|
'event_id' => $event_id,
|
|
|
|
];
|
|
|
|
|
|
|
|
SystemLog::create($sl);
|
|
|
|
}
|
|
|
|
}
|