mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
107 lines
2.7 KiB
PHP
Executable File
107 lines
2.7 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
use Illuminate\Support\Collection;
|
|
use Laravel\Sanctum\HasApiTokens;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property string $email
|
|
* @property string $password
|
|
* @property string $profile_photo_path
|
|
* @property string $two_factor_recovery_codes
|
|
* @property string $two_factor_secret
|
|
* @property SshKey[] $sshKeys
|
|
* @property SourceControl[] $sourceControls
|
|
* @property ServerProvider[] $serverProviders
|
|
* @property Script[] $scripts
|
|
* @property StorageProvider[] $storageProviders
|
|
* @property StorageProvider[] $connectedStorageProviders
|
|
* @property Collection $tokens
|
|
* @property string $profile_photo_url
|
|
* @property string $timezone
|
|
*/
|
|
class User extends Authenticatable
|
|
{
|
|
use HasApiTokens;
|
|
use HasFactory;
|
|
use Notifiable;
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'email',
|
|
'password',
|
|
'timezone',
|
|
];
|
|
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
'two_factor_recovery_codes',
|
|
'two_factor_secret',
|
|
];
|
|
|
|
protected $appends = [
|
|
];
|
|
|
|
public function sshKeys(): HasMany
|
|
{
|
|
return $this->hasMany(SshKey::class);
|
|
}
|
|
|
|
public function sourceControls(): HasMany
|
|
{
|
|
return $this->hasMany(SourceControl::class);
|
|
}
|
|
|
|
public function serverProviders(): HasMany
|
|
{
|
|
return $this->hasMany(ServerProvider::class);
|
|
}
|
|
|
|
public function scripts(): HasMany
|
|
{
|
|
return $this->hasMany(Script::class, 'user_id');
|
|
}
|
|
|
|
public function sourceControl(string $provider): HasOne
|
|
{
|
|
return $this->hasOne(SourceControl::class)->where('provider', $provider);
|
|
}
|
|
|
|
public function storageProviders(): HasMany
|
|
{
|
|
return $this->hasMany(StorageProvider::class);
|
|
}
|
|
|
|
public function storageProvider(string $provider): HasOne
|
|
{
|
|
return $this->hasOne(StorageProvider::class)->where('provider', $provider);
|
|
}
|
|
|
|
public function connectedStorageProviders(): HasMany
|
|
{
|
|
return $this->storageProviders()->where('connected', true);
|
|
}
|
|
|
|
public function connectedSourceControls(): array
|
|
{
|
|
$connectedSourceControls = [];
|
|
$sourceControls = $this->sourceControls()
|
|
->where('connected', 1)
|
|
->get(['provider']);
|
|
foreach ($sourceControls as $sourceControl) {
|
|
$connectedSourceControls[] = $sourceControl->provider;
|
|
}
|
|
|
|
return $connectedSourceControls;
|
|
}
|
|
}
|