* add api enpoints for adding, removing, updating user to workspace and leaving workspace * feat: updates client site workspace settings * refactor and add domain setting ui in modal * move workspace user functionality to its own component * adds tests * fix linting * updates select input to FlatSelectInput * moves workspace user role edit to seperated component * move user adding to its own component * adds check to usure users exist before checking is admin * fix loading users * feat: invite user to team functionality * fix token coulmn * fix self host mode changes * tests for user invite * Refactor back-end * Rename variables * Improve some styling elements + refactor workspace settings * More styling * More UI polishing * More UI fixes * PHP linting * Implemented most of the logic for team-functionnality * Fix user avatar URL * WIP remove users on cancellation * Finished pricing for team functionality * Fix tests * Fix linting * Added pricing_enabled helper * Fix pricing_enabled shortcut * Debug CI * Disable pricing when testing --------- Co-authored-by: LL-Etiane <lukongleinyuyetiane@gmail.com> Co-authored-by: Lukong Etiane <83535251+LL-Etiane@users.noreply.github.com> Co-authored-by: Julien Nahum <julien@nahum.net>
86 lines
1.7 KiB
PHP
86 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class License extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public const STATUS_ACTIVE = 'active';
|
|
public const STATUS_INACTIVE = 'inactive';
|
|
|
|
protected $fillable = [
|
|
'license_key',
|
|
'user_id',
|
|
'license_provider',
|
|
'status',
|
|
'meta',
|
|
];
|
|
|
|
protected function casts()
|
|
{
|
|
return [
|
|
'meta' => 'array',
|
|
];
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function isActive()
|
|
{
|
|
return $this->status === self::STATUS_ACTIVE;
|
|
}
|
|
|
|
public function scopeActive($query)
|
|
{
|
|
return $query->where('status', self::STATUS_ACTIVE);
|
|
}
|
|
|
|
public function getMaxFileSizeAttribute(): int
|
|
{
|
|
return [
|
|
1 => 25000000, // 25 MB,
|
|
2 => 50000000, // 50 MB,
|
|
3 => 75000000, // 75 MB,
|
|
][$this->meta['tier']];
|
|
}
|
|
|
|
public function getCustomDomainLimitCountAttribute(): ?int
|
|
{
|
|
return [
|
|
1 => 1,
|
|
2 => 10,
|
|
3 => null,
|
|
][$this->meta['tier']];
|
|
}
|
|
|
|
public function getMaxUsersLimitCountAttribute(): ?int
|
|
{
|
|
return [
|
|
1 => 1,
|
|
2 => 5,
|
|
3 => null,
|
|
][$this->meta['tier']];
|
|
}
|
|
|
|
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();
|
|
}
|
|
});
|
|
}
|
|
}
|