Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/Corals/modules/Payment/Coinbase/coinbase-commerce-php/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/Corals/modules/Payment/Coinbase/coinbase-commerce-php/Util.php
<?php

namespace CoinbaseCommerce;

use CoinbaseCommerce\Resources\Charge;
use CoinbaseCommerce\Resources\Checkout;
use CoinbaseCommerce\Resources\Event;

class Util
{
    private static $mapResourceByName = [];

    /**
     * @param mixed $response
     */
    public static function convertToApiObject($response)
    {
        if ($response instanceof ApiResponse) {
            $response = isset($response->bodyArray['data']) ? $response->bodyArray['data'] : null;
        }

        if (is_array($response)) {
            array_walk(
                $response,
                function (&$item) {
                    $item = self::convertToApiObject($item);
                }
            );
        }

        if (isset($response['resource']) && $resourceClass = self::getResourceClassByName($response['resource'])) {
            return new $resourceClass($response);
        }

        return $response;
    }

    public static function getResourceClassByName($name)
    {
        if (empty(self::$mapResourceByName)) {
            self::$mapResourceByName = [
                'checkout' => Checkout::getClassName(),
                'charge' => Charge::getClassName(),
                'event' => Event::getClassName()
            ];
        }

        return isset(self::$mapResourceByName[$name]) ? self::$mapResourceByName[$name] : null;
    }

    /**
     * @return string
     */
    public static function joinPath()
    {
        $arguments = func_get_args();
        array_walk(
            $arguments,
            function (&$item) {
                $item = trim($item, '/');
            }
        );

        return implode('/', $arguments);
    }

    /**
     * @param mixed $prop1
     * @param mixed $prop2
     * @return bool
     */
    public static function equal($prop1, $prop2)
    {
        if (is_array($prop1)) {
            foreach ($prop1 as $key => $value) {
                if (!is_array($prop2) || !array_key_exists($key, $prop2)) {
                    return false;
                }
                if (is_array($value)) {
                    if (!self::equal($value, $prop2[$key])) {
                        return false;
                    }
                }
                if ($value != $prop2[$key]) {
                    return false;
                }
            }
        }

        return $prop1 === $prop2;
    }

    /**
     * @param string $str1
     * @param string $str2
     * @return bool
     */
    public static function hashEqual($str1, $str2)
    {
        if (function_exists('hash_equals')) {
            return \hash_equals($str1, $str2);
        }

        if (strlen($str1) != strlen($str2)) {
            return false;
        } else {
            $res = $str1 ^ $str2;
            $ret = 0;

            for ($i = strlen($res) - 1; $i >= 0; $i--) {
                $ret |= ord($res[$i]);
            }
            return !$ret;
        }
    }
}

Spamworldpro Mini