2014-08-15 17:54:03 +00: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 14:30:23 +00:00
|
|
|
namespace OC\Security;
|
2014-08-15 17:54:03 +00:00
|
|
|
|
|
|
|
use OCP\ICertificate;
|
|
|
|
|
|
|
|
class Certificate implements ICertificate {
|
|
|
|
protected $name;
|
|
|
|
|
|
|
|
protected $commonName;
|
|
|
|
|
|
|
|
protected $organization;
|
|
|
|
|
|
|
|
protected $serial;
|
|
|
|
|
|
|
|
protected $issueDate;
|
|
|
|
|
|
|
|
protected $expireDate;
|
|
|
|
|
|
|
|
protected $issuerName;
|
|
|
|
|
|
|
|
protected $issuerOrganization;
|
|
|
|
|
2014-08-18 11:57:38 +00:00
|
|
|
/**
|
|
|
|
* @param string $data base64 encoded certificate
|
|
|
|
* @param string $name
|
2014-08-27 14:28:51 +00:00
|
|
|
* @throws \Exception If the certificate could not get parsed
|
2014-08-18 11:57:38 +00:00
|
|
|
*/
|
2014-08-15 17:54:03 +00:00
|
|
|
public function __construct($data, $name) {
|
|
|
|
$this->name = $name;
|
2014-08-27 14:28:51 +00:00
|
|
|
try {
|
|
|
|
$info = openssl_x509_parse($data);
|
|
|
|
$this->commonName = isset($info['subject']['CN']) ? $info['subject']['CN'] : null;
|
|
|
|
$this->organization = isset($info['subject']['O']) ? $info['subject']['O'] : null;
|
|
|
|
$this->serial = $this->formatSerial($info['serialNumber']);
|
|
|
|
$this->issueDate = new \DateTime('@' . $info['validFrom_time_t']);
|
|
|
|
$this->expireDate = new \DateTime('@' . $info['validTo_time_t']);
|
|
|
|
$this->issuerName = isset($info['issuer']['CN']) ? $info['issuer']['CN'] : null;
|
|
|
|
$this->issuerOrganization = isset($info['issuer']['O']) ? $info['issuer']['O'] : null;
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
throw new \Exception('Certificate could not get parsed.');
|
|
|
|
}
|
2014-08-15 17:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format the numeric serial into AA:BB:CC hex format
|
|
|
|
*
|
|
|
|
* @param int $serial
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function formatSerial($serial) {
|
|
|
|
$hex = strtoupper(dechex($serial));
|
|
|
|
return trim(chunk_split($hex, 2, ':'), ':');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName() {
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-08-27 14:28:51 +00:00
|
|
|
* @return string|null
|
2014-08-15 17:54:03 +00:00
|
|
|
*/
|
|
|
|
public function getCommonName() {
|
|
|
|
return $this->commonName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getOrganization() {
|
|
|
|
return $this->organization;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getSerial() {
|
2014-08-18 11:43:25 +00:00
|
|
|
return $this->serial;
|
2014-08-15 17:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \DateTime
|
|
|
|
*/
|
|
|
|
public function getIssueDate() {
|
|
|
|
return $this->issueDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \DateTime
|
|
|
|
*/
|
|
|
|
public function getExpireDate() {
|
|
|
|
return $this->expireDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isExpired() {
|
|
|
|
$now = new \DateTime();
|
2014-08-18 11:57:38 +00:00
|
|
|
return $this->issueDate > $now or $now > $this->expireDate;
|
2014-08-15 17:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-08-27 14:28:51 +00:00
|
|
|
* @return string|null
|
2014-08-15 17:54:03 +00:00
|
|
|
*/
|
|
|
|
public function getIssuerName() {
|
|
|
|
return $this->issuerName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-08-27 14:28:51 +00:00
|
|
|
* @return string|null
|
2014-08-15 17:54:03 +00:00
|
|
|
*/
|
|
|
|
public function getIssuerOrganization() {
|
|
|
|
return $this->issuerOrganization;
|
|
|
|
}
|
|
|
|
}
|