oauth2-server/src/CryptKey.php

93 lines
2.0 KiB
PHP
Raw Normal View History

2016-03-28 20:12:34 +05:30
<?php
/**
* Cryptography key holder.
*
* @author Julián Gutiérrez <juliangut@gmail.com>
* @copyright Copyright (c) Alex Bilbie
* @license http://mit-license.org/
*
* @link https://github.com/thephpleague/oauth2-server
*/
2016-07-09 04:30:44 +05:30
2016-03-28 20:12:34 +05:30
namespace League\OAuth2\Server;
class CryptKey
{
2016-07-19 18:31:31 +05:30
const RSA_KEY_PATTERN =
'/^(-----BEGIN (RSA )?(PUBLIC|PRIVATE) KEY-----\n)(.|\n)+(-----END (RSA )?(PUBLIC|PRIVATE) KEY-----)$/';
2016-03-28 20:12:34 +05:30
/**
* @var string
*/
protected $keyPath;
/**
2016-07-09 04:30:44 +05:30
* @var null|string
2016-03-28 20:12:34 +05:30
*/
protected $passPhrase;
/**
* @param string $keyPath
* @param null|string $passPhrase
*/
public function __construct($keyPath, $passPhrase = null)
{
2016-07-19 18:31:31 +05:30
if (preg_match(self::RSA_KEY_PATTERN, $keyPath)) {
$keyPath = $this->saveKeyToFile($keyPath);
}
2016-03-28 20:12:34 +05:30
if (strpos($keyPath, 'file://') !== 0) {
$keyPath = 'file://' . $keyPath;
}
if (!file_exists($keyPath) || !is_readable($keyPath)) {
throw new \LogicException(sprintf('Key path "%s" does not exist or is not readable', $keyPath));
}
$this->keyPath = $keyPath;
$this->passPhrase = $passPhrase;
}
2016-07-19 18:31:31 +05:30
/**
* @param string $key
*
2016-07-19 20:45:36 +05:30
* @throws \RuntimeException
*
2016-07-19 18:31:31 +05:30
* @return string
*/
private function saveKeyToFile($key)
{
$keyPath = sys_get_temp_dir() . '/' . sha1($key) . '.key';
2016-07-19 18:36:32 +05:30
if (!file_exists($keyPath) && !touch($keyPath)) {
2016-07-19 20:45:36 +05:30
// @codeCoverageIgnoreStart
2016-07-19 18:31:31 +05:30
throw new \RuntimeException('"%s" key file could not be created', $keyPath);
2016-07-19 20:45:36 +05:30
// @codeCoverageIgnoreEnd
2016-07-19 18:31:31 +05:30
}
file_put_contents($keyPath, $key);
return 'file://' . $keyPath;
}
2016-03-28 20:12:34 +05:30
/**
* Retrieve key path.
*
* @return string
*/
public function getKeyPath()
{
return $this->keyPath;
}
/**
* Retrieve key pass phrase.
*
* @return null|string
*/
public function getPassPhrase()
{
return $this->passPhrase;
}
}