230 lines
5.6 KiB
PHP
230 lines
5.6 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Notifications\CustomVerifyEmail;
|
|
use App\Notifications\UsernameReminder;
|
|
use App\Traits\HasEncryptedAttributes;
|
|
use App\Traits\HasUuid;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
class Recipient extends Model
|
|
{
|
|
use HasEncryptedAttributes;
|
|
use HasFactory;
|
|
use HasUuid;
|
|
use Notifiable;
|
|
|
|
public $incrementing = false;
|
|
|
|
protected $keyType = 'string';
|
|
|
|
protected $encrypted = [
|
|
'email',
|
|
'fingerprint',
|
|
];
|
|
|
|
protected $fillable = [
|
|
'email',
|
|
'user_id',
|
|
'can_reply_send',
|
|
'should_encrypt',
|
|
'inline_encryption',
|
|
'protected_headers',
|
|
'fingerprint',
|
|
'pending',
|
|
'email_verified_at',
|
|
];
|
|
|
|
protected $casts = [
|
|
'id' => 'string',
|
|
'user_id' => 'string',
|
|
'can_reply_send' => 'boolean',
|
|
'should_encrypt' => 'boolean',
|
|
'inline_encryption' => 'boolean',
|
|
'protected_headers' => 'boolean',
|
|
'pending' => 'boolean',
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
'email_verified_at' => 'datetime',
|
|
];
|
|
|
|
public static function boot()
|
|
{
|
|
parent::boot();
|
|
|
|
Recipient::deleting(function ($recipient) {
|
|
if ($recipient->fingerprint) {
|
|
$recipient->user->deleteKeyFromKeyring($recipient->fingerprint);
|
|
}
|
|
|
|
$recipient->aliases()->detach();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* The "booted" method of the model.
|
|
*/
|
|
protected static function booted(): void
|
|
{
|
|
// Global scope on Recipient model to not return any pending new email entries by default
|
|
static::addGlobalScope('notPending', function (Builder $builder) {
|
|
$builder->where('pending', false);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Scope a query to include pending new email recipients.
|
|
*/
|
|
public function scopeWithPending(Builder $query): void
|
|
{
|
|
$query->withoutGlobalScope('notPending');
|
|
}
|
|
|
|
/**
|
|
* Scope a query to get only pending email recipients.
|
|
*/
|
|
public function scopePending(Builder $query): void
|
|
{
|
|
$query->withoutGlobalScope('notPending')->where('pending', true);
|
|
}
|
|
|
|
/**
|
|
* Query scope to return verified or unverified recipients.
|
|
*/
|
|
public function scopeVerified($query, $condition = null)
|
|
{
|
|
if ($condition === 'false') {
|
|
return $query->whereNull('email_verified_at');
|
|
}
|
|
|
|
return $query->whereNotNull('email_verified_at');
|
|
}
|
|
|
|
/**
|
|
* Get the user the recipient belongs to.
|
|
*/
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
/**
|
|
* Get the aliases that have this recipient attached.
|
|
*/
|
|
public function aliases()
|
|
{
|
|
return $this->belongsToMany(Alias::class, 'alias_recipients')->using(AliasRecipient::class);
|
|
}
|
|
|
|
/**
|
|
* Get all of the recipient's failed deliveries.
|
|
*/
|
|
public function failedDeliveries()
|
|
{
|
|
return $this->hasMany(FailedDelivery::class);
|
|
}
|
|
|
|
/**
|
|
* Get all of the recipient's outbound messages.
|
|
*/
|
|
public function outboundMessages()
|
|
{
|
|
return $this->hasMany(OutboundMessage::class);
|
|
}
|
|
|
|
/**
|
|
* Get all of the user's custom domains.
|
|
*/
|
|
public function domainsUsingAsDefault()
|
|
{
|
|
return $this->hasMany(Domain::class, 'default_recipient_id', 'id');
|
|
}
|
|
|
|
/**
|
|
* Get all of the user's usernames using this recipient as their default.
|
|
*/
|
|
public function usernamesUsingAsDefault()
|
|
{
|
|
return $this->hasMany(Username::class, 'default_recipient_id', 'id');
|
|
}
|
|
|
|
public function domainAliasesUsingAsDefault()
|
|
{
|
|
return $this->hasManyThrough(
|
|
Alias::class,
|
|
Domain::class,
|
|
'default_recipient_id', // Foreign key on the domain table...
|
|
'aliasable_id', // Foreign key on the alias table...
|
|
'id', // Local key on the recipient table...
|
|
'id' // Local key on the domain table...
|
|
);
|
|
}
|
|
|
|
public function usernameAliasesUsingAsDefault()
|
|
{
|
|
return $this->hasManyThrough(
|
|
Alias::class,
|
|
Username::class,
|
|
'default_recipient_id', // Foreign key on the username table...
|
|
'aliasable_id', // Foreign key on the alias table...
|
|
'id', // Local key on the recipient table...
|
|
'id' // Local key on the username table...
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Determine if the recipient has a verified email address.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function hasVerifiedEmail()
|
|
{
|
|
return ! is_null($this->email_verified_at);
|
|
}
|
|
|
|
/**
|
|
* Mark this recipient's email as verified.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function markEmailAsVerified()
|
|
{
|
|
return $this->forceFill([
|
|
'email_verified_at' => $this->freshTimestamp(),
|
|
])->save();
|
|
}
|
|
|
|
/**
|
|
* Send the email verification notification.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function sendEmailVerificationNotification()
|
|
{
|
|
$this->notify(new CustomVerifyEmail());
|
|
}
|
|
|
|
/**
|
|
* Send the username reminder notification.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function sendUsernameReminderNotification()
|
|
{
|
|
$this->notify(new UsernameReminder());
|
|
}
|
|
|
|
/**
|
|
* Get the email address that should be used for verification.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getEmailForVerification()
|
|
{
|
|
return $this->email;
|
|
}
|
|
}
|