- Introduced `CleanupNames` command to sanitize name fields by removing invalid characters, ensuring only letters, numbers, spaces, dashes, underscores, and dots are retained. - Implemented options for dry run, model-specific cleaning, database backup, and forced execution. - Updated `Init` command to call the new `cleanup:names` command. - Enhanced project and environment validation to enforce name sanitization rules. - Added `HasSafeNameAttribute` trait to relevant models for consistent name handling.
75 lines
2.1 KiB
PHP
75 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Project;
|
|
|
|
use App\Models\Application;
|
|
use App\Models\Project;
|
|
use Livewire\Attributes\Locked;
|
|
use Livewire\Attributes\Validate;
|
|
use Livewire\Component;
|
|
|
|
class EnvironmentEdit extends Component
|
|
{
|
|
public Project $project;
|
|
|
|
public Application $application;
|
|
|
|
#[Locked]
|
|
public $environment;
|
|
|
|
#[Validate(['required', 'string', 'min:3', 'max:255', 'regex:/^[a-zA-Z0-9\s\-_.]+$/'])]
|
|
public string $name;
|
|
|
|
#[Validate(['nullable', 'string', 'max:255'])]
|
|
public ?string $description = null;
|
|
|
|
protected $messages = [
|
|
'name.regex' => 'The environment name may only contain letters, numbers, spaces, dashes, underscores, and dots.',
|
|
'name.min' => 'The environment name must be at least 3 characters.',
|
|
'name.max' => 'The environment name may not be greater than 255 characters.',
|
|
];
|
|
|
|
public function mount(string $project_uuid, string $environment_uuid)
|
|
{
|
|
try {
|
|
$this->project = Project::ownedByCurrentTeam()->where('uuid', $project_uuid)->firstOrFail();
|
|
$this->environment = $this->project->environments()->where('uuid', $environment_uuid)->firstOrFail();
|
|
$this->syncData();
|
|
} catch (\Throwable $e) {
|
|
return handleError($e, $this);
|
|
}
|
|
}
|
|
|
|
public function syncData(bool $toModel = false)
|
|
{
|
|
if ($toModel) {
|
|
$this->validate();
|
|
$this->environment->update([
|
|
'name' => $this->name,
|
|
'description' => $this->description,
|
|
]);
|
|
} else {
|
|
$this->name = $this->environment->name;
|
|
$this->description = $this->environment->description;
|
|
}
|
|
}
|
|
|
|
public function submit()
|
|
{
|
|
try {
|
|
$this->syncData(true);
|
|
$this->redirectRoute('project.environment.edit', [
|
|
'environment_uuid' => $this->environment->uuid,
|
|
'project_uuid' => $this->project->uuid,
|
|
]);
|
|
} catch (\Throwable $e) {
|
|
return handleError($e, $this);
|
|
}
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.project.environment-edit');
|
|
}
|
|
}
|