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:
85
app/Http/Controllers/Contacts/DocumentsController.php
Normal file
85
app/Http/Controllers/Contacts/DocumentsController.php
Normal file
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Contacts;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\Contact\Contact;
|
||||
use App\Models\Contact\Document;
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Traits\JsonRespondController;
|
||||
use App\Services\Contact\Document\UploadDocument;
|
||||
use App\Services\Contact\Document\DestroyDocument;
|
||||
use App\Http\Resources\Document\Document as DocumentResource;
|
||||
|
||||
class DocumentsController extends Controller
|
||||
{
|
||||
use JsonRespondController;
|
||||
|
||||
/**
|
||||
* Instantiate a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('limitations')->only('store');
|
||||
}
|
||||
|
||||
/**
|
||||
* Display the list of documents.
|
||||
*
|
||||
* @param Contact $contact
|
||||
* @return \Illuminate\Http\Resources\Json\AnonymousResourceCollection
|
||||
*/
|
||||
public function index(Request $request, Contact $contact)
|
||||
{
|
||||
$documents = $contact->documents()->get();
|
||||
|
||||
return DocumentResource::collection($documents);
|
||||
}
|
||||
|
||||
/**
|
||||
* Store the document.
|
||||
*
|
||||
* @param Request $request
|
||||
* @param Contact $contact
|
||||
* @return Document
|
||||
*/
|
||||
public function store(Request $request, Contact $contact): Document
|
||||
{
|
||||
$contact->throwInactive();
|
||||
|
||||
return app(UploadDocument::class)->execute([
|
||||
'account_id' => auth()->user()->account_id,
|
||||
'contact_id' => $contact->id,
|
||||
'document' => $request->document,
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete the document.
|
||||
*
|
||||
* @param Request $request
|
||||
* @param Contact $contact
|
||||
* @param Document $document
|
||||
* @return null|\Illuminate\Http\JsonResponse
|
||||
*/
|
||||
public function destroy(Request $request, Contact $contact, Document $document): ?JsonResponse
|
||||
{
|
||||
$data = [
|
||||
'account_id' => auth()->user()->account_id,
|
||||
'document_id' => $document->id,
|
||||
];
|
||||
|
||||
try {
|
||||
if (app(DestroyDocument::class)->execute($data)) {
|
||||
return $this->respondObjectDeleted($document->id);
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
return $this->respondNotFound();
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user