2012-07-04 19:16:02 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
OCP\JSON::checkAppEnabled('files_external');
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
$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-07-06 17:58:38 +04:00
|
|
|
//check if it is a PEM certificate, otherwise convert it if possible
|
2012-09-18 19:04:22 +04:00
|
|
|
if (!strpos($data, 'BEGIN CERTIFICATE')) {
|
|
|
|
$data = chunk_split(base64_encode($data), 64, "\n");
|
|
|
|
$data = "-----BEGIN CERTIFICATE-----\n".$data."-----END CERTIFICATE-----\n";
|
2012-07-06 17:58:38 +04:00
|
|
|
}
|
|
|
|
|
2012-09-18 19:04:22 +04:00
|
|
|
$view->file_put_contents($_FILES['rootcert_import']['name'], $data);
|
|
|
|
|
2012-07-06 17:58:38 +04:00
|
|
|
OC_Mount_Config::createCertificateBundle();
|
|
|
|
|
2012-07-04 19:16:02 +04:00
|
|
|
header("Location: settings/personal.php");
|
|
|
|
exit;
|