$config */ public function issueFor(array $config): ?string { $accounts = data_get($config, 'accounts'); if (! is_array($accounts) || $accounts === []) { return null; } // Single source of truth: 0 = text-only, 1 = single image, 2+ = carousel. $imageCount = (int) data_get($config, 'target_slide_count', 1); foreach ($accounts as $entry) { $contentType = ContentType::tryFrom((string) data_get($entry, 'content_type')); if (! $contentType instanceof ContentType) { continue; } $issue = $this->issueForAccount($contentType, $imageCount); if ($issue !== null) { return $issue; } } return null; } private function issueForAccount(ContentType $contentType, int $imageCount): ?string { // Generate only produces images — video-only formats (Reel, Video Pin, …) // can never be satisfied by this node. if (! $contentType->supportsImage()) { return __('automations.errors.generate_image_format_required'); } $min = $contentType->minMediaCount(); if ($min > 0 && $imageCount < $min) { return __('posts.edit.compliance.too_few_files', ['min' => (string) $min]); } if ($contentType->requiresMedia() && $imageCount === 0) { return __('posts.edit.compliance.requires_media'); } $max = min(self::MAX_GENERATED_IMAGES, $contentType->maxMediaCount()); if ($imageCount > $max) { return __('posts.edit.compliance.too_many_files', ['max' => (string) $max]); } return null; } }