A Laravel chat package. You can use this package to create a chat/messaging Laravel application.
A Laravel chat package. You can use this package to create a chat/messaging Laravel application.
Create a Chat application for your multiple Models
What to learn how to make a package like this? https://leanpub.com/laravel-package-development
Checkout a simple Demo Application
This package allows you to add a chat system to your Laravel ^5.4 application
From the command line, run:
composer require musonza/chat
Publish the assets:
php artisan vendor:publish --provider="Musonza\Chat\ChatServiceProvider"
This will publish database migrations and a configuration file musonza_chat.php in the Laravel config folder.
See musonza_chat.php for configuration
Run the migrations:
php artisan migrate
You can mix Models as participants. For instance you can have Parents, Students and Professors models communicating
Add the Musonza\Chat\Traits\Messageable trait to any Model you want to participate in Conversations
For example, let's say we want out Bot model to chat with other Models:
use Illuminate\Database\Eloquent\Model;
use Musonza\Chat\Traits\Messageable;
class Bot extends Model
{
use Messageable;
}
The package includes routes for conversations, conversation participants, and messaging. These routes are hidden by default. To enable them, change should_load_routes to true, but make sure to configure the middleware correctly.
Since we allow Models with data that differ in structure to chat, we may want a uniform way to represent the participant details in a uniform way.
You can get the details as follows:
$participantModel->getParticipantDetails();
Assuming you have a column name for your model, this returns a default array ['name' => 'column_value']
You can however, customize this for your needs by adding an Eloquent Accessor that returns an array
with as much as you need to your model as follows:
public function getParticipantDetailsAttribute()
{
return [
'name' => $this->someValue,
'foo' => 'bar',
];
}
You can start a conversation by passing an array of Models as participants
$participants = [$model1, $model2,..., $modelN];
$conversation = Chat::createConversation($participants);
You may want to classify conversations as private or public
$participants = [$model1, $model2,..., $modelN];
// Create a private conversation
$conversation = Chat::createConversation($participants)->makePrivate();
// Create a public conversation
$conversation = Chat::createConversation($participants)->makePrivate(false);
// Create a direct message
// Make direct conversation after creation
$conversation = Chat::createConversation($participants)->makeDirect();
// Specify intent for direct conversation before creation
$conversation = Chat::makeDirect()->createConversation($participants);
Note: You will not be able to add additional participants to a direct conversation. Additionally you can't remove a participant from a direct conversation.
You can assign a name to a conversation, which is useful for chatrooms or any scenario where you need to look up a conversation by a human-readable identifier.
$participants = [$model1, $model2];
// Create a named conversation
$conversation = Chat::createConversation($participants, [], 'general');
// The name is accessible on the conversation
echo $conversation->name; // 'general'
The name column is nullable, so existing conversations and conversations created without a name are unaffected.
$conversation = Chat::conversations()->getById($id);
$data = ['title' => 'PHP Channel', 'description' => 'PHP Channel Description'];
$conversation->update(['data' => $data]);
$message = Chat::message('Hello')
->from($model)
->to($conversation)
->send();
The default message type is text. If you want to specify custom type you can call the type() function as below:
$message = Chat::message('http://example.com/img')
->type('image')
->from($model)
->to($conversation)
->send();
Sometimes you might want to add details about a message. For example, when the message type is an attachment, and you want to add details such as attachment's filename, and attachment's file url, you can call the data() function and pass your data as an array.
$message = Chat::message('Attachment 1')
->type('attachment')
->data(['file_name' => 'post_image.jpg', 'file_url' => 'http://example.com/post_img.jpg'])
->from($model)
->to($conversation)
->send();
$message = Chat::messages()->getById($id);
$sendModel = $message->sender;
Chat::message($message)->setParticipant($participantModel)->markRead();
Chat::message($message)->setParticipant($participantModel)->toggleFlag();
Chat::message($message)->setParticipant($participantModel)->flagged(); // true
Chat::conversation($conversation)->setParticipant($participantModel)->readAll();
$unreadCount = Chat::messages()->setParticipant($participantModel)->unreadCount();
Chat::conversation($conversation)->setParticipant($participantModel)->unreadCount();
Chat::message($message)->setParticipant($participantModel)->delete();
Add emoji or text-based reactions to messages:
// Add a reaction
Chat::message($message)->setParticipant($participantModel)->react('');
// Add multiple different reactions
Chat::message($message)->setParticipant($participantModel)->react('❤️');
Remove a reaction:
Chat::message($message)->setParticipant($participantModel)->unreact('');
Toggle a reaction (add if not present, remove if present):
$result = Chat::message($message)->setParticipant($participantModel)->toggleReaction('');
// $result = ['added' => true/false, 'reaction' => Reaction|null]
Get reactions summary with counts:
$summary = Chat::message($message)->reactionsSummary();
// ['' => 5, '❤️' => 3, '' => 1]
Check if participant has reacted:
// Check for specific reaction
Chat::message($message)->setParticipant($participantModel)->hasReacted('');
// Check for any reaction
Chat::message($message)->setParticipant($participantModel)->hasReacted();
Get all reactions on a message:
$reactions = Chat::message($message)->reactions();
You can also access reactions directly on the Message model:
$message->reactions; // All reactions
$message->getReactionsSummary(); // Grouped counts
$message->react($participant, ''); // Add
$message->unreact($participant, ''); // Remove
$message->hasReacted($participant, ''); // Check
Broadcasting: When broadcasting is enabled, MessageReactionAdded and MessageReactionRemoved events are broadcast to the conversation channel.
What to cleanup when all participants have deleted a $message or $conversation?
Listen for \Musonza\Chat\Eventing\AllParticipantsDeletedMessage and
\Musonza\Chat\Eventing\AllParticipantsClearedConversation
Chat::conversation($conversation)->setParticipant($participantModel)->clear();
Archiving is per-participant — like Gmail/Outlook — so one user can archive a thread without hiding it for the others. By default, archived conversations are excluded from a participant's listings. A new incoming message auto-unarchives the recipient (configurable).
…
To disable auto-unarchive on incoming messages, set unarchive_on_new_message => false in config/musonza_chat.php.
Chat::conversations()->setPaginationParams(['sorting' => 'desc'])
->setParticipant($participantModel)
->limit(1)
->page(1)
->get();
$conversation = Chat::conversations()->between($participantModel1, $participantModel2);
$conversations = Chat::conversations()->common($participants);
$participants is an array of participant Models
/* removing one user */
Chat::conversation($conversation)->removeParticipants([$participantModel]);
/* removing multiple participants */
Chat::conversation($conversation)->removeParticipants([$participantModel, $participantModel2,...,$participantModelN]);
/* add one user */
Chat::conversation($conversation)->addParticipants([$participantModel]);
/* add multiple participants */
Chat::conversation($conversation)->addP
No open issues yet, or sync has not completed.