在codeigniter php中保持与cURL的会话

时间:2017-02-03 13:16:44

标签: php session curl codeigniter-3

我有一个外部API,我想获取一些数据,我希望在我注销之前保持会话ID通过所有请求。在codeigniter中使用cURL lib我有以下流程(myacc和mypass只是占位符):

public function getCURL() {
   echo $this->curl->simple_get('http://37.99.110.537:6001/webapi/auth.cgi?api=SYNO.API.Auth&method=login&version=2&account=myacc&passwd=mypassD&format=sid&session=SurveillanceStation');
}

这将输出:

{"data":{"sid":"lH6WJCWMm5rkA14B0MPN570354"},"success":true}

在发出下一个请求时,我必须保留提供的sid(会话ID):

http://37.99.110.537:6001/webapi/entry.cgi?api=SYNO.SurveillanceStation.Camera&method=GetSnapshot&version=1&cameraId=2&timestamp=1480512959&preview=true&_sid="lH6WJCWMm5rkA14B0MPN570354"

最后查看 sid =" lH6WJCWMm5rkA14B0MPN570354"

然后退出并杀死那个sid。

每次登录后,我都会得到一个新的sid,我必须使用它来获取图片(使用该URL),然后注销。

我认为在我的情况下保存和使用文件中的cookie是不需要的,我认为如下:

public function getCURL() {
   echo $this->curl->simple_get('http://37.99.210.237:6001/webapi/auth.cgi?api=SYNO.API.Auth&method=login&version=2&account=myacc&passwd=mypassD&format=sid&session=SurveillanceStation');

   if ($this->form_validation->run()){
            $data= array(
                'sid'=> $this->input->post('sid'),
                'is_logged_in' => true
            );
$this->session->set_userdata($data);

if(false == $this->CI->session->userdata('is_logged_in')) {
       echo $this->curl->simple_get('http://37.99.110.537:6001/webapi/entry.cgi?api=SYNO.SurveillanceStation.Camera&method=GetSnapshot&version=1&cameraId=2&timestamp=1480512959&preview=true&_sid="sid"');

}

}
}

^^这个语法搞砸了,但我怎么能以正确的方式制作它或者它是如何在会话ID上保留会话ID的最佳方法呢?

1 个答案:

答案 0 :(得分:1)

如果您希望将sid保留为长会话,对于多个请求等,您可以将此json保存到某个json文件,并在注销时清除文件内容。

将你的$sid getter包装到其他函数中。

function getSid()
{
    //try to read from json
    if(is_file('path/to/sid.json'){
        $sid = json_decode(file_get_contents('path/to/sid.json', true));
        if(!isset($sid['logout'])){
            return $sid['data']['sid'];
        }
    }
    $sid = $this->curl->simple_get('http://37.99.110.537:6001/webapi/auth.cgi?api=SYNO.API.Auth&method=login&version=2&account=myacc&passwd=mypassD&format=sid&session=SurveillanceStation');

    //check and save `$sid`

    if(strlen($sid) > 20) {
        file_put_contents('path/to/sid.json', $sid);
        return json_decode($sid, true)['data']['sid'];
    }
    return false;
}

并在注销时更新sid.json的内容。

function logout()
{
    file_put_contents('path/to/file', json_encode(['logout' => 'true']));
}

并调用这些方法。

对于一次执行中的每个请求,它将使用相同的sid,当您点击' logout()'它将销毁sid,以便在下次执行时生成并使用新的。