File "GatewayRepository.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/modules/ppcp-wc-gateway/src/Gateway/GatewayRepository.php
File size: 1.19 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Operations with the WC gateways.
 *
 * @package WooCommerce\PayPalCommerce\WcGateway\Gateway
 */

declare(strict_types=1);

namespace WooCommerce\PayPalCommerce\WcGateway\Gateway;

/**
 * Class GatewayRepository
 */
class GatewayRepository {
	/**
	 * IDs of our gateways.
	 *
	 * @var string[]
	 */
	protected $ppcp_gateway_ids;

	/**
	 * GatewayRepository constructor.
	 *
	 * @param string[] $ppcp_gateway_ids IDs of our gateways.
	 */
	public function __construct( array $ppcp_gateway_ids ) {
		$this->ppcp_gateway_ids = $ppcp_gateway_ids;
	}

	/**
	 * Returns IDs of the currently enabled PPCP gateways.
	 *
	 * @return array
	 */
	public function get_enabled_ppcp_gateway_ids(): array {
		$available_gateways = WC()->payment_gateways->get_available_payment_gateways();

		return array_filter(
			$this->ppcp_gateway_ids,
			function ( string $id ) use ( $available_gateways ): bool {
				return isset( $available_gateways[ $id ] );
			}
		);
	}

	/**
	 * Indicates if a given gateway ID is registered.
	 *
	 * @param string $gateway_id The gateway ID.
	 * @return bool
	 */
	public function exists( string $gateway_id ): bool {
		return in_array( $gateway_id, $this->ppcp_gateway_ids, true );
	}
}