Ресурс дескриптора PHP cUrl заменяется целым числом - PullRequest
0 голосов
/ 19 января 2019

Я использую PHP curl , чтобы отправить серию запросов на сторонний сервер, который требует входа в систему, а затем сохранить cookie сеанса для этого имени входа.

Так что я завернул curlОперация в этом классе:

class SoapCli {
    private $ch;
    private $id;
    private $rc;

    function __construct() {
        $this->rc=0;
        $this->id=bin2hex(random_bytes(8));
        $this->ch = curl_init();
        $time=microtime(true);
        error_log(PHP_EOL.PHP_EOL."Instance id $this->id created ($time): \$this->ch = ".print_r($this->ch,true).PHP_EOL,3,"log.txt");
        curl_setopt($this->ch, CURLOPT_AUTOREFERER,1);
        curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($this->ch, CURLOPT_CONNECTTIMEOUT, 120);
        curl_setopt($this->ch, CURLOPT_COOKIEFILE, "");
        curl_setopt($this->ch, CURLOPT_ENCODING, "");
        curl_setopt($this->ch, CURLOPT_FOLLOWLOCATION, 1);
        curl_setopt($this->ch, CURLOPT_MAXREDIRS, 10);
        curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($this->ch, CURLOPT_VERBOSE, 1);
    }

    function Request(string $method, string $url, array $headers = array(), $postdata = "", $referer = null) {
        $resp = new stdClass();
        $resp->id = $this->id;
        $this->rc++;
        $time=microtime(true);
        error_log("Instance id $this->id before request $this->rc ($time): \$this->ch = ".print_r($this->ch,true).PHP_EOL,3,"log.txt");
        try {
            curl_setopt($this->ch, CURLOPT_CUSTOMREQUEST, $method);
            curl_setopt($this->ch, CURLOPT_URL, $url);
            curl_setopt($this->ch, CURLOPT_HTTPHEADER, $headers);
            if (isset($referer)) curl_setopt($this->ch, CURLOPT_REFERER, $referer);
            if (preg_match("/^POST$/i",$method)===1) curl_setopt($this->ch, CURLOPT_POSTFIELDS, $postdata);
            $resp->body = curl_exec($this->ch);
            $resp->err_message = curl_error($this->ch);
            $resp->err_number = curl_errno($this->ch);
            $resp->info = curl_getinfo($this->ch);
        }
        catch (Exception $exception) {
            $resp->err_message = $exception->getMessage();
            $resp->err_number = $exception->getCode();
            $resp->info = $exception->getTrace();
        }
        $time=microtime(true);
        error_log("Instance id $this->id before request $this->rc ($time): \$this->ch = ".print_r($this->ch,true).PHP_EOL,3,"log.txt");
        return $resp;
    }
}

Однако после 3-го запроса защищенная переменная, в которой хранится ресурс ручки curl, заменяется своим значением на 0 (целое число) и Iдействительно не могу понять, почему.Я мог только собрать этот журнал:

Instance id 1cb893bc5b7369bd created (1547852391.7976): $this->ch = Resource id #3
Instance id 1cb893bc5b7369bd before request 1 (1547852391.8025): $this->ch = Resource id #3
Instance id 1cb893bc5b7369bd before request 1 (1547852392.0723): $this->ch = Resource id #3
Instance id 1cb893bc5b7369bd before request 2 (1547852392.0778): $this->ch = Resource id #3
Instance id 1cb893bc5b7369bd before request 2 (1547852392.357): $this->ch = Resource id #3
Instance id 1cb893bc5b7369bd before request 3 (1547852392.3616): $this->ch = Resource id #3
Instance id 1cb893bc5b7369bd before request 3 (1547852392.6225): $this->ch = Resource id #3
Instance id 1cb893bc5b7369bd before request 4 (1547852393.0264): $this->ch = 0
Instance id 1cb893bc5b7369bd before request 4 (1547852393.0758): $this->ch = 0
Instance id 1cb893bc5b7369bd before request 5 (1547852394.8992): $this->ch = 0
Instance id 1cb893bc5b7369bd before request 5 (1547852394.9461): $this->ch = 0

РЕДАКТИРОВАТЬ: Это код, который потребляет класс SoapCli:

// index.php

