## Summary - move the Laravel application into `apps/platform` and keep the repository root for orchestration, docs, and tooling - update the local command model, Sail/Docker wiring, runtime paths, and ignore rules around the new platform location - add relocation quickstart/contracts plus focused smoke coverage for bootstrap, command model, routes, and runtime behavior ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/PlatformRelocation` - integrated browser smoke validated `/up`, `/`, `/admin`, `/admin/choose-workspace`, and tenant route semantics for `200`, `403`, and `404` ## Remaining Rollout Checks - validate Dokploy build context and working-directory assumptions against the new `apps/platform` layout - confirm web, queue, and scheduler processes all start from the expected working directory in staging/production - verify no legacy volume mounts or asset-publish paths still point at the old root-level `public/` or `storage/` locations Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #213
150 lines
3.4 KiB
PHP
150 lines
3.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Support\Concerns\DerivesWorkspaceIdFromTenant;
|
|
use App\Support\ReviewPackStatus;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class ReviewPack extends Model
|
|
{
|
|
use DerivesWorkspaceIdFromTenant;
|
|
use HasFactory;
|
|
|
|
public const string STATUS_QUEUED = 'queued';
|
|
|
|
public const string STATUS_GENERATING = 'generating';
|
|
|
|
public const string STATUS_READY = 'ready';
|
|
|
|
public const string STATUS_FAILED = 'failed';
|
|
|
|
public const string STATUS_EXPIRED = 'expired';
|
|
|
|
protected $guarded = [];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'summary' => 'array',
|
|
'options' => 'array',
|
|
'generated_at' => 'datetime',
|
|
'expires_at' => 'datetime',
|
|
'file_size' => 'integer',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo<Workspace, $this>
|
|
*/
|
|
public function workspace(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Workspace::class);
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo<Tenant, $this>
|
|
*/
|
|
public function tenant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Tenant::class);
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo<OperationRun, $this>
|
|
*/
|
|
public function operationRun(): BelongsTo
|
|
{
|
|
return $this->belongsTo(OperationRun::class);
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo<User, $this>
|
|
*/
|
|
public function initiator(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'initiated_by_user_id');
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo<EvidenceSnapshot, $this>
|
|
*/
|
|
public function evidenceSnapshot(): BelongsTo
|
|
{
|
|
return $this->belongsTo(EvidenceSnapshot::class);
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo<TenantReview, $this>
|
|
*/
|
|
public function tenantReview(): BelongsTo
|
|
{
|
|
return $this->belongsTo(TenantReview::class);
|
|
}
|
|
|
|
/**
|
|
* @param Builder<self> $query
|
|
* @return Builder<self>
|
|
*/
|
|
public function scopeReady(Builder $query): Builder
|
|
{
|
|
return $query->where('status', self::STATUS_READY);
|
|
}
|
|
|
|
/**
|
|
* @param Builder<self> $query
|
|
* @return Builder<self>
|
|
*/
|
|
public function scopeExpired(Builder $query): Builder
|
|
{
|
|
return $query->where('status', self::STATUS_EXPIRED);
|
|
}
|
|
|
|
/**
|
|
* @param Builder<self> $query
|
|
* @return Builder<self>
|
|
*/
|
|
public function scopePastRetention(Builder $query): Builder
|
|
{
|
|
return $query->where('expires_at', '<', now());
|
|
}
|
|
|
|
/**
|
|
* @param Builder<self> $query
|
|
* @return Builder<self>
|
|
*/
|
|
public function scopeForTenant(Builder $query, int $tenantId): Builder
|
|
{
|
|
return $query->where('tenant_id', $tenantId);
|
|
}
|
|
|
|
/**
|
|
* @param Builder<self> $query
|
|
* @return Builder<self>
|
|
*/
|
|
public function scopeLatestReady(Builder $query): Builder
|
|
{
|
|
return $query->ready()->latest('generated_at');
|
|
}
|
|
|
|
public function isReady(): bool
|
|
{
|
|
return $this->status === self::STATUS_READY;
|
|
}
|
|
|
|
public function isExpired(): bool
|
|
{
|
|
return $this->status === self::STATUS_EXPIRED;
|
|
}
|
|
|
|
public function getStatusEnum(): ReviewPackStatus
|
|
{
|
|
return ReviewPackStatus::from($this->status);
|
|
}
|
|
}
|