Phase 2: Implement Domain & Mailbox persistence, Analytics, and fix pagination issues
This commit is contained in:
27
database/factories/DomainFactory.php
Normal file
27
database/factories/DomainFactory.php
Normal 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,
|
||||
];
|
||||
}
|
||||
}
|
||||
33
database/factories/MailboxFactory.php
Normal file
33
database/factories/MailboxFactory.php
Normal 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),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user