1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Repositories/ActivityRepository.php

89 lines
2.5 KiB
PHP
Raw Normal View History

2019-04-21 14:24:26 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2019-04-21 14:24:26 +02:00
namespace App\Repositories;
use App\Libraries\MultiDB;
2019-04-21 14:24:26 +02:00
use App\Models\Activity;
use App\Models\Backup;
use App\Models\Client;
use App\Models\Invoice;
use App\Models\User;
use App\Utils\Traits\MakesInvoiceHtml;
2019-07-08 07:54:46 +02:00
use Illuminate\Support\Facades\Log;
2019-04-21 14:24:26 +02:00
2019-05-13 08:18:46 +02:00
/**
* Class for activity repository.
*/
2019-04-21 14:24:26 +02:00
class ActivityRepository extends BaseRepository
{
use MakesInvoiceHtml;
/**
* Save the Activity
*
* @param stdClass $fields The fields
* @param Collection $entity The entity that you wish to have backed up (typically Invoice, Quote etc etc rather than Payment)
*/
public function save($fields, $entity, $db = null)
{
if($db)
MultiDB::setDB($db);
$activity = new Activity();
$activity->is_system = app()->runningInConsole();
2019-04-21 14:24:26 +02:00
$activity->ip = request()->getClientIp();
foreach ($fields as $key => $value) {
$activity->{$key} = $value;
2019-04-21 14:24:26 +02:00
}
$activity->save();
$this->createBackup($entity, $activity);
}
/**
* Creates a backup.
*
* @param Collection $entity The entity
* @param Collection $activity The activity
*/
public function createBackup($entity, $activity)
{
$backup = new Backup();
// if(get_class($entity) == Client::class)
// $settings = $entity->getMergedSettings();
// else
// $settings = $entity->client->getMergedSettings();
// $entity->clientMergedDettings = $settings;
if (get_class($entity) == Client::class) {
$entity->load('company');
} elseif (get_class($entity) == User::class) {
} else {
$entity->load('company', 'client');
}
if (get_class($entity) == Invoice::class && ($activity->activity_type_id == Activity::MARK_SENT_INVOICE || $activity->activity_type_id == Activity::PAID_INVOICE)) {
//$backup->html_backup = $this->generateInvoiceHtml($entity->design(), $entity);
$backup->html_backup = $this->generateEntityHtml($entity->getEntityDesigner(), $entity);
}
2019-04-21 14:24:26 +02:00
$backup->activity_id = $activity->id;
$backup->json_backup = $entity->toJson();
$backup->save();
}
}