91 lines
2.3 KiB
PHP
91 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace Beike\Models;
|
|
|
|
use Beike\Notifications\ForgottenNotification;
|
|
use Beike\Notifications\RegistrationNotification;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Tymon\JWTAuth\Contracts\JWTSubject;
|
|
|
|
class Customer extends Authenticatable implements JWTSubject
|
|
{
|
|
use HasFactory;
|
|
use SoftDeletes;
|
|
use Notifiable;
|
|
|
|
public const AUTH_GUARD = 'web_shop';
|
|
|
|
protected $fillable = ['name', 'email', 'password', 'status', 'avatar', 'customer_group_id', 'locale', 'status', 'from'];
|
|
|
|
protected function serializeDate(\DateTimeInterface $date): string
|
|
{
|
|
return Carbon::createFromFormat('Y-m-d H:i:s', $date)->format('Y-m-d H:i:s');
|
|
}
|
|
|
|
public function addresses(): HasMany
|
|
{
|
|
return $this->hasMany(Address::class);
|
|
}
|
|
|
|
public function customerGroup(): BelongsTo
|
|
{
|
|
return $this->belongsTo(CustomerGroup::class);
|
|
}
|
|
|
|
public function wishlists(): HasMany
|
|
{
|
|
return $this->hasMany(CustomerWishlist::class);
|
|
}
|
|
|
|
public function rmas(): HasMany
|
|
{
|
|
return $this->hasMany(Rma::class);
|
|
}
|
|
|
|
public function notifyRegistration()
|
|
{
|
|
$useQueue = system_setting('base.use_queue', true);
|
|
if ($useQueue) {
|
|
$this->notify(new RegistrationNotification($this));
|
|
} else {
|
|
$this->notifyNow(new RegistrationNotification($this));
|
|
}
|
|
}
|
|
|
|
public function notifyVerifyCodeForForgotten($code)
|
|
{
|
|
$useQueue = system_setting('base.use_queue', true);
|
|
if ($useQueue) {
|
|
$this->notify(new ForgottenNotification($this, $code));
|
|
} else {
|
|
$this->notifyNow(new ForgottenNotification($this, $code));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the identifier that will be stored in the subject claim of the JWT.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getJWTIdentifier()
|
|
{
|
|
return $this->getKey();
|
|
}
|
|
|
|
/**
|
|
* Return a key value array, containing any custom claims to be added to the JWT.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getJWTCustomClaims()
|
|
{
|
|
return [];
|
|
}
|
|
}
|