feat: messaging models and migrations

This commit is contained in:
Leon Morival 2026-04-10 12:28:20 +02:00
parent 527a7fb89c
commit 31e119ea07
9 changed files with 407 additions and 0 deletions

View File

@ -0,0 +1,65 @@
<?php
namespace App\Http\Controllers;
use App\Models\Conversation;
use Illuminate\Http\Request;
class ConversationController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(Conversation $conversation)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(Conversation $conversation)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, Conversation $conversation)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Conversation $conversation)
{
//
}
}

View File

@ -0,0 +1,65 @@
<?php
namespace App\Http\Controllers;
use App\Models\Message;
use Illuminate\Http\Request;
class MessageController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(Message $message)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(Message $message)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, Message $message)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Message $message)
{
//
}
}

View File

@ -0,0 +1,65 @@
<?php
namespace App\Http\Controllers;
use App\Models\Participant;
use Illuminate\Http\Request;
class ParticipantController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(Participant $participant)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(Participant $participant)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, Participant $participant)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Participant $participant)
{
//
}
}

View File

@ -0,0 +1,44 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Concerns\HasUlids;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\SoftDeletes;
class Conversation extends Model
{
use HasFactory, HasUlids, SoftDeletes;
protected $fillable = [
'label',
'is_group',
];
protected function casts(): array
{
return [
'is_group' => 'boolean',
];
}
public function participants(): HasMany
{
return $this->hasMany(Participant::class);
}
public function messages(): HasMany
{
return $this->hasMany(Message::class);
}
public function users(): BelongsToMany
{
return $this->belongsToMany(User::class, 'participants')
->withTimestamps()
->using(Participant::class); // Optional, but links the pivot back to Participant model if needed.
}
}

40
app/Models/Message.php Normal file
View File

@ -0,0 +1,40 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Concerns\HasUlids;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class Message extends Model
{
use HasFactory, HasUlids, SoftDeletes;
protected $fillable = [
'user_id',
'sender_name',
'sender_avatar_url',
'conversation_id',
'body',
'read_at',
];
protected function casts(): array
{
return [
'read_at' => 'datetime',
];
}
public function conversation(): BelongsTo
{
return $this->belongsTo(Conversation::class);
}
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
}

View File

@ -0,0 +1,32 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Concerns\HasUlids;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\Pivot;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class Participant extends Pivot
{
use HasFactory, HasUlids;
protected $table = 'participants';
public $incrementing = false;
protected $fillable = [
'conversation_id',
'user_id',
];
public function conversation(): BelongsTo
{
return $this->belongsTo(Conversation::class);
}
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
}

View File

@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('conversations', function (Blueprint $table) {
$table->ulid('id')->primary();
$table->string('label')->nullable();
$table->boolean('is_group')->default(false);
$table->softDeletesTz();
$table->timestampsTz();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('conversations');
}
};

View File

@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('messages', function (Blueprint $table) {
$table->ulid('id')->primary();
$table->foreignUlid('user_id')->constrained('users')->nullOnDelete();
$table->string('sender_name');
$table->string('sender_avatar_url')->nullable();
$table->foreignUlid('conversation_id')->constrained('conversations')->cascadeOnDelete();
$table->text('body')->nullable();
$table->timestampTz('read_at')->nullable();
$table->softDeletesTz();
$table->timestampsTz();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('messages');
}
};

View File

@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('participants', function (Blueprint $table) {
$table->ulid('id')->primary();
$table->foreignUlid('conversation_id')->constrained('conversations')->cascadeOnDelete();
$table->foreignUlid('user_id')->constrained('users')->cascadeOnDelete();
$table->timestampsTz();
$table->unique(['conversation_id', 'user_id']);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('participants');
}
};