gpt4 book ai didi

php - 使用 Laravel 的实时用户消息

转载 作者:可可西里 更新时间:2023-10-31 23:45:12 27 4
gpt4 key购买 nike

我真的需要一些帮助,以及这个问题的例子。我在我的网站上需要一个像 Facebook 这样的对话系统(发送消息到对话并加载消息而不刷新页面)。我认为有很多方法可以解决这个问题:广播、长轮询或简单的 AJAX。如果我能有一个使用广播的例子,我将不胜感激。以下是我想出的方法来尝试实现这一点。

表格对话

Schema::create('conversations', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_one')->unsigned()->index()->comment('Sender ID');
$table->foreign('user_one')->references('id')->on('users')->onDelete('cascade');
$table->integer('user_two')->unsigned()->index()->comment('Inrerlocutor's ID');
$table->foreign('user_two')->references('id')->on('users')->onDelete('cascade');
$table->timestamps();
});

消息

 Schema::create('messages', function (Blueprint $table) {
$table->increments('id');
$table->text('message')->comment('Message text');
$table->boolean('is_seen')->default(0);
$table->boolean('deleted_from_sender')->default(0);
$table->boolean('deleted_from_receiver')->default(0);
$table->integer('user_id')->unsigned()->index()->comment('Sender ID');
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
$table->integer('conversation_id')->unsigned()->index()->comment('Conversation ID');
$table->foreign('conversation_id')->references('id')->on('conversations')->onDelete('cascade');
$table->timestamps();
});

Controller

public function sendMessage($id, SendMessageRequest $request)
{
if ($id == Auth::id())
{
return redirect('/');
}

$conversation = Conversation::whereIn('user_one', [Auth::id(), $id])
->whereIn('user_two', [$id, Auth::id()])
->first(); // Get conversation data

/**
* Create a new conv. when doesnt exists
*/
if ($conversation == NULL)
{
$newConversation = Conversation::create([
'user_one' => Auth::id(),
'user_two' => $id,
]);
}

/**
* Create message
*/
Message::create([
'message' => $request->get('message'),
'user_id' => Auth::id(),
'conversation_id' => $conversation !== NULL ? $conversation->id : $newConversation->id,
]);

return redirect(route('mails.chat', $id));
}

/**
* Chat History
*/
public function chat($id)
{
$user = User::find($id); // Get user data
$title = 'Диалог с ' . $user->name . ' ' . $user->lastname; // Page title

if ($id == Auth::id())
{
return redirect('/');
}

$conversation = Conversation::whereIn('user_one', [Auth::id(), $id])
->whereIn('user_two', [$id, Auth::id()])
->first(); // Get conv. data

$messages = '';
if ($conversation !== NULL)
{
$messages = Message::where('conversation_id', $conversation->id)->paginate(30); // Get messages
}

return view('mails.chat', [
'title' => $title,
'conversation' => $conversation,
'messages' => $messages,
'user' => $user,
]);
}

示范对话

    class Conversation extends Model
{
protected $table = 'conversations';
protected $fillable = ['user_one', 'user_two'];
protected $dates = ['created_at', 'updated_at'];

public function user() {
return $this->belongsToMany('App\User');
}
}

模型消息

    class Message extends Model
{
protected $table = 'messages';
protected $fillable = ['message', 'is_seen', 'deleted_from_sender', 'deleted_from_receiver', 'user_id', 'conversation_id'];
protected $dates = ['created_at', 'updated_at'];

public function user() {
return $this->belongsToMany('App\User');
}

public function conversation() {
return $this->belongsToMany('App\Conversation');
}
}

查看

@extends('layouts.app')

@section('content')

{{-- Simple display messages --}}
@if ($conversation !== NULL && count($messages) !== 0)
@foreach($messages as $message)
@php($sender = App\User::find($message->user_id))

<div>
<b>{{ $sender->name }} {{ $sender->lastname }}</b><br>
{{ $message->message }}
</div>
@endforeach
@else
<div class="alert alert-info">No messages.</div>
@endif

<form id="submit" method="post" action="{{ route('mails.sendMessage', $user->id) }}">
{{ csrf_field() }}
<b>Message:</b><br>
<textarea name="message"></textarea>

<button type="submit">Send!</button>
</form>

@endsection

谢谢你帮我解决这个问题。

最佳答案

您要找的是Laravel Echo .这将适用于 redis 服务器、socket.io 和 laravel echo server。 .它非常好并且易​​于设置。查看示例应用程序 here

关于php - 使用 Laravel 的实时用户消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44567176/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com