Laravel的聊天包

维护者

详细信息

github.com/BrainsRage/chat

源代码

资助包维护!
www.paypal.me/tinashemusonza

安装: 2

依赖: 0

建议: 0

安全: 0

星标: 0

关注者: 1

分支: 308

v6.0.1 2022-06-09 19:45 UTC

README

chat

Build Status Downloads Packagist

聊天

为您的多个模型创建聊天应用

想学习如何制作这样的包? https://leanpub.com/laravel-package-development

目录

点击展开

查看简单的示例应用

简介

此包允许您将聊天系统添加到Laravel ^5.4应用中

安装

从命令行运行

composer require musonza/chat

发布资源

php artisan vendor:publish

这将发布数据库迁移和一个配置文件musonza_chat.php在Laravel配置文件夹中。

配置

查看musonza_chat.php进行配置

运行迁移

php artisan migrate

用法

您可以混合模型作为参与者。例如,您可以拥有ParentsStudentsProfessors模型进行通信

为模型添加参与能力

Musonza\Chat\Traits\Messageable特质添加到您希望参与会话的任何模型中。例如,假设我们希望我们的Bot模型与其他模型聊天

use Illuminate\Database\Eloquent\Model;
use Musonza\Chat\Traits\Messageable;

class Bot extends Model
{
    use Messageable;
}

获取参与者详情

由于我们允许结构不同的模型聊天,我们可能需要一个统一的方式来以统一的方式表示参与者详情。

您可以按如下方式获取详情

$participantModel->getParticipantDetails();

假设您有模型的一个name列,这返回默认数组['name' => 'column_value']。但是,您可以通过向模型添加Eloquent访问器来根据需要自定义此操作,如下所示

    public function getParticipantDetailsAttribute()
    {
        return [
            'name' => $this->someValue,
            'foo' => 'bar',
        ];
    }

创建会话

您可以通过传递一个模型数组作为参与者来开始会话

$participants = [$model1, $model2,..., $modelN];

$conversation = Chat::createConversation($participants);

创建私有/公开类型的会话

您可能希望将对话分类为私有或公开

$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);

注意:您无法向直接对话添加更多参与者。此外,您无法从直接对话中删除参与者。

通过ID获取会话

$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();

发送自定义类型的消息

默认消息类型是text。如果您想指定自定义类型,可以像下面这样调用type()函数

$message = Chat::message('http://example.com/img')
		->type('image')
		->from($model)
		->to($conversation)
		->send();

添加更多关于消息的详细信息

有时你可能需要添加关于消息的详细信息。例如,当消息类型为附件,并且你想要添加诸如附件的文件名和附件的文件URL等详细信息时,你可以调用data()函数,并将你的数据作为数组传递。

$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();

通过ID获取消息

$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();

清理已删除的消息

当所有参与者都删除了$message$conversation时,应该清理什么?

监听\Musonza\Chat\Eventing\AllParticipantsDeletedMessage

\Musonza\Chat\Eventing\AllParticipantsClearedConversation

清除会话

Chat::conversation($conversation)->setParticipant($participantModel)->clear();

获取参与者的会话

Chat::conversations()->setPaginationParams(['sorting' => 'desc'])
	->setParticipant($participantModel)
	->limit(1)
	->page(1)
	->get();

获取两个参与者之间的会话

$conversation = Chat::conversations()->between($participantModel1, $participantModel2);

获取参与者之间的共同会话

$conversations = Chat::conversations()->common($participants);

$participants是一个参与者模型数组

从会话中移除参与者

/* 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)->addParticipants([$participantModel, $participantModel2]);

获取会话中的消息

Chat::conversation($conversation)->setParticipant($participantModel)->getMessages()

按类型获取用户会话

// private conversations
$conversations = Chat::conversations()->setParticipant($participantModel)->isPrivate()->get();

// public conversations
$conversations = Chat::conversations()->setParticipant($participantModel)->isPrivate(false)->get();

// direct conversations / messages
$conversations = Chat::conversations()->setParticipant($participantModel)->isDirect()->get();

// all conversations
$conversations = Chat::conversations()->setParticipant($participantModel)->get();

获取最新消息

$messages = Chat::conversations()->setParticipant($participantModel)->limit(25)->page(1)->get();

分页

你可以通过几种方式实现分页。你可以使用相应的函数或如下方式指定limitpage

   $paginated = Chat::conversations()->setParticipant($participant)
            ->setPaginationParams([
                'page' => 3,
                'perPage' => 10,
                'sorting' => "desc",
                'columns' => [
                    '*'
                ],
                'pageName' => 'test'
            ])
            ->get();

你不必指定所有参数。如果你省略了参数,将使用默认值。上面的$paginated将返回Illuminate\Pagination\LengthAwarePaginator。要获取conversations,只需调用$paginated->items()

获取会话中的参与者

$participants = $conversation->getParticipants();

获取模型在会话中的参与条目

Chat::conversation($conversation)->getParticipation($model);

更新参与设置

为参与者设置会话设置(例如:mute_mentions,mute_conversation)

$settings = ['mute_mentions' => true];

Chat::conversation($conversation)
    ->getParticipation($this->alpha)
    ->update(['settings' => $settings]);

数据转换器

需要更细粒度地控制从包路由返回的数据?你可以指定自己的模型转换器,并利用Fractal

你只需要在配置文件musonza_chat.php中指定转换器的位置,如下所示

/**
 * Model Transformers
 */
'transformers' => [
    'conversation' => \MyApp\Transformers\ConversationTransformer::class,
    'message' => \MyApp\Transformers\MessageTransformer::class,
    'participant' => \MyApp\Transformers\ParticipantTransformer::class,
]

注意: 这仅适用于包路由的响应。

许可

Chat是一个开源软件,许可协议为MIT许可