Replace all uses of `forceFill`, `forceCreate`, and `forceFill` with their non-force equivalents across models, actions, controllers, and Livewire components. Add explicit `$fillable` arrays to all affected Eloquent models to enforce mass assignment protection. Add ModelFillableCreationTest and ModelFillableRegressionTest to verify that model creation respects fillable constraints and prevent regressions.
44 lines
870 B
PHP
44 lines
870 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class CloudProviderToken extends BaseModel
|
|
{
|
|
protected $fillable = [
|
|
'team_id',
|
|
'provider',
|
|
'token',
|
|
'name',
|
|
];
|
|
|
|
protected $casts = [
|
|
'token' => 'encrypted',
|
|
];
|
|
|
|
public function team()
|
|
{
|
|
return $this->belongsTo(Team::class);
|
|
}
|
|
|
|
public function servers()
|
|
{
|
|
return $this->hasMany(Server::class);
|
|
}
|
|
|
|
public function hasServers(): bool
|
|
{
|
|
return $this->servers()->exists();
|
|
}
|
|
|
|
public static function ownedByCurrentTeam(array $select = ['*'])
|
|
{
|
|
$selectArray = collect($select)->concat(['id']);
|
|
|
|
return self::whereTeamId(currentTeam()->id)->select($selectArray->all());
|
|
}
|
|
|
|
public function scopeForProvider($query, string $provider)
|
|
{
|
|
return $query->where('provider', $provider);
|
|
}
|
|
}
|