/vendor/zend/Zend/OAuth/Signature/AbstractSignature.php
https://github.com/sdh100shaun/Linktuesday.com · PHP · 189 lines · 90 code · 12 blank · 87 comment · 15 complexity · b5f2add72a86a2336ea84df8205e2c94 MD5 · raw file
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_OAuth
- * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- /**
- * @namespace
- */
- namespace Zend\OAuth\Signature;
- use Zend\OAuth\Signature as OAuthSignature,
- Zend\OAuth\Http\Utility as HTTPUtility,
- Zend\OAuth\Exception as OAuthException;
- /**
- * @uses Zend\OAuth\Http\Utility
- * @uses Zend\Uri\Url
- * @category Zend
- * @package Zend_OAuth
- * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- abstract class AbstractSignature implements OAuthSignature
- {
- /**
- * Hash algorithm to use when generating signature
- * @var string
- */
- protected $_hashAlgorithm = null;
- /**
- * Key to use when signing
- * @var string
- */
- protected $_key = null;
- /**
- * Consumer secret
- * @var string
- */
- protected $_consumerSecret = null;
- /**
- * Token secret
- * @var string
- */
- protected $_tokenSecret = '';
- /**
- * Constructor
- *
- * @param string $consumerSecret
- * @param null|string $tokenSecret
- * @param null|string $hashAlgo
- * @return void
- */
- public function __construct($consumerSecret, $tokenSecret = null, $hashAlgo = null)
- {
- $this->_consumerSecret = $consumerSecret;
- if (isset($tokenSecret)) {
- $this->_tokenSecret = $tokenSecret;
- }
- $this->_key = $this->_assembleKey();
- if (isset($hashAlgo)) {
- $this->_hashAlgorithm = $hashAlgo;
- }
- }
- /**
- * Sign a request
- *
- * @param array $params
- * @param null|string $method
- * @param null|string $url
- * @return string
- */
- public abstract function sign(array $params, $method = null, $url = null);
- /**
- * Normalize the base signature URL
- *
- * @param string $url
- * @return string
- */
- public function normaliseBaseSignatureUrl($url)
- {
- $uri = new \Zend\Uri\Url($url);
- if ($uri->getScheme() == 'http' && $uri->getPort() == '80') {
- $uri->setPort('');
- } elseif ($uri->getScheme() == 'https' && $uri->getPort() == '443') {
- $uri->setPort('');
- } elseif (!in_array($uri->getScheme(), array('http', 'https'))) {
- throw new OAuthException('Invalid URL provided; must be an HTTP or HTTPS scheme');
- }
- $uri->setQuery('');
- $uri->setFragment('');
- $uri->setHost(strtolower($uri->getHost()));
- return $uri->generate();
- }
- /**
- * Assemble key from consumer and token secrets
- *
- * @return string
- */
- protected function _assembleKey()
- {
- $parts = array($this->_consumerSecret);
- if ($this->_tokenSecret !== null) {
- $parts[] = $this->_tokenSecret;
- }
- foreach ($parts as $key => $secret) {
- $parts[$key] = HTTPUtility::urlEncode($secret);
- }
- return implode('&', $parts);
- }
- /**
- * Get base signature string
- *
- * @param array $params
- * @param null|string $method
- * @param null|string $url
- * @return string
- */
- protected function _getBaseSignatureString(array $params, $method = null, $url = null)
- {
- $encodedParams = array();
- foreach ($params as $key => $value) {
- $encodedParams[HTTPUtility::urlEncode($key)] =
- HTTPUtility::urlEncode($value);
- }
- $baseStrings = array();
- if (isset($method)) {
- $baseStrings[] = strtoupper($method);
- }
- if (isset($url)) {
- // should normalise later
- $baseStrings[] = HTTPUtility::urlEncode(
- $this->normaliseBaseSignatureUrl($url)
- );
- }
- if (isset($encodedParams['oauth_signature'])) {
- unset($encodedParams['oauth_signature']);
- }
- $baseStrings[] = HTTPUtility::urlEncode(
- $this->_toByteValueOrderedQueryString($encodedParams)
- );
- return implode('&', $baseStrings);
- }
- /**
- * Transform an array to a byte value ordered query string
- *
- * @param array $params
- * @return string
- */
- protected function _toByteValueOrderedQueryString(array $params)
- {
- $return = array();
- uksort($params, 'strnatcmp');
- foreach ($params as $key => $value) {
- if (is_array($value)) {
- natsort($value);
- foreach ($value as $keyduplicate) {
- $return[] = $key . '=' . $keyduplicate;
- }
- } else {
- $return[] = $key . '=' . $value;
- }
- }
- return implode('&', $return);
- }
- }