Skip to content
Snippets Groups Projects
Commit cc373ab8 authored by Vincent Petry's avatar Vincent Petry
Browse files

Merge pull request #15470 from rullzer/files_sharing_getUrlContent

Move away from private static function OC_Util::getUrlContent
parents dbb3dc1b 9866066d
No related branches found
No related tags found
No related merge requests found
...@@ -56,71 +56,76 @@ $externalManager = new \OCA\Files_Sharing\External\Manager( ...@@ -56,71 +56,76 @@ $externalManager = new \OCA\Files_Sharing\External\Manager(
); );
// check for ssl cert // check for ssl cert
if (substr($remote, 0, 5) === 'https' and !OC_Util::getUrlContent($remote)) { if (substr($remote, 0, 5) === 'https') {
\OCP\JSON::error(array('data' => array('message' => $l->t('Invalid or untrusted SSL certificate')))); try {
exit; \OC::$server->getHTTPClientService()->newClient()->get($remote)->getBody();
} else { } catch (\Exception $e) {
$mount = $externalManager->addShare($remote, $token, $password, $name, $owner, true); \OCP\JSON::error(array('data' => array('message' => $l->t('Invalid or untrusted SSL certificate'))));
exit;
}
}
$mount = $externalManager->addShare($remote, $token, $password, $name, $owner, true);
/** /**
* @var \OCA\Files_Sharing\External\Storage $storage * @var \OCA\Files_Sharing\External\Storage $storage
*/ */
$storage = $mount->getStorage(); $storage = $mount->getStorage();
try {
// check if storage exists
$storage->checkStorageAvailability();
} catch (\OCP\Files\StorageInvalidException $e) {
// note: checkStorageAvailability will already remove the invalid share
\OCP\Util::writeLog(
'files_sharing',
'Invalid remote storage: ' . get_class($e) . ': ' . $e->getMessage(),
\OCP\Util::DEBUG
);
\OCP\JSON::error(
array(
'data' => array(
'message' => $l->t('Could not authenticate to remote share, password might be wrong')
)
)
);
exit();
} catch (\Exception $e) {
\OCP\Util::writeLog(
'files_sharing',
'Invalid remote storage: ' . get_class($e) . ': ' . $e->getMessage(),
\OCP\Util::DEBUG
);
$externalManager->removeShare($mount->getMountPoint());
\OCP\JSON::error(array('data' => array('message' => $l->t('Storage not valid'))));
exit();
}
$result = $storage->file_exists('');
if ($result) {
try { try {
// check if storage exists $storage->getScanner()->scanAll();
$storage->checkStorageAvailability(); \OCP\JSON::success();
} catch (\OCP\Files\StorageInvalidException $e) { } catch (\OCP\Files\StorageInvalidException $e) {
// note: checkStorageAvailability will already remove the invalid share
\OCP\Util::writeLog( \OCP\Util::writeLog(
'files_sharing', 'files_sharing',
'Invalid remote storage: ' . get_class($e) . ': ' . $e->getMessage(), 'Invalid remote storage: ' . get_class($e) . ': ' . $e->getMessage(),
\OCP\Util::DEBUG \OCP\Util::DEBUG
); );
\OCP\JSON::error( \OCP\JSON::error(array('data' => array('message' => $l->t('Storage not valid'))));
array(
'data' => array(
'message' => $l->t('Could not authenticate to remote share, password might be wrong')
)
)
);
exit();
} catch (\Exception $e) { } catch (\Exception $e) {
\OCP\Util::writeLog( \OCP\Util::writeLog(
'files_sharing', 'files_sharing',
'Invalid remote storage: ' . get_class($e) . ': ' . $e->getMessage(), 'Invalid remote storage: ' . get_class($e) . ': ' . $e->getMessage(),
\OCP\Util::DEBUG \OCP\Util::DEBUG
); );
$externalManager->removeShare($mount->getMountPoint());
\OCP\JSON::error(array('data' => array('message' => $l->t('Storage not valid'))));
exit();
}
$result = $storage->file_exists('');
if ($result) {
try {
$storage->getScanner()->scanAll();
\OCP\JSON::success();
} catch (\OCP\Files\StorageInvalidException $e) {
\OCP\Util::writeLog(
'files_sharing',
'Invalid remote storage: ' . get_class($e) . ': ' . $e->getMessage(),
\OCP\Util::DEBUG
);
\OCP\JSON::error(array('data' => array('message' => $l->t('Storage not valid'))));
} catch (\Exception $e) {
\OCP\Util::writeLog(
'files_sharing',
'Invalid remote storage: ' . get_class($e) . ': ' . $e->getMessage(),
\OCP\Util::DEBUG
);
\OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t add remote share'))));
}
} else {
$externalManager->removeShare($mount->getMountPoint());
\OCP\Util::writeLog(
'files_sharing',
'Couldn\'t add remote share',
\OCP\Util::DEBUG
);
\OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t add remote share')))); \OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t add remote share'))));
} }
} else {
$externalManager->removeShare($mount->getMountPoint());
\OCP\Util::writeLog(
'files_sharing',
'Couldn\'t add remote share',
\OCP\Util::DEBUG
);
\OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t add remote share'))));
} }
...@@ -1245,6 +1245,7 @@ class OC_Util { ...@@ -1245,6 +1245,7 @@ class OC_Util {
* @return string of the response or false on error * @return string of the response or false on error
* This function get the content of a page via curl, if curl is enabled. * This function get the content of a page via curl, if curl is enabled.
* If not, file_get_contents is used. * If not, file_get_contents is used.
* @deprecated Use \OCP\Http\Client\IClientService
*/ */
public static function getUrlContent($url) { public static function getUrlContent($url) {
try { try {
......
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