Phase 2: Implement Domain & Mailbox persistence, Analytics, and fix pagination issues

This commit is contained in:
idevakk
2026-03-05 20:19:30 +05:30
parent b981b6998f
commit 60b87a3609
23 changed files with 1037 additions and 256 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Domain>
*/
class DomainFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'domain_hash' => bin2hex(random_bytes(32)),
'name' => $this->faker->unique()->domainName(),
'allowed_types' => ['public', 'premium'],
'is_active' => true,
'is_archived' => false,
];
}
}

View File

@@ -0,0 +1,33 @@
<?php
namespace Database\Factories;
use App\Models\Domain;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Mailbox>
*/
class MailboxFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'mailbox_hash' => bin2hex(random_bytes(32)),
'domain_hash' => Domain::factory(),
'user_id' => null, // Changed from \App\Models\User::factory() to null as per instruction
'session_id' => $this->faker->uuid(),
'address' => $this->faker->unique()->safeEmail(),
'type' => 'public',
'created_ip' => $this->faker->ipv4(),
'last_accessed_ip' => $this->faker->ipv4(),
'last_accessed_at' => now(),
'expires_at' => now()->addDays(7),
];
}
}

View File

@@ -0,0 +1,33 @@
<?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('domains', function (Blueprint $table) {
$table->id();
$table->char('domain_hash', 64)->unique()->index();
$table->string('name')->unique();
$table->json('allowed_types'); // ['public', 'private', 'custom', 'premium']
$table->boolean('is_active')->default(true);
$table->boolean('is_archived')->default(false);
$table->softDeletes();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('domains');
}
};

View File

@@ -0,0 +1,40 @@
<?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('mailboxes', function (Blueprint $table) {
$table->id();
$table->char('mailbox_hash', 64)->unique()->index();
$table->char('domain_hash', 64)->index();
$table->foreignId('user_id')->nullable()->constrained()->onDelete('set null');
$table->string('session_id')->nullable()->index();
$table->string('address')->unique()->index();
$table->string('type'); // public, private, custom, premium
$table->string('created_ip', 45)->nullable();
$table->string('last_accessed_ip', 45)->nullable();
$table->timestamp('last_accessed_at')->nullable();
$table->boolean('is_blocked')->default(false);
$table->text('block_reason')->nullable();
$table->timestamp('blocked_at')->nullable();
$table->timestamp('expires_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('mailboxes');
}
};