Pregunta

Entonces, cuando intento ejecutar esta línea de código, recibo el siguiente error:

ERROR FATAL: Llame a la función indefinida Curl_http_api_request_ () en /applications/xampp/xamppfiles/htdocs/ci/application/libraries/shopify.php en la línea 58

donde la línea 58 es específicamente esta línea:

$response = curl_http_api_request_($method, $url, $query, $payload, $request_headers, $response_headers);

No estoy realmente seguro de por qué no puede llamar la segunda función.El código está a continuación.No tengo ni idea y tengo una pérdida en cuanto a lo que es el problema.

class Shopify
{
public $_api_key;
public $_shared_secret;
public $CI; // To hold the CI superglobal



public function __construct ()
{
    $this->_assign_libraries(); // Loads the CI superglobal and loads the config into it

    // Get values from the CI config
    $this->_api_key                     = $this->CI->config->item('api_key', 'shopify');
    $this->_shared_secret               = $this->CI->config->item('shared_secret', 'shopify');
}

public function shopify_app_install_url($shop_domain)
{
    return "http://$shop_domain/admin/api/auth?api_key=". $this->_api_key;
}


public function shopify_is_app_installed($shop, $t, $timestamp, $signature)
{
    return (md5($this->_shared_secret . "shop={$shop}t={$t}timestamp={$timestamp}") === $signature);
}


public function shopify_api_client($shops_myshopify_domain, $shops_token, $private_app=false)
{
    $password = $private_app ? $this->_shared_secret : md5($this->_shared_secret.$shops_token);
    $baseurl = "https://" . $this->_api_key . ":$password@$shops_myshopify_domain/";

    return function ($method, $path, $params=array(), &$response_headers=array()) use ($baseurl)
    {
        $url = $baseurl.ltrim($path, '/');
        $query = in_array($method, array('GET','DELETE')) ? $params : array();
        $payload = in_array($method, array('POST','PUT')) ? stripslashes(json_encode($params)) : array();
        $request_headers = in_array($method, array('POST','PUT')) ? array("Content-Type: application/json; charset=utf-8", 'Expect:') : array();

        $response = curl_http_api_request_($method, $url, $query, $payload, $request_headers, $response_headers);
        $response = json_decode($response, true);

        if (isset($response['errors']) or ($response_headers['http_status_code'] >= 400))
            throw new ShopifyApiException(compact('method', 'path', 'params', 'response_headers', 'response', 'shops_myshopify_domain', 'shops_token'));

        return (is_array($response) and (count($response) > 0)) ? array_shift($response) : $response;
    };
}

    public function curl_http_api_request_($method, $url, $query='', $payload='', $request_headers=array(), &$response_headers=array())
    {
        $url = curl_append_query_($url, $query);
        $ch = curl_init($url);
        curl_setopts_($ch, $method, $payload, $request_headers);
        $response = curl_exec($ch);
        $errno = curl_errno($ch);
        $error = curl_error($ch);
        curl_close($ch);

        if ($errno) throw new ShopifyCurlException($error, $errno);

        list($message_headers, $message_body) = preg_split("/\r\n\r\n|\n\n|\r\r/", $response, 2);
        $response_headers = $this->curl_parse_headers_($message_headers);

        return $message_body;
    }

        private function curl_append_query_($url, $query)
        {
            if (empty($query)) return $url;
            if (is_array($query)) return "$url?".http_build_query($query);
            else return "$url?$query";
        }

        private function curl_setopts_($ch, $method, $payload, $request_headers)
        {
            curl_setopt($ch, CURLOPT_HEADER, true);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
            curl_setopt($ch, CURLOPT_MAXREDIRS, 3);
            curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
            curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
            curl_setopt($ch, CURLOPT_USERAGENT, 'HAC');
            curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
            curl_setopt($ch, CURLOPT_TIMEOUT, 30);

            if ('GET' == $method)
            {
                curl_setopt($ch, CURLOPT_HTTPGET, true);
            }
            else
            {
                curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, $method);
                if (!empty($request_headers)) curl_setopt($ch, CURLOPT_HTTPHEADER, $request_headers);
                if (!empty($payload))
                {
                    if (is_array($payload)) $payload = http_build_query($payload);
                    curl_setopt ($ch, CURLOPT_POSTFIELDS, $payload);
                }
            }
        }

        private function curl_parse_headers_($message_headers)
        {
            $header_lines = preg_split("/\r\n|\n|\r/", $message_headers);
            $headers = array();
            list(, $headers['http_status_code'], $headers['http_status_message']) = explode(' ', trim(array_shift($header_lines)), 3);
            foreach ($header_lines as $header_line)
            {
                list($name, $value) = explode(':', $header_line, 2);
                $name = strtolower($name);
                $headers[$name] = trim($value);
            }

            return $headers;
        }