$postdata = filter_input_array(INPUT_POST);
if ($_SESSION["logged_in"]===true) {
    echo file_get_contents("main.html");
} else if (isset($postdata) && isset($postdata["action"])) {
    $action = $postdata["action"];
    if ($action==="Login" && isset($postdata["usrcpf"]) && isset($postdata["usrpwd"])) {
        $username=$postdata["username"];
        $password=$postdata["password"];
        $sc=new SoapCli();   //instantiated here
        $_SESSION["sc"]=$sc;
        $login_response = $sc->Request(
            "GET",
            BASEURL."/login",
            array(
                "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0",
                "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
                "Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.5,en;q=0.3",
                "Connection: keep-alive",
                "Upgrade-Insecure-Requests: 1",
                "Cache-Control: max-age=0"
                )
            );
        if ($login_response->err_number) {
            echo file_get_contents("login_server_error.html");
        } else {
            $dom = new DOMDocument;
            $dom->loadHTML($login_response->body);
            $xdom  = new DOMXPath($dom);
            $csrf_token_nodes = $xdom->query("//input[@name='_csrf_token']/@value");
            if ($csrf_token_nodes->length<1) {
                echo file_get_contents("login_server_error.html");
            } else {
                $csrf_token = $csrf_token_nodes->item(0)->textContent;
                $postdata = "_csrf_token=$csrf_token&_username=$username&_password=$password&_submit=Login";
                $login_check_response = $sc->Request(
                    "POST",
                    BASEURL."/login_check",
                    array(
                        "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0",
                        "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
                        "Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.5,en;q=0.3",
                        "Content-Type: application/x-www-form-urlencoded",
                        "Connection: keep-alive",
                        "Upgrade-Insecure-Requests: 1"
                    ),
                    $postdata,
                    BASEURL."/login"
                    );
                if ($login_check_response->err_number) {
                    echo file_get_contents("login_server_error.html");
                } elseif (strpos($login_check_response->body, "api.js")) {
                    echo file_get_contents("login_auth_error.html");
                } else {
                    $route_userinfo = $sc->Request(
                        "POST",
                        BASEURL."/route",
                        array(
                             "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0",
                             "Accept: */*",
                             "Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.5,en;q=0.3",
                             "Content-Type: application/json",
                             "X-Requested-With: XMLHttpRequest",
                             "Connection: keep-alive",
                             "Upgrade-Insecure-Requests: 1",
                         ),
                        USERINFO_JSON,
                        BASEURL."/"
                        );
                    if ($route_userinfo->err_number) {
                        echo file_get_contents("login_server_error.html");
                    } else {
                        $_SESSION["logged_in"]=true;
                        $_SESSION["user_info"]=json_decode($route_userinfo->body);
                        header("Location: ".$_SERVER["PHP_SELF"], true, 303);
                    }
                }
            }
        }
    } else {
        http_response_code(400);
    }
} else {
    echo file_get_contents("login.html");
}

и

// ajax.php (called by JS in main.html, which is loaded after login)

if ($_SESSION["logged_in"]===true) {
    $postdata = filter_input_array(INPUT_POST);
    if (isset($postdata)) {
        if (isset($postdata["content"])) {
            if ($postdata["content"]==="tasks") {
                $sc=$_SESSION["sc"];
                $route_tasks = $sc->Request(
                    "POST",
                    BASEURL."/route",
                    array(
                         "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0",
                         "Accept: */*",
                         "Accept-Language: pt-BR,pt;q=0.8,en-US;q=0.5,en;q=0.3",
                         "Content-Type: application/json",
                         "X-Requested-With: XMLHttpRequest",
                         "Connection: keep-alive",
                         "Upgrade-Insecure-Requests: 1",
                     ),
                    TAKS_JSON,
                    BASEURL."/"
                    );
                if ($route_tasks->err_number) {
                    echo file_get_contents("ajax_server_error.html");
                } else {
                    $tarefas=json_decode($route_tasks->body);
                    if (isset($tarefas) && is_array($tarefas->records)) {
                        foreach($tarefas->records as $i=>$tarefa){
                            echo "<p>".$tarefa->especieTarefa->nome."</p>";
                        }
                    } else {
                        http_response_code(500);
                    }
                }
            }
        } else {
            http_response_code(400);
        }
    } else {
        http_response_code(400);
    }
} else {
    http_response_code(403);
}

Поскольку переменная SoapCli::ch недоступна вне класса, я действительно не понимаю, как ее содержимое можно изменить без оператора.Я не могу найти никакой информации о запросе http / ответе, который мог бы уничтожить дескриптор.

