1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/app/Repositories/ActivityRepository.php

62 lines
1.3 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) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
2019-04-21 14:24:26 +02:00
namespace App\Repositories;
use App\Models\Activity;
use App\Models\Backup;
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
{
2019-05-13 08:18:46 +02:00
/**
* 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)
*/
2019-04-21 14:24:26 +02:00
public function save($fields, $entity)
{
$activity = new Activity();
$activity->is_system = app()->runningInConsole();
$activity->ip = request()->getClientIp();
foreach($fields as $key => $value) {
$activity->{$key} = $value;
}
$activity->save();
$this->createBackup($entity, $activity);
}
2019-05-13 08:18:46 +02:00
/**
* Creates a backup.
*
* @param Collection $entity The entity
* @param Collection $activity The activity
*/
2019-04-21 14:24:26 +02:00
public function createBackup($entity, $activity)
{
$backup = new Backup();
$backup->activity_id = $activity->id;
$backup->json_backup = $entity->toJson();
$backup->save();
}
}