pageRenderer = $pageRenderer; $this->listingPageLimit = $listingPageLimit; $this->subscribersFeature = $subscribersFeature; $this->servicesChecker = $servicesChecker; $this->wp = $wp; $this->woocommerceHelper = $woocommerceHelper; $this->wpPostListLoader = $wpPostListLoader; $this->segmentDependencyValidator = $segmentDependencyValidator; $this->customFieldsRepository = $customFieldsRepository; $this->customFieldsResponseBuilder = $customFieldsResponseBuilder; $this->transientCache = $transientCache; $this->segmentsRepository = $segmentsRepository; $this->newslettersRepository = $newslettersRepository; $this->tagRepository = $tagRepository; $this->trackingConfig = $trackingConfig; $this->newslettersResponseBuilder = $newslettersResponseBuilder; } public function render() { $installer = new Installer(Installer::PREMIUM_PLUGIN_SLUG); $pluginInformation = $installer->retrievePluginInformation(); $data = []; $data['items_per_page'] = $this->listingPageLimit->getLimitPerPage('segments'); $data['mss_active'] = Bridge::isMPSendingServiceEnabled(); $data['subscribers_limit'] = $this->subscribersFeature->getSubscribersLimit(); $data['subscribers_limit_reached'] = $this->subscribersFeature->check(); $data['has_valid_api_key'] = $this->subscribersFeature->hasValidApiKey(); $data['has_valid_premium_key'] = $this->subscribersFeature->hasValidPremiumKey(); $data['subscriber_count'] = $this->subscribersFeature->getSubscribersCount(); $data['has_premium_support'] = $this->subscribersFeature->hasPremiumSupport(); $data['link_premium'] = $this->wp->getSiteUrl(null, '/wp-admin/admin.php?page=mailpoet-upgrade'); $data['mss_key_invalid'] = ($this->servicesChecker->isMailPoetAPIKeyValid() === false); $data['current_wp_user_email'] = $this->wp->wpGetCurrentUser()->user_email; $data['premium_plugin_active'] = $this->servicesChecker->isPremiumPluginActive(); $data['premium_plugin_installed'] = $data['premium_plugin_active'] || Installer::isPluginInstalled(Installer::PREMIUM_PLUGIN_SLUG); $data['premium_plugin_download_url'] = $pluginInformation->download_link ?? null; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps $data['premium_plugin_activation_url'] = $installer->generatePluginActivationUrl(Installer::PREMIUM_PLUGIN_PATH); $data['plugin_partial_key'] = $this->servicesChecker->generatePartialApiKey(); $data['email_volume_limit_reached'] = $this->subscribersFeature->checkEmailVolumeLimitIsReached(); $data['email_volume_limit'] = $this->subscribersFeature->getEmailVolumeLimit(); $customFields = $this->customFieldsRepository->findBy([], ['name' => 'asc']); $data['custom_fields'] = $this->customFieldsResponseBuilder->buildBatch($customFields); $wpRoles = $this->wp->getEditableRoles(); $data['wordpress_editable_roles_list'] = array_map(function($roleId, $role) { return [ 'role_id' => $roleId, 'role_name' => $role['name'], ]; }, array_keys($wpRoles), $wpRoles); $data['newsletters_list'] = $this->newslettersResponseBuilder->buildForListing($this->newslettersRepository->getStandardNewsletterList()); $data['static_segments_list'] = []; $criteria = new Criteria(); $criteria->where(Criteria::expr()->isNull('deletedAt')); $criteria->andWhere(Criteria::expr()->neq('type', SegmentEntity::TYPE_DYNAMIC)); $criteria->orderBy(['name' => 'ASC']); $segments = $this->segmentsRepository->matching($criteria); foreach ($segments as $segment) { $data['static_segments_list'][] = [ 'id' => $segment->getId(), 'name' => $segment->getName(), 'type' => $segment->getType(), 'description' => $segment->getDescription(), ]; } $data['tags'] = array_map(function (TagEntity $tag): array { return [ 'id' => $tag->getId(), 'name' => $tag->getName(), ]; }, $this->tagRepository->findBy([], ['name' => 'ASC'])); $data['product_categories'] = $this->wpPostListLoader->getWooCommerceCategories(); $data['products'] = $this->wpPostListLoader->getProducts(); $data['membership_plans'] = $this->wpPostListLoader->getMembershipPlans(); $data['subscription_products'] = $this->wpPostListLoader->getSubscriptionProducts(); $data['is_woocommerce_active'] = $this->woocommerceHelper->isWooCommerceActive(); $wcCountries = $this->woocommerceHelper->isWooCommerceActive() ? $this->woocommerceHelper->getAllowedCountries() : []; $data['woocommerce_countries'] = array_map(function ($code, $name) { return [ 'name' => $name, 'code' => $code, ]; }, array_keys($wcCountries), $wcCountries); $data['can_use_woocommerce_memberships'] = $this->segmentDependencyValidator->canUseDynamicFilterType( DynamicSegmentFilterData::TYPE_WOOCOMMERCE_MEMBERSHIP ); $data['can_use_woocommerce_subscriptions'] = $this->segmentDependencyValidator->canUseDynamicFilterType( DynamicSegmentFilterData::TYPE_WOOCOMMERCE_SUBSCRIPTION ); $wooCurrencySymbol = $this->woocommerceHelper->isWooCommerceActive() ? $this->woocommerceHelper->getWoocommerceCurrencySymbol() : ''; $data['woocommerce_currency_symbol'] = html_entity_decode($wooCurrencySymbol); $data['tracking_config'] = $this->trackingConfig->getConfig(); $subscribersCacheCreatedAt = $this->transientCache->getOldestCreatedAt(TransientCache::SUBSCRIBERS_STATISTICS_COUNT_KEY); $subscribersCacheCreatedAt = $subscribersCacheCreatedAt ?: Carbon::now(); $data['subscribers_counts_cache_created_at'] = $subscribersCacheCreatedAt->format('Y-m-d\TH:i:sO'); $this->pageRenderer->displayPage('segments.html', $data); } }