Skip to content
Snippets Groups Projects
Commit f86ecb3b authored by Björn Schießle's avatar Björn Schießle
Browse files

send ca cert path to sabredav client

parent 9d00f4d2
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@ class Sabre_DAV_Client {
protected $userName;
protected $password;
protected $proxy;
protected $capath;
/**
* Constructor
......@@ -49,6 +50,11 @@ class Sabre_DAV_Client {
'proxy'
);
$this->capath = '';
if (isset($settings['capath'])) {
$this->capath = $settings['capath'];
}
foreach($validSettings as $validSetting) {
if (isset($settings[$validSetting])) {
$this->$validSetting = $settings[$validSetting];
......@@ -249,9 +255,12 @@ class Sabre_DAV_Client {
// Automatically follow redirects
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_MAXREDIRS => 5,
CURLOPT_SSL_VERIFYPEER => true,
//CURLOPT_SSL_VERIFYPEER => false,
);
if ($this->capath != '') $curlSettings[CURLOPT_CAPATH] = $this->capath;
switch ($method) {
case 'PUT':
$curlSettings[CURLOPT_PUT] = true;
......
......@@ -36,10 +36,13 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{
$this->root.='/';
}
$caview = \OCP\Files::getStorage('files_external');
$capath=\OCP\Config::getSystemValue('datadirectory').$caview->getAbsolutePath("");
$settings = array(
'baseUri' => $this->createBaseUri(),
'userName' => $this->user,
'password' => $this->password,
'capath' => $capath,
);
$this->client = new Sabre_DAV_Client($settings);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment