2014-08-14 16:24:10 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2014-08-18 18:30:23 +04:00
|
|
|
namespace OC\Security;
|
2014-08-14 16:24:10 +04:00
|
|
|
|
2014-08-18 15:57:38 +04:00
|
|
|
use OC\Files\Filesystem;
|
2014-08-14 17:47:23 +04:00
|
|
|
use OCP\ICertificateManager;
|
|
|
|
|
2014-08-14 16:24:10 +04:00
|
|
|
/**
|
|
|
|
* Manage trusted certificates for users
|
|
|
|
*/
|
2014-08-14 17:47:23 +04:00
|
|
|
class CertificateManager implements ICertificateManager {
|
2014-08-14 16:24:10 +04:00
|
|
|
/**
|
|
|
|
* @var \OCP\IUser
|
|
|
|
*/
|
|
|
|
protected $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OCP\IUser $user
|
|
|
|
*/
|
|
|
|
public function __construct($user) {
|
|
|
|
$this->user = $user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns all certificates trusted by the user
|
|
|
|
*
|
2014-08-15 19:18:46 +04:00
|
|
|
* @return \OCP\ICertificate[]
|
2014-08-14 16:24:10 +04:00
|
|
|
*/
|
|
|
|
public function listCertificates() {
|
|
|
|
$path = $this->user->getHome() . '/files_external/uploads/';
|
|
|
|
if (!is_dir($path)) {
|
2014-08-18 15:57:38 +04:00
|
|
|
return array();
|
2014-08-14 16:24:10 +04:00
|
|
|
}
|
|
|
|
$result = array();
|
|
|
|
$handle = opendir($path);
|
|
|
|
if (!is_resource($handle)) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
while (false !== ($file = readdir($handle))) {
|
2014-08-15 19:18:46 +04:00
|
|
|
if ($file != '.' && $file != '..') {
|
2014-08-27 18:28:51 +04:00
|
|
|
try {
|
|
|
|
$result[] = new Certificate(file_get_contents($path . $file), $file);
|
|
|
|
} catch(\Exception $e) {}
|
2014-08-15 19:18:46 +04:00
|
|
|
}
|
2014-08-14 16:24:10 +04:00
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* create the certificate bundle of all trusted certificated
|
|
|
|
*/
|
|
|
|
protected function createCertificateBundle() {
|
|
|
|
$path = $this->user->getHome() . '/files_external/';
|
|
|
|
$certs = $this->listCertificates();
|
|
|
|
|
|
|
|
$fh_certs = fopen($path . '/rootcerts.crt', 'w');
|
|
|
|
foreach ($certs as $cert) {
|
2014-08-27 18:28:51 +04:00
|
|
|
$file = $path . '/uploads/' . $cert->getName();
|
2014-08-18 15:57:38 +04:00
|
|
|
$data = file_get_contents($file);
|
2014-08-14 16:24:10 +04:00
|
|
|
if (strpos($data, 'BEGIN CERTIFICATE')) {
|
|
|
|
fwrite($fh_certs, $data);
|
|
|
|
fwrite($fh_certs, "\r\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose($fh_certs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-08-18 15:57:38 +04:00
|
|
|
* Save the certificate and re-generate the certificate bundle
|
|
|
|
*
|
2014-08-14 16:24:10 +04:00
|
|
|
* @param string $certificate the certificate data
|
|
|
|
* @param string $name the filename for the certificate
|
2014-08-27 18:28:51 +04:00
|
|
|
* @return \OCP\ICertificate|void|bool
|
|
|
|
* @throws \Exception If the certificate could not get added
|
2014-08-14 16:24:10 +04:00
|
|
|
*/
|
|
|
|
public function addCertificate($certificate, $name) {
|
2014-08-21 16:09:40 +04:00
|
|
|
if (!Filesystem::isValidPath($name) or Filesystem::isFileBlacklisted($name)) {
|
2014-08-14 17:47:23 +04:00
|
|
|
return false;
|
|
|
|
}
|
2014-08-14 16:24:10 +04:00
|
|
|
|
2014-08-27 18:28:51 +04:00
|
|
|
$dir = $this->user->getHome() . '/files_external/uploads/';
|
|
|
|
if (!file_exists($dir)) {
|
|
|
|
//path might not exist (e.g. non-standard OC_User::getHome() value)
|
|
|
|
//in this case create full path using 3rd (recursive=true) parameter.
|
|
|
|
//note that we use "normal" php filesystem functions here since the certs need to be local
|
|
|
|
mkdir($dir, 0700, true);
|
2014-08-14 16:24:10 +04:00
|
|
|
}
|
|
|
|
|
2014-08-27 18:28:51 +04:00
|
|
|
try {
|
2014-08-18 15:57:38 +04:00
|
|
|
$file = $dir . $name;
|
2014-08-27 18:28:51 +04:00
|
|
|
$certificateObject = new Certificate($certificate, $name);
|
2014-08-14 16:24:10 +04:00
|
|
|
file_put_contents($file, $certificate);
|
|
|
|
$this->createCertificateBundle();
|
2014-08-27 18:28:51 +04:00
|
|
|
return $certificateObject;
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
throw $e;
|
2014-08-14 16:24:10 +04:00
|
|
|
}
|
2014-08-27 18:28:51 +04:00
|
|
|
|
2014-08-14 16:24:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-08-18 15:57:38 +04:00
|
|
|
* Remove the certificate and re-generate the certificate bundle
|
|
|
|
*
|
2014-08-14 16:24:10 +04:00
|
|
|
* @param string $name
|
2014-08-14 17:47:23 +04:00
|
|
|
* @return bool
|
2014-08-14 16:24:10 +04:00
|
|
|
*/
|
|
|
|
public function removeCertificate($name) {
|
2014-08-18 15:57:38 +04:00
|
|
|
if (!Filesystem::isValidPath($name)) {
|
2014-08-14 17:47:23 +04:00
|
|
|
return false;
|
|
|
|
}
|
2014-08-14 16:24:10 +04:00
|
|
|
$path = $this->user->getHome() . '/files_external/uploads/';
|
|
|
|
if (file_exists($path . $name)) {
|
|
|
|
unlink($path . $name);
|
|
|
|
$this->createCertificateBundle();
|
|
|
|
}
|
2014-08-18 15:57:38 +04:00
|
|
|
return true;
|
2014-08-14 16:24:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the path to the certificate bundle for this user
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getCertificateBundle() {
|
|
|
|
return $this->user->getHome() . '/files_external/rootcerts.crt';
|
|
|
|
}
|
|
|
|
}
|