From fa944fc52646219d69f910d7cd4750db9c8f11bd Mon Sep 17 00:00:00 2001 From: zotlabs Date: Mon, 27 Feb 2017 23:48:54 -0800 Subject: provide 'session' option to z_fetch_url to assist with remote fetches requiring magic auth --- include/network.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/network.php') diff --git a/include/network.php b/include/network.php index 66716ef9e..0fda80f19 100644 --- a/include/network.php +++ b/include/network.php @@ -91,6 +91,10 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { @curl_setopt($ch, CURLOPT_TIMEOUT, (($curl_time !== false) ? $curl_time : 60)); } + if(x($opts,'session') && strpos($url,z_root()) === 0) { + @curl_setopt($ch, CURLOPT_HTTPHEADER, [ 'Cookie: PHPSESSID=' . session_id() ]); + } + if(x($opts,'http_auth')) { // "username" . ':' . "password" @curl_setopt($ch, CURLOPT_USERPWD, $opts['http_auth']); -- cgit v1.2.3