# hyperpay-gateways/trunk/src/Main.php

HyperPay Payments, version trunk. 172 lines.

- Page: https://pluginprobe.com/plugins/hyperpay-gateways/trunk/code/src/Main.php
- Raw: https://pluginprobe.com/plugins/hyperpay-gateways/trunk/raw/src/Main.php
- Modified: 2026-08-13T16:22:30+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/hyperpay-gateways/trunk/code/src/Main.php#L10-L20`.

```php
<?php

namespace Hyperpay\Gateways;

use Hyperpay\Gateways\App\Hyperpay_Blocks_Support;
use Hyperpay\Gateways\Helpers\Log;
use Hyperpay\Gateways\App\Webhook;
use Automattic\WooCommerce\Blocks\Payments\PaymentMethodRegistry;
use Hyperpay\Gateways\Helpers\View;

class Main
{

    public const ROOT_PATH = __DIR__;
    /**
     * First function fire when click on active plugin
     * 
     * @return void
     */

    public static function load(): void
    {

        // do not load the plugin if wooCommerce not installed
        if (!self::isWooCommerceLoaded()) return;


        /**
         * this filter documented in wooCommerce to assign all gateways to [payments tab] inside wooCommerce settings
         * 
         * @param string filter_name 
         * @param array[class_name,function_name]
         * @return void
         */

        add_filter('woocommerce_payment_gateways', [self::class, 'get_gateways']);
        add_action('rest_api_init', [Webhook::class, 'hyperpay_rest_orders']); //register the webhook class


        // Registers WooCommerce Blocks integration.
        add_action('woocommerce_blocks_loaded', [self::class, 'my_extension_woocommerce_blocks_support']);


        if (is_admin()) {
            add_action('admin_menu', function () {
                add_options_page('Hyperpay logs', 'Hyperpay logs', 'manage_options', 'hyperpay-logs', [Log::class, "load"]);
                add_options_page('Hyperpay Options', 'Hyperpay Options', 'manage_options', 'hyperpay-options', [Main::class, "settings"]);
            });
        }
    }


    public static function settings()
    {
        if (isset($_POST['hyperpay_options_nonce']) && wp_verify_nonce(sanitize_key($_POST['hyperpay_options_nonce']), 'hyperpay-options') && isset($_POST['gateways']) && is_array($_POST['gateways'])) {

            $gateways = [];

            foreach (array_map('sanitize_text_field', wp_unslash($_POST['gateways'])) as $gateway) {
                $gateway = sanitize_text_field($gateway);
                if (\class_exists("\\Hyperpay\\Gateways\\Brands\\$gateway")) {
                    $gateways[] =  "\\Hyperpay\\Gateways\\Brands\\$gateway";
                }
            };

            if (!empty($gateways)) {
                update_option('hyperpay_payments_available_gateways', json_encode($gateways));
            }
        }

        $selected =  static::get_gateways([]);


        $selected = array_values(array_map(function ($class) {
            return \str_replace("\\Hyperpay\\Gateways\\Brands\\", "", $class);
        }, $selected));



        $files = scandir(Main::ROOT_PATH . "/Brands");
        $files = \array_filter($files, function ($name) {
            return !preg_match('/^[.]/', $name);
        });


        $files = array_values(array_map(function ($file) {
            return \str_replace(".php", "", $file);
        }, $files));

        $nonce = wp_create_nonce('hyperpay-options');

        return View::render('settings.html', \compact('selected', 'files', 'nonce'));
    }



    /**
     * Check if the wooCommerce plugin is installed and active
     * @return boolean
     */

    private static function isWooCommerceLoaded()
    {
        if (!class_exists('woocommerce')) {

            add_action(
                'admin_notices',
                function () {
?>
                <div class="notice notice-error">
                    <p>
                        <?php
                        printf(/* translators: %s: WooCommerce plugin install URL */
                            esc_html__('Hyperpay plugin could not be loaded without wooCommerce please install wooCommerce first',  'hyperpay-gateways'),
                            '<a href="' . esc_url('/wp-admin/plugin-install.php?s=WooCommerce&tab=search&type=term') . '" rel="noopener noreferrer">',
                            '</a>'
                        );
                        ?>
                    </p>
                </div>
<?php
                }
            );
            return false;
        }
        return true;
    }


    /**
     * Merge the previous gateways with hyperPay gateways
     * 
     * @param array $gateways
     * @return array $updated_gateways
     */

    public static function get_gateways(array $gateways): array
    {
        $selected = [ // default gateways
            "\\Hyperpay\\Gateways\\Brands\\Mada",
            "\\Hyperpay\\Gateways\\Brands\\CreditCard",
            "\\Hyperpay\\Gateways\\Brands\\STCPay",
            "\\Hyperpay\\Gateways\\Brands\\ApplePay",
            "\\Hyperpay\\Gateways\\Brands\\Tabby",
            "\\Hyperpay\\Gateways\\Brands\\Tamara",
            "\\Hyperpay\\Gateways\\Brands\\UrPay",
            "\\Hyperpay\\Gateways\\Brands\\Valu",
            "\\Hyperpay\\Gateways\\Brands\\GooglePay",
            "\\Hyperpay\\Gateways\\Brands\\Aani",
            "\\Hyperpay\\Gateways\\Brands\\Jaywan"
            // "\\Hyperpay\\Gateways\\Brands\\SamsungPay"

        ];


        return array_merge($gateways, $selected);
    }


    public static function my_extension_woocommerce_blocks_support()
    {
        if (class_exists('Automattic\WooCommerce\Blocks\Payments\Integrations\AbstractPaymentMethodType')) {
            add_action(
                'woocommerce_blocks_payment_method_type_registration',
                function (PaymentMethodRegistry $payment_method_registry) {
                    $payment_method_registry->register(new Hyperpay_Blocks_Support);
                }
            );
        }
    }
}

```