Дополнительная информация

Что бы это ни было, это не имеет отношения кзапрос, потому что я пытался повторить запрос № 3, который является действительным и получает действительный ответ, и его повторение не удается из-за отсутствия дескриптора.

Плюс, то, что я пытаюсь реализовать в PHP, ужесделано полнофункциональным настольным приложением .NET (winforms), так что это не так, как не может быть сделано по внешним причинам.Я просто пытаюсь сделать с PHP curl то, что я сделал с System.Net.HttpWebRequest, и наткнулся на проблему, описанную в этом посте.

Как я могу сохранить дескриптор, пока он мне нужен?

Я использую PHP 7.2 в IIS Express / Windows 10.

Ответы [ 2 ]

0 голосов
/ 21 января 2019

Я публикую этот ответ, чтобы показать, как я обошел проблему, которая была описана и объяснена @Solrac в его ответе (это правильно, и я приму):

class SoapCli {
    private $ch;
    private $cookiepot;

    function __construct() {
        $this->cookiepot=tempnam(sys_get_temp_dir(),"CookieJar");
        $this->reconstruct();
    }

    function reconstruct() {
        $this->ch = curl_init();
        curl_setopt($this->ch, CURLOPT_AUTOREFERER, true);
        curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($this->ch, CURLOPT_CONNECTTIMEOUT, 300);
        curl_setopt($this->ch, CURLOPT_COOKIEFILE, $this->cookiepot);
        curl_setopt($this->ch, CURLOPT_COOKIEJAR, $this->cookiepot);
        curl_setopt($this->ch, CURLOPT_ENCODING, "");
        curl_setopt($this->ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($this->ch, CURLOPT_HEADER, true);
        curl_setopt($this->ch, CURLINFO_HEADER_OUT, true);
        curl_setopt($this->ch, CURLOPT_MAXREDIRS, 32);
        curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($this->ch, CURLOPT_VERBOSE, true);
    }

    function Request(string $method, string $url, array $headers = array(), $postdata = "", $referer = "") {
        if (!is_resource($this->ch)) {
            $this->reconstruct();
        }
        curl_setopt($this->ch, CURLOPT_CUSTOMREQUEST, $method);
        curl_setopt($this->ch, CURLOPT_URL, $url);
        curl_setopt($this->ch, CURLOPT_HTTPHEADER, $headers);
        curl_setopt($this->ch, CURLOPT_REFERER, $referer);
        if (preg_match("/^POST$/i",$method)===1) curl_setopt($this->ch, CURLOPT_POSTFIELDS, $postdata);
        $response=curl_exec($this->ch);
        list($headers,$body)=preg_split("/\r\n\r\n(?!HTTP)/", $response, 2);
        $resp_obj = (object) array(
            "body"=>$body,
            "headers"=>$headers,
            "err_number"=>curl_errno($this->ch),
            "err_message"=>curl_error($this->ch),
            "info"=>curl_getinfo($this->ch)
        );
        return $resp_obj;
    }

    function log(string $text) {
        file_put_contents($this->id."log.txt",$text.PHP_EOL,FILE_APPEND|FILE_TEXT|LOCK_EX);
    }
}
0 голосов
/ 21 января 2019

Краткий ответ: дескриптор не существует, когда вы пытаетесь использовать его внутри ajax.php

Внутри ajax.php, посмотрите на следующую строку:

                $sc=$_SESSION["sc"];

И тогда вы звоните:

                $route_tasks = $sc->Request(
                   ...
                    );

Итак, вы установили свой класс внутри index.php и все 3 вызова были сделаны там, где успешно, затем вы записываете объект в переменную $_SESSION["sc"], и, очевидно, объект корректно кодируется и декодируется обработчиком сеанса php, поэтому вы все еще могут вызывать метод Request внутри ajax.php после извлечения объекта.

Хотя вы действительно используете объект в ajax.php, это не тот же экземпляр объекта, который был создан index.php, поскольку этот экземпляр принадлежит потоку index.php вместе с дескриптором curl; вызов ajax.php из index.php создаст другой поток для его обработки и потребует также нового дескриптора curl.

Измените $sc=$_SESSION["sc"]; на $sc=new SoapCli();, чтобы перед использованием можно было создать дескриптор curl.

...