2012-07-04 19:16:02 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
OCP\JSON::checkAppEnabled('files_external');
|
|
|
|
|
2012-09-27 14:37:23 +04:00
|
|
|
if ( !($filename = $_FILES['rootcert_import']['name']) ) {
|
|
|
|
header("Location: settings/personal.php");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2012-09-18 19:04:22 +04:00
|
|
|
$fh = fopen($_FILES['rootcert_import']['tmp_name'], 'r');
|
|
|
|
$data = fread($fh, filesize($_FILES['rootcert_import']['tmp_name']));
|
|
|
|
fclose($fh);
|
2012-09-27 13:20:37 +04:00
|
|
|
$filename = $_FILES['rootcert_import']['name'];
|
2012-09-18 19:04:22 +04:00
|
|
|
|
|
|
|
$view = new \OC_FilesystemView('/'.\OCP\User::getUser().'/files_external/uploads');
|
|
|
|
if (!$view->file_exists('')) $view->mkdir('');
|
2012-07-04 19:16:02 +04:00
|
|
|
|
2012-09-27 13:20:37 +04:00
|
|
|
$isValid = openssl_pkey_get_public($data);
|
|
|
|
|
|
|
|
//maybe it was just the wrong file format, try to convert it...
|
|
|
|
if ($isValid == false) {
|
2012-09-18 19:04:22 +04:00
|
|
|
$data = chunk_split(base64_encode($data), 64, "\n");
|
2012-09-27 13:20:37 +04:00
|
|
|
$data = "-----BEGIN CERTIFICATE-----\n".$data."-----END CERTIFICATE-----\n";
|
|
|
|
$isValid = openssl_pkey_get_public($data);
|
2012-07-06 17:58:38 +04:00
|
|
|
}
|
|
|
|
|
2012-09-27 13:20:37 +04:00
|
|
|
// add the certificate if it could be verified
|
|
|
|
if ( $isValid ) {
|
|
|
|
$view->file_put_contents($filename, $data);
|
|
|
|
OC_Mount_Config::createCertificateBundle();
|
|
|
|
} else {
|
|
|
|
OCP\Util::writeLog("files_external", "Couldn't import SSL root certificate ($filename), allowed formats: PEM and DER", OCP\Util::WARN);
|
|
|
|
}
|
2012-07-06 17:58:38 +04:00
|
|
|
|
2012-07-04 19:16:02 +04:00
|
|
|
header("Location: settings/personal.php");
|
|
|
|
exit;
|