5e146b8b60
FROM ghcr.io/relaticle/relaticle:latest + COPY de los 5 ficheros custom (migration + Notification + Action + 2 Observers) que implementan la notificación in-app/email a un team cuando se crea una Company o People vía API con creation_source=API. Se elige overlay en vez de fork completo para no perder las mejoras de upstream en cada build. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Actions\Team\NotifyTeamOfNewApiLead;
|
|
use App\Enums\CreationSource;
|
|
use App\Enums\CustomFields\CompanyField;
|
|
use App\Jobs\FetchFaviconForCompany;
|
|
use App\Models\Company;
|
|
|
|
final readonly class CompanyObserver
|
|
{
|
|
public function saved(Company $company): void
|
|
{
|
|
$company->invalidateAiSummary();
|
|
$this->dispatchFaviconFetchIfNeeded($company);
|
|
}
|
|
|
|
public function created(Company $company): void
|
|
{
|
|
if ($company->creation_source === CreationSource::API) {
|
|
new NotifyTeamOfNewApiLead()->execute($company);
|
|
}
|
|
}
|
|
|
|
private function dispatchFaviconFetchIfNeeded(Company $company): void
|
|
{
|
|
$domainField = $company->customFields()
|
|
->whereBelongsTo($company->team)
|
|
->where('code', CompanyField::DOMAINS->value)
|
|
->first();
|
|
|
|
if ($domainField === null) {
|
|
return;
|
|
}
|
|
|
|
$company->load('customFieldValues.customField.options');
|
|
|
|
$domains = $company->getCustomFieldValue($domainField);
|
|
$firstDomain = is_array($domains) ? ($domains[0] ?? null) : $domains;
|
|
|
|
if (blank($firstDomain)) {
|
|
return;
|
|
}
|
|
|
|
dispatch(new FetchFaviconForCompany($company))->afterCommit();
|
|
}
|
|
}
|