Welcome to mirror list, hosted at ThFree Co, Russian Federation.

addRootCertificate.php « ajax « settings - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 378ef39c1e5f1de5cf50975f18d83cc03c6d0561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();

$l = new OC_L10N('core');

if (!isset($_FILES['rootcert_import'])) {
	OCP\JSON::error(array('error' => 'No certificate uploaded'));
	exit;
}

$data = file_get_contents($_FILES['rootcert_import']['tmp_name']);
$filename = basename($_FILES['rootcert_import']['name']);

$certificateManager = \OC::$server->getCertificateManager();

try {
	$cert = $certificateManager->addCertificate($data, $filename);
	OCP\JSON::success(array(
		'name' => $cert->getName(),
		'commonName' => $cert->getCommonName(),
		'organization' => $cert->getOrganization(),
		'validFrom' => $cert->getIssueDate()->getTimestamp(),
		'validTill' => $cert->getExpireDate()->getTimestamp(),
		'validFromString' => $l->l('date', $cert->getIssueDate()),
		'validTillString' => $l->l('date', $cert->getExpireDate()),
		'issuer' => $cert->getIssuerName(),
		'issuerOrganization' => $cert->getIssuerOrganization()
	));
} catch(\Exception $e) {
	OCP\JSON::error(array('error' => 'Couldn\'t import SSL root certificate, allowed formats: PEM and DER'));
}