public function shopify_calls_made($response_headers)
{
    return shopify_shop_api_call_limit_param_(0, $response_headers);
}

public function shopify_call_limit($response_headers)
{
    return shopify_shop_api_call_limit_param_(1, $response_headers);
}

public function shopify_calls_left($response_headers)
{
    return shopify_call_limit($response_headers) - shopify_calls_made($response_headers);
}

    private function shopify_shop_api_call_limit_param_($index, $response_headers)
    {
        $params = explode('/', $response_headers['http_x_shopify_shop_api_call_limit']);
        return (int) $params[$index];
    }


/**
 * Shopify::_assign_libraries()
 *
 * Grab everything from the CI superobject that we need
 */
 public function _assign_libraries()
 {

        $this->CI =& get_instance();


        $this->CI->load->config('shopify', TRUE);

        return;

 }

Actualización: Esta línea completa se inicia por mí, llamando a esta línea de código:

$shopify = $this->shopify->shopify_api_client($shops_myshopify_domain, $shops_token);

También he actualizado el código anterior para incluir el archivo completo.

¿Fue útil?

Solución

Puede lograrlo solo pasando $ como objeto a la función anónima, ya que tiene su propio contexto:

class example {
    public function trigger() {
        $func = $this->func();
        $func($this);
    }

    public function func() {
        return function($obj) {
            $obj->inner();
        };
    }

    public function inner() {
        die('inside inner');
    }
}

$obj = new example();
$obj->trigger();

Editar: Entonces, en respuesta a su problema:

  1. Cambia esta línea:

    Función de retorno (Método $, $ Ruta, $ params= Array (), & $ Response_Headers= Array ()) Uso ($ BASEURL)

    en esto:

    return function ($instance, $method, $path, $params=array(), &$response_headers=array()) use ($baseurl)
    

    1. dentro de la función anónima Cambie esta línea:

      $ Response= CURL_HTTP_API_REQUEST _ ($ MÉTODO, $ URL, $ consulta, $ Payload, $ Solicitud_Headers, $ Response_Headers);

      en esto:

      $response = $instance->curl_http_api_request_($method, $url, $query, $payload, $request_headers, $response_headers);
      

      1. Ahora Shopify_api_client Function le devolverá esta función anónima sin error:

        $ shopyify= $ esto-> shopify-> shopify_api_client ($ shops_myshopify_dominio, $ shops_token);

      2. Debe llamar a esta función de esta manera:

        $ shopify ($ esto-> Shopify, ... y aquí el resto de argumentos que la función anónima requiere ...);

        ¿Es más claro ahora? Nunca he usado Shopify, pero en general, debería funcionar es lo que escribí.

Otros consejos

Si desea acceder a un método desde fuera de la clase, debe indicarlo, si desea acceder al método desde la clase, debe usar $this->methodname()

<?php
class shopify_api{
    ...

    ...

    ...
    public function curl_http_api_request_($method, $url, $query='', $payload='', $request_headers=array(), &$response_headers=array())
    {
        $url = curl_append_query_($url, $query);
        $ch = curl_init($url);
        curl_setopts_($ch, $method, $payload, $request_headers);
        $response = curl_exec($ch);
        $errno = curl_errno($ch);
        $error = curl_error($ch);
        curl_close($ch);

        if ($errno) throw new ShopifyCurlException($error, $errno);

        list($message_headers, $message_body) = preg_split("/\r\n\r\n|\n\n|\r\r/", $response, 2);
        $response_headers = $this->curl_parse_headers_($message_headers);

        return $message_body;
    }

}

$shopify = new shopify_api();
//--------V
$response=$shopify->curl_http_api_request_();
?>


ya que ha actualizado su pregunta, ha intentado cambiar:

$shopify = $this->shopify->shopify_api_client($shops_myshopify_domain, $shops_token);

también: (como parece su adición de propiedad extrateral de Shopify, no puedo ver en su código de código donde ha configurado y inyectado sus métodos)

$shopify = $this->shopify_api_client($shops_myshopify_domain, $shops_token);

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top