gerardojbaez/messenger
Composer 安装命令:
composer require gerardojbaez/messenger
包简介
Messenger functionality for Laravel 5.2.
关键字:
README 文档
README
Messenger
Chat/Message system for Laravel 5.x.
With Messenger:
- Users can send and receive messages.
- Users can participate in multiple conversations.
- Users can send messages to one or multiple users.
TL;DR
use Messenger; // Sending a message to one user: Messenger::from($user)->to($user)->message('Hey!'); // Sending a message to multiple users: (an array of user ids) Messenger::from($user)->to([1,2,3,4])->message('Who want to chat?!'); // Sending a message to one thread: (perfect for replying to a specific thread!) Messenger::from($user)->to($thread)->message('I\'ll be there');
Content
Installation
Requirements
- Laravel 5.x
- PHP >=5.5
Composer
$ composer require gerardojbaez/messenger
Service Provider and Facade
If you are using laravel 5.5 and later, you can skip the following two steps since this package supports package auto-discovery feature.
Add the package to your application service providers in config/app.php file.
'providers' => [ /** * Third Party Service Providers... */ Gerardojbaez\Messenger\MessengerServiceProvider::class, ]
Add the Facade to your aliases array:
'aliases' => [ [...] 'Messenger' => Gerardojbaez\Messenger\Facades\Messenger::class, ]
Config file and Migrations
Publish package config file and migrations with the command:
$ php artisan vendor:publish --provider="Gerardojbaez\Messenger\MessengerServiceProvider"
Then run migrations:
$ php artisan migrate
Traits and Contracts
Add Gerardojbaez/Messenger/Traits/Messageable trait and Gerardojbaez/Messenger/Contracts/MessageableInterface contract to your Users model.
See the following example:
<?php namespace App\Models; use Illuminate\Foundation\Auth\User as Authenticatable; use Gerardojbaez\Messenger\Contracts\MessageableInterface; use Gerardojbaez\Messenger\Traits\Messageable; class User extends Authenticatable implements MessageableInterface { use Messageable;
Usage
Sending to One User
<?php // Import the facade use Messenger; Messenger::from($user)->to($user2)->message('Hey!')->send();
Sending to Multiple Users
<?php // Import the facade use Messenger; Messenger::from($user)->to([1,2,3,4,5])->message('Hey!')->send();
Sending to Thread
<?php // Import the facade use Messenger; Messenger::from($user)->to($thread)->message('That\'s awesome!')->send();
Get count of new messages
Get global count - new messages in all user threads:
<?php echo $user->unreadMessagesCount;
Get count for a particular user thread:
<?php echo $user->threads->first()->unreadMessagesCount;
Mark thread as read
To mark a thread as read:
<?php $user->markThreadAsRead($thread_id);
Thread Dynamic Attributes
Threads dynamic attributes are attributes that doesn't come from the database, instead we generate them based on the data.
For example, threads doesn't have a title by itself, Messenger will create it based on the participants list.
Attributes:
$thread->title$thread->creatorto get the thread creator.$thread->lastMessageto get the latest message in the thread.
Displaying user threads
The controller:
public function index() { // Eager Loading - this helps prevent hitting the // database more than the necessary. $this->user->load('threads.messages.sender'); return view('messages.index', [ 'threads' => $this->user->threads ]); }
The view:
<div class="panel panel-default"> <div class="list-group"> @if($threads->count() > 0) @foreach($threads as $thread) @if($thread->lastMessage) <a href="#" class="list-group-item"> <div class="clearfix"> <div class="pull-left"> <span class="h5">{{ $thread->title }}</span> @if($thread->unreadMessagesCount > 0) <span class="label label-success">{!! $thread->unreadMessagesCount !!}</span> @endif </div> <span class="text-muted pull-right">{{ $thread->lastMessage->created_at->diffForHumans() }}</span> </div> <p class="text-muted no-margin">{{ str_limit($thread->lastMessage->body, 35) }}</p> </a> @endif @endforeach @endif </div> </div>
Preview:
Using Models
Messenger has 3 models:
Gerardojbaez\Messenger\Models\Message; Gerardojbaez\Messenger\Models\MessageThread; Gerardojbaez\Messenger\Models\MessageThreadParticipant;
You can use these as normal. For more details take a look to each model and the Gerardojbaez\Messenger\Traits\Messageable trait.
Config File
For now you can configure what models to use.
License
This package is free software distributed under the terms of the MIT license.
gerardojbaez/messenger 适用场景与选型建议
gerardojbaez/messenger 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.5k 次下载、GitHub Stars 达 72, 最近一次更新时间为 2016 年 08 月 05 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「messages」 「Messenger」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 gerardojbaez/messenger 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 gerardojbaez/messenger 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 gerardojbaez/messenger 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Enables the creation of cron-jobs tasks to be consumed by symfony/messenger
Simple messaging system for Laravel
Class Log libraries
统计信息
- 总下载量: 8.5k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 73
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-05