mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
* Update UI to ask for URL for Gitlab as provider. * Create state for each source control in factory. * Save url for SourceControl when given. * Make Gitlab dynamically use correct URL (custom or default) * Update SourceControlsTest to check for custom url when given. * Style fixes. --------- Co-authored-by: Saeed Vaziry <61919774+saeedvaziry@users.noreply.github.com>
57 lines
1.3 KiB
PHP
57 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\SourceControl;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
use Illuminate\Support\Str;
|
|
|
|
class SourceControlFactory extends Factory
|
|
{
|
|
protected $model = SourceControl::class;
|
|
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'provider' => $this->faker->randomElement(\App\Enums\SourceControl::getValues()),
|
|
'access_token' => Str::random(10),
|
|
];
|
|
}
|
|
|
|
public function gitlab(): Factory
|
|
{
|
|
return $this->state(function (array $attributes) {
|
|
return [
|
|
'provider' => \App\Enums\SourceControl::GITLAB,
|
|
];
|
|
});
|
|
}
|
|
|
|
public function github(): Factory
|
|
{
|
|
return $this->state(function (array $attributes) {
|
|
return [
|
|
'provider' => \App\Enums\SourceControl::GITHUB,
|
|
];
|
|
});
|
|
}
|
|
|
|
public function bitbucket(): Factory
|
|
{
|
|
return $this->state(function (array $attributes) {
|
|
return [
|
|
'provider' => \App\Enums\SourceControl::BITBUCKET,
|
|
];
|
|
});
|
|
}
|
|
|
|
public function custom(): Factory
|
|
{
|
|
return $this->state(function (array $attributes) {
|
|
return [
|
|
'provider' => \App\Enums\SourceControl::CUSTOM,
|
|
];
|
|
});
|
|
}
|
|
}
|