130 lines
4.1 KiB
PHP
130 lines
4.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api\Contact;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Models\Contact\Message;
|
|
use App\Models\Contact\Conversation;
|
|
use Illuminate\Database\QueryException;
|
|
use App\Http\Controllers\Api\ApiController;
|
|
use Illuminate\Validation\ValidationException;
|
|
use App\Services\Contact\Conversation\UpdateMessage;
|
|
use App\Services\Contact\Conversation\DestroyMessage;
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
|
use App\Services\Contact\Conversation\AddMessageToConversation;
|
|
use App\Http\Resources\Conversation\Conversation as ConversationResource;
|
|
|
|
class ApiMessageController extends ApiController
|
|
{
|
|
/**
|
|
* Store the message.
|
|
*
|
|
* @param Request $request
|
|
*
|
|
* @return ConversationResource|\Illuminate\Http\JsonResponse
|
|
*/
|
|
public function store(Request $request, int $conversationId)
|
|
{
|
|
try {
|
|
$conversation = Conversation::findOrFail($conversationId);
|
|
} catch (ModelNotFoundException $e) {
|
|
return $this->respondNotFound();
|
|
}
|
|
|
|
try {
|
|
app(AddMessageToConversation::class)->execute(
|
|
$request->all()
|
|
+
|
|
[
|
|
'account_id' => auth()->user()->account->id,
|
|
'conversation_id' => $conversation->id,
|
|
'contact_id' => $conversation->contact->id,
|
|
]
|
|
);
|
|
} catch (ModelNotFoundException $e) {
|
|
return $this->respondNotFound();
|
|
} catch (ValidationException $e) {
|
|
return $this->respondValidatorFailed($e->validator);
|
|
} catch (QueryException $e) {
|
|
return $this->respondInvalidQuery();
|
|
}
|
|
|
|
return new ConversationResource($conversation);
|
|
}
|
|
|
|
/**
|
|
* Update the message.
|
|
*
|
|
* @param Request $request
|
|
* @param int $conversationId
|
|
* @param int $messageId
|
|
*
|
|
* @return ConversationResource|\Illuminate\Http\JsonResponse
|
|
*/
|
|
public function update(Request $request, int $conversationId, int $messageId)
|
|
{
|
|
try {
|
|
$conversation = Conversation::findOrFail($conversationId);
|
|
$message = Message::findOrFail($messageId);
|
|
} catch (ModelNotFoundException $e) {
|
|
return $this->respondNotFound();
|
|
}
|
|
|
|
try {
|
|
app(UpdateMessage::class)->execute(
|
|
$request->all()
|
|
+
|
|
[
|
|
'account_id' => auth()->user()->account->id,
|
|
'conversation_id' => $conversationId,
|
|
'message_id' => $message->id,
|
|
'contact_id' => $conversation->contact->id,
|
|
]
|
|
);
|
|
} catch (ModelNotFoundException $e) {
|
|
return $this->respondNotFound();
|
|
} catch (ValidationException $e) {
|
|
return $this->respondValidatorFailed($e->validator);
|
|
} catch (QueryException $e) {
|
|
return $this->respondInvalidQuery();
|
|
}
|
|
|
|
return new ConversationResource($conversation);
|
|
}
|
|
|
|
/**
|
|
* Destroy the message.
|
|
*
|
|
* @param Request $request
|
|
* @param int $conversationId
|
|
* @param int $messageId
|
|
*
|
|
* @return \Illuminate\Http\JsonResponse
|
|
*/
|
|
public function destroy(Request $request, int $conversationId, int $messageId)
|
|
{
|
|
try {
|
|
Conversation::findOrFail($conversationId);
|
|
Message::findOrFail($messageId);
|
|
} catch (ModelNotFoundException $e) {
|
|
return $this->respondNotFound();
|
|
}
|
|
|
|
try {
|
|
app(DestroyMessage::class)->execute([
|
|
'account_id' => auth()->user()->account->id,
|
|
'conversation_id' => $conversationId,
|
|
'message_id' => $messageId,
|
|
]);
|
|
} catch (ModelNotFoundException $e) {
|
|
return $this->respondNotFound();
|
|
} catch (ValidationException $e) {
|
|
return $this->respondValidatorFailed($e->validator);
|
|
} catch (QueryException $e) {
|
|
return $this->respondInvalidQuery();
|
|
}
|
|
|
|
return $this->respondObjectDeleted((int) $messageId);
|
|
}
|
|
}
|