2023-11-01 15:58:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class License extends Model
|
|
|
|
{
|
|
|
|
const STATUS_ACTIVE = 'active';
|
|
|
|
const STATUS_INACTIVE = 'inactive';
|
|
|
|
|
|
|
|
use HasFactory;
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
'license_key',
|
|
|
|
'user_id',
|
|
|
|
'license_provider',
|
|
|
|
'status',
|
|
|
|
'meta'
|
|
|
|
];
|
|
|
|
|
|
|
|
protected $casts = [
|
|
|
|
'meta' => 'array',
|
|
|
|
];
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function scopeActive($query)
|
|
|
|
{
|
|
|
|
return $query->where('status', self::STATUS_ACTIVE);
|
|
|
|
}
|
|
|
|
|
2023-12-12 10:57:13 +00:00
|
|
|
public function getMaxFileSizeAttribute(): int
|
2023-11-01 15:58:10 +00:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
1 => 25000000, // 25 MB,
|
|
|
|
2 => 50000000, // 50 MB,
|
|
|
|
3 => 75000000, // 75 MB,
|
|
|
|
][$this->meta['tier']];
|
|
|
|
}
|
2023-11-29 13:53:08 +00:00
|
|
|
|
2023-12-12 10:57:13 +00:00
|
|
|
public function getCustomDomainLimitCountAttribute(): ?int
|
2023-11-29 13:53:08 +00:00
|
|
|
{
|
|
|
|
return [
|
2023-12-03 14:31:34 +00:00
|
|
|
1 => 1,
|
|
|
|
2 => 10,
|
2023-11-29 13:53:08 +00:00
|
|
|
3 => null,
|
|
|
|
][$this->meta['tier']];
|
|
|
|
}
|
2023-12-03 14:02:48 +00:00
|
|
|
|
|
|
|
public static function booted(): void
|
|
|
|
{
|
|
|
|
static::saved(function (License $license) {
|
|
|
|
if ($license->user) {
|
|
|
|
$license->user->flushCache();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
static::deleted(function (License $license) {
|
|
|
|
if ($license->user) {
|
|
|
|
$license->user->flushCache();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2023-11-01 15:58:10 +00:00
|
|
|
}
|