23-01-2026

This commit is contained in:
Kevin Adametz 2026-01-23 17:33:10 +01:00
parent 07959c0ba2
commit 854ce02bf6
166 changed files with 32909 additions and 1262 deletions

View file

@ -2,8 +2,11 @@
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use App\Notifications\CustomResetPasswordNotification;
use App\Notifications\CustomVerifyEmailNotification;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Illuminate\Support\Str;
@ -11,11 +14,12 @@ use Laravel\Fortify\TwoFactorAuthenticatable;
use Laravel\Sanctum\HasApiTokens;
use Spatie\Permission\Traits\HasRoles;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasOne;
class User extends Authenticatable
class User extends Authenticatable implements MustVerifyEmail
{
/** @use HasFactory<\Database\Factories\UserFactory> */
use HasApiTokens, HasFactory, HasRoles, Notifiable, TwoFactorAuthenticatable;
use HasApiTokens, HasFactory, HasRoles, Notifiable, TwoFactorAuthenticatable, SoftDeletes;
/**
* The attributes that are mass assignable.
@ -25,6 +29,7 @@ class User extends Authenticatable
protected $fillable = [
'partner_id',
'name',
'display_name',
'email',
'password',
'email_verified_at',
@ -49,6 +54,7 @@ class User extends Authenticatable
{
return [
'email_verified_at' => 'datetime',
'deleted_at' => 'datetime',
'password' => 'hashed',
];
}
@ -57,6 +63,15 @@ class User extends Authenticatable
{
return $this->belongsTo(Partner::class);
}
/**
* Get the registration code used by this user
*/
public function registrationCode(): HasOne
{
return $this->hasOne(RegistrationCode::class, 'used_by_user_id');
}
/**
* Get the user's initials
*/
@ -67,4 +82,56 @@ class User extends Authenticatable
->map(fn(string $name) => Str::of($name)->substr(0, 1))
->implode('');
}
/**
* Anonymize user data (for users with dependencies)
*/
public function anonymize(): void
{
$this->update([
'name' => 'Gelöschter Benutzer #' . $this->id,
'display_name' => null,
'email' => 'deleted_' . $this->id . '@anonymized.local',
'password' => bcrypt(Str::random(64)),
]);
// Entferne alle Rollen
$this->syncRoles([]);
// Soft Delete
$this->delete();
}
/**
* Check if user has dependencies that require anonymization instead of deletion
*/
public function hasDependencies(): bool
{
// TODO: Später erweitern mit weiteren Verknüpfungen
// Beispiele: Orders, Projects, Documents, etc.
// Aktuell: Prüfe ob Partner existiert
return $this->partner_id !== null;
}
/**
* Send the password reset notification.
*
* @param string $token
* @return void
*/
public function sendPasswordResetNotification($token): void
{
$this->notify(new CustomResetPasswordNotification($token));
}
/**
* Send the email verification notification.
*
* @return void
*/
public function sendEmailVerificationNotification(): void
{
$this->notify(new CustomVerifyEmailNotification);
}
}