HEX
Server: Apache
System: Linux beta.alfanet.ee 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: busines1 (1252)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home-ssd1/busines1/www/wp-content/plugins/woocommerce-multilingual/classes/Orders/Helper.php
<?php

namespace WCML\Orders;

use WPML\FP\Fns;
use WPML\FP\Logic;
use WPML\FP\Maybe;
use WPML\FP\Relation;
use WPML\LIB\WP\Cache;
use function WPML\FP\invoke;
use function WPML\FP\pipe;
use WCML\COT\Helper as COTHelper;
use WCML\Orders\Legacy\Helper as LegacyHelper;

class Helper {

	const CACHE_GROUP         = 'wcml_order_currency';
	const KEY_LEGACY_CURRENCY = '_order_currency';

	/**
	 * @param int  $orderId
	 * @param bool $useDB
	 *
	 * @return string|null
	 */
	public static function getCurrency( $orderId, $useDB = false ) {
		$useDB = $useDB || ! did_action( 'woocommerce_after_register_post_type' );

		if ( $useDB ) {
			return self::getCurrencyFromDB( $orderId );
		} else {
			return self::getCurrencyFromOrderObject( $orderId );
		}
	}

	/**
	 * @param int $orderId
	 *
	 * @return string|null
	 */
	private static function getCurrencyFromDB( $orderId ) {
		/** @var callable(int):(string|null) $getCurrency */
		$getCurrency = Cache::memorize( self::CACHE_GROUP, MINUTE_IN_SECONDS, function( $orderId ) {
			/** @var \wpdb $wpdb */
			global $wpdb;

			if ( \WCML\COT\Helper::isUsageEnabled() ) {
				$orderTable = \WCML\COT\Helper::getTableName();

				$currency = $wpdb->get_var(
					$wpdb->prepare(
						"SELECT currency FROM {$orderTable} WHERE id = %d",
						$orderId
					)
				);
			} else {
				$currency = get_post_meta( $orderId, self::KEY_LEGACY_CURRENCY, true );
			}

			return $currency ?: null;
		} );

		return $getCurrency( $orderId );
	}

	/**
	 * @param int $orderId
	 *
	 * @return string|null
	 */
	private static function getCurrencyFromOrderObject( $orderId ) {
		$isNotAutoDraft = pipe(
			invoke( 'get_status' ),
			Relation::equals( 'auto-draft' ),
			Logic::not()
		);

		return Maybe::fromNullable( wc_get_order( $orderId ) )
			->filter( $isNotAutoDraft )
			->map( invoke( 'get_currency' ) )
			->getOrElse( null );
	}

	/**
	 * @param int    $orderId
	 * @param string $currency
	 *
	 * @return void
	 */
	public static function setCurrency( $orderId, $currency ) {
		Maybe::fromNullable( wc_get_order( $orderId ) )
			->map( Fns::tap( invoke( 'set_currency' )->with( $currency ) ) )
			->map( invoke( 'save' ) );
	}

	/**
	 * Checks if the current screen is an admin screen for WooCommerce New Order (Legacy or HPOS).
	 *
	 * @return bool
	 */
	public static function isOrderCreateAdminScreen(): bool {
		return COTHelper::isOrderCreateAdminScreen() || LegacyHelper::isOrderCreateAdminScreen();
	}

	/**
	 * Checks if the current screen is an admin screen for list of WooCommerce orders (Legacy or HPOS).
	 *
	 * @return bool
	 */
	public static function isOrderListAdminScreen(): bool {
		return COTHelper::isOrderListAdminScreen() || LegacyHelper::isOrderListAdminScreen();
	}

	/**
	 * Checks if the current screen is an admin screen for WooCommerce Edit Order (Legacy or HPOS).
	 *
	 * @return bool
	 */
	public static function isOrderEditAdminScreen(): bool {
		return COTHelper::isOrderEditAdminScreen() || LegacyHelper::isOrderEditAdminScreen();
	}

	/**
	 * @return bool
	 */
	public static function isEditingNewOrderItems() {
		return (
				isset( $_POST['action'] )
				&& in_array(
					$_POST['action'],
					[
						'woocommerce_add_order_item',
						'woocommerce_remove_order_item',
						'woocommerce_calc_line_taxes',
						'woocommerce_save_order_items',
					],
					true
				)
			)
			||
			(
				isset( $_GET['action'] )
				&& $_GET['action'] === 'woocommerce_json_search_products_and_variations'
			);
	}
}