diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-08-14 14:24:10 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-08-31 10:45:10 +0200 |
commit | ecdbf006284fa4907b54f58ac6ba59f54b9738a5 (patch) | |
tree | 387c47f718d19d871a2430ac5bf272cd5f6ab755 /apps/files_external/ajax/removeRootCertificate.php | |
parent | 23137f4798cb89b188329050a85f2f3a706947c5 (diff) | |
download | nextcloud-server-ecdbf006284fa4907b54f58ac6ba59f54b9738a5.tar.gz nextcloud-server-ecdbf006284fa4907b54f58ac6ba59f54b9738a5.zip |
Move certificate management code to core
Diffstat (limited to 'apps/files_external/ajax/removeRootCertificate.php')
-rw-r--r-- | apps/files_external/ajax/removeRootCertificate.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/files_external/ajax/removeRootCertificate.php b/apps/files_external/ajax/removeRootCertificate.php index 664b3937e97..e6795800e03 100644 --- a/apps/files_external/ajax/removeRootCertificate.php +++ b/apps/files_external/ajax/removeRootCertificate.php @@ -4,10 +4,8 @@ OCP\JSON::checkAppEnabled('files_external'); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$view = \OCP\Files::getStorage("files_external"); -$file = 'uploads/'.ltrim($_POST['cert'], "/\\."); - -if ( $view->file_exists($file) ) { - $view->unlink($file); - OC_Mount_Config::createCertificateBundle(); +$name = $_POST['cert']; +$certificateManager = \OC::$server->getCertificateManager(); +if (\OC\Files\Filesystem::isValidPath($name)) { + $certificateManager->removeCertificate($name); } |