# packeta/trunk/src/Packetery/Module/Shipping/ShippingProvider.php

Packeta, version trunk. 243 lines.

- Page: https://pluginprobe.com/plugins/packeta/trunk/code/src/Packetery/Module/Shipping/ShippingProvider.php
- Raw: https://pluginprobe.com/plugins/packeta/trunk/raw/src/Packetery/Module/Shipping/ShippingProvider.php
- Modified: 2025-11-07T08:59:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/packeta/trunk/code/src/Packetery/Module/Shipping/ShippingProvider.php#L10-L20`.

```php
<?php

declare( strict_types=1 );

namespace Packetery\Module\Shipping;

use Packetery\Core\Entity\Carrier;
use Packetery\Module\Carrier\CarDeliveryConfig;
use Packetery\Module\Carrier\CarrierOptionsFactory;
use Packetery\Module\Carrier\EntityRepository;
use Packetery\Module\ContextResolver;
use Packetery\Module\ShippingMethod;
use Packetery\Module\ShippingZoneRepository;
use WC_Abstract_Order;

class ShippingProvider {
	/**
	 * @var array<int, array<string, string>>
	 */
	private static $sortedMethodsCache = [];

	/**
	 * @var CarDeliveryConfig
	 */
	private $carDeliveryConfig;

	/**
	 * @var ContextResolver
	 */
	private $contextResolver;

	/**
	 * @var ShippingZoneRepository
	 */
	private $shippingZoneRepository;

	/**
	 * @var EntityRepository
	 */
	private $carrierRepository;

	/**
	 * @var CarrierOptionsFactory
	 */
	private $carrierOptionsFactory;

	public function __construct(
		CarDeliveryConfig $carDeliveryConfig,
		ContextResolver $contextResolver,
		ShippingZoneRepository $shippingZoneRepository,
		EntityRepository $carrierRepository,
		CarrierOptionsFactory $carrierOptionsFactory
	) {
		$this->carDeliveryConfig      = $carDeliveryConfig;
		$this->contextResolver        = $contextResolver;
		$this->shippingZoneRepository = $shippingZoneRepository;
		$this->carrierRepository      = $carrierRepository;
		$this->carrierOptionsFactory  = $carrierOptionsFactory;
	}

	/**
	 * Loads generated shipping methods, including split ones when split is off.
	 * Used in CLI generator.
	 */
	public static function loadAllClasses(): void {
		$generatedClassesPath = __DIR__ . '/Generated';
		foreach ( scandir( $generatedClassesPath ) as $filename ) {
			if ( preg_match( '/\.php$/', $filename ) ) {
				require_once $generatedClassesPath . '/' . $filename;
			}
		}
	}

	/**
	 * Loads generated shipping methods.
	 */
	public function loadClasses(): void {
		$generatedClassesPath = __DIR__ . '/Generated';
		foreach ( scandir( $generatedClassesPath ) as $filename ) {
			if ( ! preg_match( '/\.php$/', $filename ) ) {
				continue;
			}
			if ( $this->carDeliveryConfig->isDisabled() ) {
				$carDeliveryIds = implode( '|', Carrier::CAR_DELIVERY_CARRIERS );
				if ( preg_match( '/^ShippingMethod_(' . $carDeliveryIds . ')\.php$/', $filename ) ) {
					continue;
				}
			}
			require_once $generatedClassesPath . '/' . $filename;
		}
	}

	/**
	 * Gets all full classnames of generated shipping methods.
	 */
	private function getGeneratedClassnames(): array {
		$namespace = __NAMESPACE__ . '\Generated';

		return array_filter(
			get_declared_classes(),
			function ( $fullyQualifiedClassname ) use ( $namespace ) {
				return strpos( $fullyQualifiedClassname, $namespace ) === 0;
			}
		);
	}

	public static function wcOrderHasOurMethod( WC_Abstract_Order $wcOrder ): bool {
		foreach ( $wcOrder->get_shipping_methods() as $shippingMethod ) {
			if ( self::isPacketaMethod( $shippingMethod->get_method_id() ) ) {
				return true;
			}
		}

		return false;
	}

	/**
	 * Checks if provided shipping method id belongs to one of Packeta methods.
	 */
	public static function isPacketaMethod( string $methodId ): bool {
		return (
			$methodId === ShippingMethod::PACKETERY_METHOD_ID ||
			strpos( $methodId, BaseShippingMethod::PACKETA_METHOD_PREFIX ) === 0
		);
	}

	/**
	 * Loads shipping methods, uses different approach for zone setting page.
	 *
	 * @param array<string, string> $methods Previous state.
	 *
	 * @return array<string, string>
	 */
	private function addMethods( array $methods ): array {
		$zoneId = $this->contextResolver->getShippingZoneId();
		if ( $zoneId === null ) {
			return $this->addAllMethods( $methods );
		}

		$allowedCountries = $this->shippingZoneRepository->getCountryCodesForShippingZone( $zoneId );
		if ( $allowedCountries === [] ) {
			return $this->addAllMethods( $methods );
		}

		foreach ( $allowedCountries as $countryCode ) {
			$carriers = $this->carrierRepository->getByCountryIncludingNonFeed( $countryCode, false );
			foreach ( $carriers as $carrier ) {
				foreach ( $this->getGeneratedClassnames() as $fullyQualifiedClassname ) {
					if ( $carrier->getId() === $fullyQualifiedClassname::CARRIER_ID ) {
						$methods = $this->addActiveCarrierMethod( $fullyQualifiedClassname, $methods );

						break;
					}
				}
			}
		}

		return $methods;
	}

	/**
	 * Add shipping methods to array.
	 *
	 * @param array<string, string> $methods Array.
	 *
	 * @return array<string, string>
	 */
	private function addAllMethods( array $methods ): array {
		foreach ( $this->getGeneratedClassnames() as $fullyQualifiedClassname ) {
			$methods = $this->addActiveCarrierMethod( $fullyQualifiedClassname, $methods );
		}

		return $methods;
	}

	/**
	 * Adds shipping method to array in case the carrier is active.
	 *
	 * @param string                $fullyQualifiedClassname Fully qualified classname.
	 * @param array<string, string> $methods                 Methods.
	 *
	 * @return array<string, string>
	 */
	private function addActiveCarrierMethod( string $fullyQualifiedClassname, array $methods ): array {
		/**
		 * Generated shipping method.
		 *
		 * @var BaseShippingMethod $fullyQualifiedClassname
		 */
		// @phpstan-ignore-next-line
		$carrierOptions = $this->carrierOptionsFactory->createByCarrierId( $fullyQualifiedClassname::CARRIER_ID );
		if ( $carrierOptions->isActive() ) {
			$methods[ $fullyQualifiedClassname::getShippingMethodId() ] = $fullyQualifiedClassname;
		}

		return $methods;
	}

	/**
	 * Sort classnames by method_title property.
	 *
	 * @param array<string, string> $methods Methods to sort.
	 *
	 * @return array<string, string>
	 */
	private function sortMethods( array $methods ): array {
		uasort(
			$methods,
			function ( $classA, $classB ) {
				$objectA = new $classA();
				$objectB = new $classB();

				// phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps
				return strcmp( $objectA->method_title, $objectB->method_title );
			}
		);

		return $methods;
	}

	/**
	 * @param array<string, string> $originalMethods
	 *
	 * @return array<string, string>
	 */
	public function getSortedCachedMethods( array $originalMethods ): array {
		$areClassesLoaded = in_array( BaseShippingMethod::class, get_declared_classes(), true );
		if ( $areClassesLoaded === false ) {
			return $originalMethods;
		}

		// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize
		$cacheKey = crc32( serialize( $originalMethods ) );

		if ( ! isset( self::$sortedMethodsCache[ $cacheKey ] ) ) {
			$unsortedMethods                       = $this->addMethods( $originalMethods );
			self::$sortedMethodsCache[ $cacheKey ] = $this->sortMethods( $unsortedMethods );
		}

		return self::$sortedMethodsCache[ $cacheKey ];
	}
}

```
