summaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorMarkus Goetz <markus@woboq.com>2013-04-23 12:36:30 +0200
committerMarkus Goetz <markus@woboq.com>2013-04-23 12:36:30 +0200
commit6141b24d9629ce181a86bbc7b6bb1d2c13c28154 (patch)
treec38154ac8d5139016ecd43527370c4ab32a48a00 /apps/files_external
parent05ab9d2de7f2c5181eda2174a2e2adb1cc214196 (diff)
downloadnextcloud-server-6141b24d9629ce181a86bbc7b6bb1d2c13c28154.tar.gz
nextcloud-server-6141b24d9629ce181a86bbc7b6bb1d2c13c28154.zip
External Storage: Check for curl in PHP
If no curl is found, disable the storage that needs it.
Diffstat (limited to 'apps/files_external')
-rwxr-xr-xapps/files_external/lib/config.php14
1 files changed, 12 insertions, 2 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index 01462cb6f85..4cb9b7c8ecd 100755
--- a/apps/files_external/lib/config.php
+++ b/apps/files_external/lib/config.php
@@ -70,7 +70,7 @@ class OC_Mount_Config {
'root' => '&Root',
'secure' => '!Secure ftps://'));
- $backends['\OC\Files\Storage\Google']=array(
+ if(OC_Mount_Config::checkcurl()) $backends['\OC\Files\Storage\Google']=array(
'backend' => 'Google Drive',
'configuration' => array(
'configured' => '#configured',
@@ -96,7 +96,7 @@ class OC_Mount_Config {
'share' => 'Share',
'root' => '&Root'));
- $backends['\OC\Files\Storage\DAV']=array(
+ if(OC_Mount_Config::checkcurl()) $backends['\OC\Files\Storage\DAV']=array(
'backend' => 'ownCloud / WebDAV',
'configuration' => array(
'host' => 'URL',
@@ -415,6 +415,13 @@ class OC_Mount_Config {
}
/**
+ * check if curl is installed
+ */
+ public static function checkcurl() {
+ return (function_exists('curl_init'));
+ }
+
+ /**
* check dependencies
*/
public static function checkDependencies() {
@@ -426,6 +433,9 @@ class OC_Mount_Config {
if(!OC_Mount_Config::checkphpftp()) {
$txt.=$l->t('<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it.').'<br />';
}
+ if(!OC_Mount_Config::checkcurl()) {
+ $txt.=$l->t('<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it.').'<br />';
+ }
return($txt);
}