refactor(catalog): Complete catalog refactor to simplify its data model and its querying.

source commits: refactor/catalog
This commit is contained in:
2026-07-21 09:23:19 -03:00
parent d3182fbd13
commit 29a2ca19a3
116 changed files with 5141 additions and 5217 deletions

View File

@@ -3,7 +3,6 @@
namespace Database\Seeders;
use App\Domains\Catalog\Models\Attribute;
use App\Domains\Catalog\Models\Product;
use App\Domains\Shared\Enums\FieldType;
use App\Domains\Tenant\Models\Tenant;
use Illuminate\Database\Seeder;
@@ -19,17 +18,15 @@ class AttributeSeeder extends Seeder
foreach ($tenants as $tenant) {
// Fiesta Futbol Infantil only uses the Fecha attribute.
$existingColor = Attribute::query()
->where('tenant_codigo', $tenant->codigo)
->where('codigo', 'color')
->first();
if ($existingColor) {
Product::deleteAttribute($existingColor);
if ($tenant->codigo === 'fiesta_futbol_infantil') {
Attribute::query()
->where('tenant_codigo', $tenant->codigo)
->whereIn('codigo', ['color', 'talle', 'talle_numerico'])
->delete();
}
if ($tenant->codigo !== 'fiesta_futbol_infantil') {
Product::createAttribute($tenant, [
$this->seedAttribute($tenant, [
'codigo' => 'color',
'nombre' => 'Color',
'type' => FieldType::Select->value,
@@ -67,17 +64,8 @@ class AttributeSeeder extends Seeder
}
// Seed Talle (Size - Text options) attribute
$existingTalle = Attribute::query()
->where('tenant_codigo', $tenant->codigo)
->where('codigo', 'talle')
->first();
if ($existingTalle) {
Product::deleteAttribute($existingTalle);
}
if ($tenant->codigo !== 'fiesta_futbol_infantil') {
Product::createAttribute($tenant, [
$this->seedAttribute($tenant, [
'codigo' => 'talle',
'nombre' => 'Talle',
'type' => FieldType::Select->value,
@@ -92,17 +80,8 @@ class AttributeSeeder extends Seeder
}
// Seed Talle Numérico (Numeric Size options) attribute
$existingTalleNumerico = Attribute::query()
->where('tenant_codigo', $tenant->codigo)
->where('codigo', 'talle_numerico')
->first();
if ($existingTalleNumerico) {
Product::deleteAttribute($existingTalleNumerico);
}
if ($tenant->codigo !== 'fiesta_futbol_infantil') {
Product::createAttribute($tenant, [
$this->seedAttribute($tenant, [
'codigo' => 'talle_numerico',
'nombre' => 'Talle Numérico',
'type' => FieldType::Select->value,
@@ -117,16 +96,7 @@ class AttributeSeeder extends Seeder
}
// Seed Fecha attribute
$existingFecha = Attribute::query()
->where('tenant_codigo', $tenant->codigo)
->where('codigo', 'fecha')
->first();
if ($existingFecha) {
Product::deleteAttribute($existingFecha);
}
Product::createAttribute($tenant, [
$this->seedAttribute($tenant, [
'codigo' => 'fecha',
'nombre' => 'Fecha',
'type' => FieldType::Select->value,
@@ -141,4 +111,24 @@ class AttributeSeeder extends Seeder
}
}
/**
* @param array<string, mixed> $data
*/
private function seedAttribute(Tenant $tenant, array $data): void
{
$options = $data['options'] ?? [];
unset($data['options']);
$attribute = Attribute::query()->updateOrCreate(
[
'tenant_codigo' => $tenant->codigo,
'codigo' => $data['codigo'],
],
$data,
);
$attribute->options()->delete();
$attribute->options()->createMany($options);
}
}

View File

@@ -17,7 +17,7 @@ class CategorySeeder extends Seeder
'Pantalones',
'Zapatillas',
'Buzos',
'Accesorios'
'Accesorios',
];
foreach ($categories as $nombre) {

View File

@@ -2,20 +2,20 @@
namespace Database\Seeders;
use App\Domains\Bundle\Models\Bundle;
use App\Domains\Catalog\Enums\CatalogItemType;
use App\Domains\Catalog\Enums\InventoryPolicy;
use App\Domains\Catalog\Models\Attribute;
use App\Domains\Catalog\Enums\ProductLayout;
use App\Domains\Catalog\Models\CatalogItem;
use App\Domains\Catalog\Models\Category;
use App\Domains\Catalog\Models\Product;
use App\Domains\Catalog\Services\ProductService;
use App\Domains\Catalog\Models\FeaturedGroup;
use App\Domains\Catalog\Services\CatalogService;
use App\Domains\Tenant\Models\Tenant;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
use RuntimeException;
class FiestaFutbolInfantilProductSeeder extends Seeder
{
public function __construct(private readonly ProductService $productService) {}
public function __construct(private readonly CatalogService $catalogService) {}
public function run(): void
{
@@ -25,110 +25,160 @@ class FiestaFutbolInfantilProductSeeder extends Seeder
throw new RuntimeException("Tenant 'fiesta_futbol_infantil' no encontrado.");
}
// Bundles reference product variants, so remove them before reseeding products.
Bundle::query()->where('tenant_codigo', $tenant->codigo)->delete();
$this->deleteExistingCatalog($tenant);
// Delete existing products for this tenant
$existingProducts = Product::query()
->where('tenant_codigo', $tenant->codigo)
->get();
foreach ($existingProducts as $product) {
$this->productService->delete($product);
}
// We need a category, let's just use 'Accesorios' or create an 'Entradas' category
$category = Category::firstOrCreate(['nombre' => 'Entradas', 'tenant_code' => null]);
$ticketCategory = Category::query()->firstOrCreate([
'nombre' => 'Entradas',
'tenant_code' => null,
]);
$foodCategory = Category::query()->firstOrCreate([
'nombre' => 'Gastronomía',
'tenant_code' => null,
]);
$dates = ['2026-10-09', '2026-10-10', '2026-10-11', '2026-10-12'];
$entradaVariants = [];
// 1. Entrada General
$entrada = $this->productService->create($tenant, [
'categoria_id' => $category->id,
$generalAdmission = $this->catalogService->create([
'tenant_code' => $tenant->codigo,
'category_id' => $ticketCategory->id,
'slug' => 'entrada-general',
'nombre' => 'Entrada General',
'descripcion' => 'Acceso total al predio. No incluye acceso a estacionamiento. Niños menores de 5 años ingresan gratis.',
'precio' => 10000,
'stock' => 0,
'inventory_policy' => InventoryPolicy::Unlimited->value,
'attribute_ids' => [Attribute::where('codigo', 'fecha')->where('tenant_codigo', $tenant->codigo)->first()?->id],
'has_tickets' => true,
'minimum_use_date' => $dates[0].' 00:00:00',
'maximum_use_date' => $dates[array_key_last($dates)].' 23:59:59',
'attribute_codes' => ['fecha'],
'variants' => array_map(
fn (string $date): array => [
'real_stock' => 0,
'values' => ['fecha' => $date],
],
$dates,
),
]);
foreach ($dates as $date) {
$entradaVariants[] = $this->productService->createVariant($entrada, [
'stock' => 0,
'inventory_policy' => InventoryPolicy::Unlimited->value,
'has_tickets' => true,
'minimum_use_date' => $date.' 00:00:00',
'maximum_use_date' => $date.' 23:59:59',
'definitions' => [
[
'products_attribute_id' => DB::table('products_attributes')
->where('product_id', $entrada->id)
->first()?->id,
'value' => $date,
],
],
]);
}
// Other products without variants
$gastronomiaCategory = Category::firstOrCreate(['nombre' => 'Gastronomía', 'tenant_code' => null]);
$simpleProducts = [
['slug' => 'hamburguesa-papa-frita', 'nombre' => 'Hamburguesa con papa frita', 'precio' => 8000, 'cat' => $gastronomiaCategory->id],
['slug' => 'pancho', 'nombre' => 'Pancho', 'precio' => 4000, 'cat' => $gastronomiaCategory->id],
['slug' => 'coca-cola-500ml', 'nombre' => 'Coca Cola 500ml', 'precio' => 3000, 'cat' => $gastronomiaCategory->id],
['slug' => 'agua-mineral-1l', 'nombre' => 'Agua Mineral 1L', 'precio' => 2500, 'cat' => $gastronomiaCategory->id],
['slug' => 'estacionamiento-auto', 'nombre' => 'Estacionamiento Auto', 'precio' => 5000, 'cat' => $category->id],
['slug' => 'estacionamiento-moto', 'nombre' => 'Estacionamiento Moto', 'precio' => 2000, 'cat' => $category->id],
$items = [
['slug' => 'hamburguesa-papa-frita', 'nombre' => 'Hamburguesa con papa frita', 'precio' => 8000, 'category_id' => $foodCategory->id],
['slug' => 'pancho', 'nombre' => 'Pancho', 'precio' => 4000, 'category_id' => $foodCategory->id],
['slug' => 'coca-cola-500ml', 'nombre' => 'Coca Cola 500ml', 'precio' => 3000, 'category_id' => $foodCategory->id],
['slug' => 'agua-mineral-1l', 'nombre' => 'Agua Mineral 1L', 'precio' => 2500, 'category_id' => $foodCategory->id],
['slug' => 'estacionamiento-auto', 'nombre' => 'Estacionamiento Auto', 'precio' => 5000, 'category_id' => $ticketCategory->id],
['slug' => 'estacionamiento-moto', 'nombre' => 'Estacionamiento Moto', 'precio' => 2000, 'category_id' => $ticketCategory->id],
];
$createdProducts = [];
foreach ($simpleProducts as $p) {
$createdProducts[$p['slug']] = $this->productService->create($tenant, [
'categoria_id' => $p['cat'],
'slug' => $p['slug'],
'nombre' => $p['nombre'],
'descripcion' => $p['nombre'],
'precio' => $p['precio'],
'stock' => 0,
$createdItems = [];
foreach ($items as $item) {
$createdItems[$item['slug']] = $this->catalogService->create([
'tenant_code' => $tenant->codigo,
'descripcion' => $item['descripcion'] ?? $item['nombre'],
'inventory_policy' => InventoryPolicy::Unlimited->value,
'real_stock' => 0,
...$item,
]);
}
$allDaysBundle = Bundle::query()->create([
'tenant_codigo' => $tenant->codigo,
$this->catalogService->create([
'tenant_code' => $tenant->codigo,
'type' => CatalogItemType::Bundle->value,
'slug' => 'entrada-general-todos-los-dias',
'nombre' => 'Entrada General - Todos los días',
'descripcion' => 'Incluye una entrada para cada día de la Fiesta Nacional del Fútbol Infantil.',
'precio' => 40000,
'category_id' => $ticketCategory->id,
'components' => $generalAdmission->variants
->map(fn ($variant): array => [
'catalog_item_id' => $generalAdmission->id,
'variant_id' => $variant->id,
'quantity' => 1,
])
->all(),
]);
foreach ($entradaVariants as $variant) {
$allDaysBundle->items()->create([
'producto_variante_id' => $variant->id,
'cantidad' => 1,
]);
}
$foodBundle = Bundle::query()->create([
'tenant_codigo' => $tenant->codigo,
$this->catalogService->create([
'tenant_code' => $tenant->codigo,
'type' => CatalogItemType::Bundle->value,
'slug' => 'combo-2-panchos-2-hamburguesas',
'nombre' => 'Combo 2 Panchos + 2 Hamburguesas',
'descripcion' => 'Incluye 2 panchos y 2 hamburguesas con papa frita.',
'precio' => 24000,
'category_id' => $foodCategory->id,
'components' => [
[
'catalog_item_id' => $createdItems['pancho']->id,
'quantity' => 2,
],
[
'catalog_item_id' => $createdItems['hamburguesa-papa-frita']->id,
'quantity' => 2,
],
],
]);
$foodBundle->items()->createMany([
[
'producto_variante_id' => $createdProducts['pancho']->variants()->sole()->id,
'cantidad' => 2,
$this->seedFeaturedGroups($tenant);
}
private function deleteExistingCatalog(Tenant $tenant): void
{
CatalogItem::query()
->where('tenant_code', $tenant->codigo)
->where('type', CatalogItemType::Bundle->value)
->each(fn (CatalogItem $item) => $this->catalogService->delete($item));
CatalogItem::query()
->where('tenant_code', $tenant->codigo)
->where('type', CatalogItemType::Standard->value)
->each(fn (CatalogItem $item) => $this->catalogService->delete($item));
}
private function seedFeaturedGroups(Tenant $tenant): void
{
FeaturedGroup::query()->where('tenant_code', $tenant->codigo)->delete();
$groups = [
'Entradas' => [
'entrada-general',
'entrada-general-todos-los-dias',
],
[
'producto_variante_id' => $createdProducts['hamburguesa-papa-frita']->variants()->sole()->id,
'cantidad' => 2,
'Estacionamiento' => [
'estacionamiento-auto',
'estacionamiento-moto',
],
]);
'Comidas' => [
'hamburguesa-papa-frita',
'pancho',
'combo-2-panchos-2-hamburguesas',
],
'Bebidas' => [
'coca-cola-500ml',
'agua-mineral-1l',
],
];
$catalogItems = CatalogItem::query()
->where('tenant_code', $tenant->codigo)
->whereIn('slug', collect($groups)->flatten()->all())
->get()
->keyBy('slug');
$groupOrder = 0;
foreach ($groups as $groupName => $slugs) {
$featuredGroup = FeaturedGroup::query()->create([
'tenant_code' => $tenant->codigo,
'product_layout' => ProductLayout::Row,
'group_name' => $groupName,
'group_order' => $groupOrder++,
]);
$featuredGroup->featuredItems()->createMany(
collect($slugs)->values()->map(
fn (string $slug, int $order): array => [
'catalog_item_id' => $catalogItems->get($slug)->id,
'order' => $order,
]
)->all()
);
}
}
}

View File

@@ -3,15 +3,16 @@
namespace Database\Seeders;
use App\Domains\Catalog\Enums\InventoryPolicy;
use App\Domains\Catalog\Enums\ProductLayout;
use App\Domains\Catalog\Models\Attribute;
use App\Domains\Catalog\Models\Brand;
use App\Domains\Catalog\Models\CatalogItem;
use App\Domains\Catalog\Models\Category;
use App\Domains\Catalog\Models\Product;
use App\Domains\Catalog\Services\ProductService;
use App\Domains\Catalog\Models\FeaturedGroup;
use App\Domains\Catalog\Services\CatalogService;
use App\Domains\Tenant\Models\Tenant;
use Illuminate\Database\Seeder;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Str;
use RuntimeException;
@@ -65,7 +66,7 @@ class ProductCatalogFromImagesSeeder extends Seeder
'istockphoto-1675347112-2048x2048.jpg',
];
public function __construct(private readonly ProductService $productService) {}
public function __construct(private readonly CatalogService $catalogService) {}
/**
* Run the database seeds.
@@ -140,14 +141,14 @@ class ProductCatalogFromImagesSeeder extends Seeder
->unique()
->values();
$existingProducts = Product::query()
->where('tenant_codigo', $tenant->codigo)
$existingProducts = CatalogItem::query()
->where('tenant_code', $tenant->codigo)
->whereIn('slug', $productSlugsToDelete)
->with(['attachments', 'variants.attachments'])
->with('variants:id,catalog_item_id,inventory_id')
->get();
foreach ($existingProducts as $existingProduct) {
$this->productService->delete($existingProduct);
$this->catalogService->delete($existingProduct);
}
foreach ($productsToSeed as $catalogProduct) {
@@ -158,6 +159,34 @@ class ProductCatalogFromImagesSeeder extends Seeder
$catalogProduct['variant_groups'],
);
}
$this->seedFeaturedProducts($tenant);
}
private function seedFeaturedProducts(Tenant $tenant): void
{
FeaturedGroup::query()->where('tenant_code', $tenant->codigo)->delete();
$group = FeaturedGroup::query()->create([
'tenant_code' => $tenant->codigo,
'product_layout' => ProductLayout::ColumnWithImage,
'group_name' => 'Productos',
'group_order' => 0,
]);
$items = CatalogItem::query()
->where('tenant_code', $tenant->codigo)
->orderBy('id')
->get('id');
$group->featuredItems()->createMany(
$items->values()->map(
fn (CatalogItem $item, int $order): array => [
'catalog_item_id' => $item->id,
'order' => $order,
]
)->all()
);
}
/**
@@ -189,33 +218,21 @@ class ProductCatalogFromImagesSeeder extends Seeder
throw new RuntimeException("Category '{$metadata['category_name']}' not found.");
}
$attributeIds = Attribute::query()
$attributeCodes = Attribute::query()
->where('tenant_codigo', $tenant->codigo)
->whereIn('codigo', $metadata['attribute_codes'])
->pluck('id', 'codigo');
->pluck('codigo');
if ($attributeIds->count() !== count($metadata['attribute_codes'])) {
if ($attributeCodes->count() !== count($metadata['attribute_codes'])) {
throw new RuntimeException("Missing attributes for product '{$metadata['product_slug']}'.");
}
$product = $this->productService->create($tenant, [
'categoria_id' => $category->id,
'brand_id' => $brand?->id,
'slug' => $metadata['product_slug'],
'nombre' => $metadata['product_name'],
'descripcion' => $metadata['description'],
'precio' => $pricing['price'],
'inventory_policy' => InventoryPolicy::Tracked->value,
'attribute_ids' => array_values($attributeIds->all()),
]);
$productAttributeIds = DB::table('products_attributes')
->where('product_id', $product->id)
->pluck('id', 'attribute_id');
$sizes = $metadata['type'] === 'zapatillas'
? self::SHOE_SIZES
: self::CLOTHING_SIZES;
$variants = [];
$itemImages = [];
$directStock = 0;
foreach ($variantGroups as $variantGroup) {
$images = array_map(
@@ -223,47 +240,29 @@ class ProductCatalogFromImagesSeeder extends Seeder
$variantGroup['files']
);
if ($attributeIds->isEmpty()) {
$this->productService->createVariant($product, [
'stock' => $variantGroup['stock'],
'inventory_policy' => InventoryPolicy::Tracked->value,
'definitions' => [],
'images' => $images,
]);
if ($attributeCodes->isEmpty()) {
$directStock = $variantGroup['stock'];
$itemImages = [...$itemImages, ...$images];
continue;
}
foreach ($sizes as $size) {
$definitions = [];
$values = [];
if (isset($attributeIds['color']) && $variantGroup['metadata']['color'] !== null) {
$colorProductAttributeId = $productAttributeIds[$attributeIds['color']] ?? null;
if ($colorProductAttributeId === null) {
throw new RuntimeException("Missing product attribute for color on product '{$metadata['product_slug']}'.");
}
$definitions[] = [
'products_attribute_id' => $colorProductAttributeId,
'value' => $variantGroup['metadata']['color'],
];
if ($attributeCodes->contains('color') && $variantGroup['metadata']['color'] !== null) {
$values['color'] = $variantGroup['metadata']['color'];
}
$sizeAttributeCode = $metadata['type'] === 'zapatillas'
? 'talle_numerico'
: 'talle';
$sizeProductAttributeId = $productAttributeIds[$attributeIds[$sizeAttributeCode]] ?? null;
if ($sizeProductAttributeId === null) {
if (! $attributeCodes->contains($sizeAttributeCode)) {
throw new RuntimeException("Missing product attribute for size on product '{$metadata['product_slug']}'.");
}
$definitions[] = [
'products_attribute_id' => $sizeProductAttributeId,
'value' => $size,
];
$values[$sizeAttributeCode] = $size;
// Override stock for specific variants as requested by the user
$stock = $variantGroup['stock'];
@@ -280,14 +279,30 @@ class ProductCatalogFromImagesSeeder extends Seeder
$stock = 0;
}
$this->productService->createVariant($product, [
'stock' => $stock,
'inventory_policy' => InventoryPolicy::Tracked->value,
'definitions' => $definitions,
$variants[] = [
'real_stock' => $stock,
'values' => $values,
'images' => $images,
]);
];
}
}
$this->catalogService->create([
'tenant_code' => $tenant->codigo,
'category_id' => $category->id,
'brand_id' => $brand?->id,
'slug' => $metadata['product_slug'],
'nombre' => $metadata['product_name'],
'descripcion' => $metadata['description'],
'precio' => $pricing['price'],
'inventory_policy' => InventoryPolicy::Tracked->value,
...($attributeCodes->isEmpty()
? ['real_stock' => $directStock, 'images' => $itemImages]
: [
'attribute_codes' => array_values($metadata['attribute_codes']),
'variants' => $variants,
]),
]);
}
/**