# packeta/trunk/src/Packetery/Module/Framework/WcAdapter.php

Packeta, version trunk. 174 lines.

- Page: https://pluginprobe.com/plugins/packeta/trunk/code/src/Packetery/Module/Framework/WcAdapter.php
- Raw: https://pluginprobe.com/plugins/packeta/trunk/raw/src/Packetery/Module/Framework/WcAdapter.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/Framework/WcAdapter.php#L10-L20`.

```php
<?php
/**
 * Class WcAdapter.
 *
 * @package Packetery
 */

declare( strict_types=1 );

namespace Packetery\Module\Framework;

use Automattic\WooCommerce\Utilities\FeaturesUtil;
use Automattic\WooCommerce\Utilities\LoggingUtil;
use stdClass;
use WC_Admin_Status;
use WC_Blocks_Utils;
use WC_Data_Store;
use WC_Logger;
use WC_Logger_Interface;
use WC_Product;
use WC_Shipping_Rate;
use WC_Shipping_Zone;
use WC_Shipping_Zone_Data_Store_Interface;
use WC_Shipping_Zones;

/**
 * Class WcAdapter.
 *
 * @package Packetery
 */
class WcAdapter {
	use ActionSchedulerTrait;
	use WcCartTrait;
	use WcCustomerTrait;
	use WcPageTrait;
	use WcSessionTrait;
	use WcTaxTrait;

	/**
	 * Converts weight from global unit to kg.
	 *
	 * @param int|float $weight Weight.
	 * @param string    $toUnit To unit.
	 *
	 * @return float
	 */
	public function getWeight( $weight, string $toUnit ): float {
		return (float) wc_get_weight( $weight, $toUnit );
	}

	/**
	 * Gets WC product by id.
	 *
	 * @param mixed $productId Product ID.
	 *
	 * @return WC_Product|null
	 */
	public function productFactoryGetProduct( $productId ): ?\WC_Product {
		$product = WC()->product_factory->get_product( $productId );
		if ( $product instanceof WC_Product ) {
			return $product;
		}

		return null;
	}

	/**
	 * Gets product by post or post id.
	 *
	 * @param mixed $theProduct Post id or object.
	 *
	 * @return false|WC_Product|null
	 */
	public function getProduct( $theProduct ) {
		return wc_get_product( $theProduct );
	}

	public function isCheckout(): bool {
		return is_checkout();
	}

	public function featuresUtilDeclareCompatibility( string $featureId, string $pluginFile, bool $positiveCompatibility = true ): void {
		FeaturesUtil::declare_compatibility( $featureId, $pluginFile, $positiveCompatibility );
	}

	public function storeApiRegisterUpdateCallback( array $args ): void {
		woocommerce_store_api_register_update_callback( $args );
	}

	public function shipToBillingAddressOnly(): bool {
		return wc_ship_to_billing_address_only();
	}

	public function shippingGetPackages(): array {
		return WC()->shipping()->get_packages();
	}

	public function addNotice( string $message, string $noticeType ): void {
		wc_add_notice( $message, $noticeType );
	}

	/**
	 * @return WC_Logger|WC_Logger_Interface
	 */
	public function getLogger() {
		return wc_get_logger();
	}

	/**
	 * @return array<string, array{
	 *      name: string,
	 *      countries: array<int, string>
	 *  }>
	 */
	public function countriesGetContinents(): array {
		return WC()->countries->get_continents();
	}

	/**
	 * @param array{contents: array<string, array<string, mixed>>, contents_cost: float, applied_coupons: array, user: array{ID: int}, destination: array<string, string>, cart_subtotal: float, packetery_payment_method: mixed, rates: array<string, WC_Shipping_Rate>} $package
	 *
	 * @return WC_Shipping_Zone
	 */
	public function shippingZonesGetZoneMatchingPackage( array $package ): WC_Shipping_Zone {
		return WC_Shipping_Zones::get_zone_matching_package( $package );
	}

	public function hasBlockInPage( int $page, string $blockName ): bool {
		return WC_Blocks_Utils::has_block_in_page( $page, $blockName );
	}

	/**
	 * @param string $objectType
	 *
	 * @return WC_Data_Store|WC_Shipping_Zone_Data_Store_Interface
	 */
	public function dataStoreLoad( string $objectType ): object {
		return WC_Data_Store::load( $objectType );
	}

	/**
	 * Returns WC_Abstract_Order[]
	 *
	 * @param array<string, mixed> $args
	 *
	 * @return array<mixed, mixed>
	 */
	public function getOrdersWithoutPagination( array $args ): array {
		$results = wc_get_orders( $args );

		if ( is_array( $results ) ) {
			return $results;
		}

		if ( $results instanceof stdClass && isset( $results->orders ) && is_array( $results->orders ) ) {
			return $results->orders;
		}

		return [];
	}

	public function adminStatusStatusReport(): void {
		WC_Admin_Status::status_report();
	}

	public function loggingUtilGetLogDirectory( bool $createDir = true ): ?string {
		if ( class_exists( LoggingUtil::class ) === false ) {
			return null;
		}

		return LoggingUtil::get_log_directory( $createDir );
	}
}

```
