refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s

This commit is contained in:
Kroonk
2026-05-22 16:19:55 +02:00
parent 38cc4c09ca
commit a213a1dba0
2215 changed files with 242567 additions and 6015 deletions

View File

@@ -0,0 +1,46 @@
<?php
namespace App\Services\Contact\Document;
use App\Services\BaseService;
use App\Models\Contact\Document;
use Illuminate\Support\Facades\Storage;
class DestroyDocument extends BaseService
{
/**
* Get the validation rules that apply to the service.
*
* @return array
*/
public function rules()
{
return [
'account_id' => 'required|integer|exists:accounts,id',
'document_id' => 'required|integer',
];
}
/**
* Destroy a document.
*
* @param array $data
* @return bool
*/
public function execute(array $data): bool
{
$this->validate($data);
$document = Document::where('account_id', $data['account_id'])
->findOrFail($data['document_id']);
// Delete the physical document
// Throws FileNotFoundException
Storage::delete($document->new_filename);
// Delete the object in the DB
$document->delete();
return true;
}
}

View File

@@ -0,0 +1,79 @@
<?php
namespace App\Services\Contact\Document;
use App\Services\BaseService;
use App\Helpers\AccountHelper;
use App\Models\Account\Account;
use App\Models\Contact\Contact;
use App\Models\Contact\Document;
class UploadDocument extends BaseService
{
/**
* Get the validation rules that apply to the service.
*
* @return array
*/
public function rules()
{
return [
'account_id' => 'required|integer|exists:accounts,id',
'contact_id' => 'required|integer',
'document' => 'required|file',
];
}
/**
* Upload a document.
*
* @param array $data
* @return Document
*/
public function execute(array $data): Document
{
$this->validate($data);
$account = Account::find($data['account_id']);
if (AccountHelper::hasLimitations($account)) {
abort(402);
}
$contact = Contact::where('account_id', $data['account_id'])
->findOrFail($data['contact_id']);
$contact->throwInactive();
$array = $this->populateData($data);
return Document::create($array);
}
/**
* Create an array with the necessary fields to create the document object.
*
* @return array
*/
private function populateData($data)
{
$document = $data['document'];
$data = [
'account_id' => $data['account_id'],
'contact_id' => $data['contact_id'],
'original_filename' => $document->getClientOriginalName(),
'filesize' => $document->getSize(),
'type' => $document->guessClientExtension(),
'mime_type' => (new \Mimey\MimeTypes)->getMimeType($document->guessClientExtension()),
];
$filename = $document->store('documents', [
'disk' => config('filesystems.default'),
'visibility' => config('filesystems.default_visibility'),
]);
return array_merge($data, [
'new_filename' => $filename,
]);
}
}