refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
50
app/Services/Instance/AuditLog/LogAccountAction.php
Normal file
50
app/Services/Instance/AuditLog/LogAccountAction.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services\Instance\AuditLog;
|
||||
|
||||
use App\Services\BaseService;
|
||||
use App\Models\Instance\AuditLog;
|
||||
|
||||
class LogAccountAction extends BaseService
|
||||
{
|
||||
/**
|
||||
* Get the validation rules that apply to the service.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'account_id' => 'required|integer|exists:accounts,id',
|
||||
'author_id' => 'required|integer|exists:users,id',
|
||||
'about_contact_id' => 'nullable|integer|exists:contacts,id',
|
||||
'author_name' => 'required|string|max:255',
|
||||
'audited_at' => 'required|date',
|
||||
'action' => 'required|string|max:255',
|
||||
'should_appear_on_dashboard' => 'nullable|boolean',
|
||||
'objects' => 'required|json',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Log an action that happened in an account.
|
||||
*
|
||||
* @param array $data
|
||||
* @return AuditLog
|
||||
*/
|
||||
public function execute(array $data): AuditLog
|
||||
{
|
||||
$this->validate($data);
|
||||
|
||||
return AuditLog::create([
|
||||
'account_id' => $data['account_id'],
|
||||
'author_id' => $data['author_id'],
|
||||
'about_contact_id' => $this->nullOrValue($data, 'about_contact_id'),
|
||||
'author_name' => $data['author_name'],
|
||||
'audited_at' => $data['audited_at'],
|
||||
'action' => $data['action'],
|
||||
'objects' => $data['objects'],
|
||||
'should_appear_on_dashboard' => $this->valueOrFalse($data, 'should_appear_on_dashboard'),
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user