| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- <?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_Service_WindowsAzure
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * @category Zend
- * @package Zend_Service_WindowsAzure
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- abstract class Zend_Service_WindowsAzure_Credentials_CredentialsAbstract
- {
- /**
- * Development storage account and key
- */
- const DEVSTORE_ACCOUNT = "devstoreaccount1";
- const DEVSTORE_KEY = "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==";
-
- /**
- * HTTP header prefixes
- */
- const PREFIX_PROPERTIES = "x-ms-prop-";
- const PREFIX_METADATA = "x-ms-meta-";
- const PREFIX_STORAGE_HEADER = "x-ms-";
-
- /**
- * Permissions
- */
- const PERMISSION_READ = "r";
- const PERMISSION_WRITE = "w";
- const PERMISSION_DELETE = "d";
- const PERMISSION_LIST = "l";
- /**
- * Account name for Windows Azure
- *
- * @var string
- */
- protected $_accountName = '';
-
- /**
- * Account key for Windows Azure
- *
- * @var string
- */
- protected $_accountKey = '';
-
- /**
- * Use path-style URI's
- *
- * @var boolean
- */
- protected $_usePathStyleUri = false;
-
- /**
- * Creates a new Zend_Service_WindowsAzure_Credentials_CredentialsAbstract instance
- *
- * @param string $accountName Account name for Windows Azure
- * @param string $accountKey Account key for Windows Azure
- * @param boolean $usePathStyleUri Use path-style URI's
- */
- public function __construct(
- $accountName = Zend_Service_WindowsAzure_Credentials_CredentialsAbstract::DEVSTORE_ACCOUNT,
- $accountKey = Zend_Service_WindowsAzure_Credentials_CredentialsAbstract::DEVSTORE_KEY,
- $usePathStyleUri = false
- ) {
- $this->_accountName = $accountName;
- $this->_accountKey = base64_decode($accountKey);
- $this->_usePathStyleUri = $usePathStyleUri;
- }
-
- /**
- * Set account name for Windows Azure
- *
- * @param string $value
- * @return Zend_Service_WindowsAzure_Credentials_CredentialsAbstract
- */
- public function setAccountName($value = Zend_Service_WindowsAzure_Credentials_CredentialsAbstract::DEVSTORE_ACCOUNT)
- {
- $this->_accountName = $value;
- return $this;
- }
-
- /**
- * Set account key for Windows Azure
- *
- * @param string $value
- * @return Zend_Service_WindowsAzure_Credentials_CredentialsAbstract
- */
- public function setAccountkey($value = Zend_Service_WindowsAzure_Credentials_CredentialsAbstract::DEVSTORE_KEY)
- {
- $this->_accountKey = base64_decode($value);
- return $this;
- }
-
- /**
- * Set use path-style URI's
- *
- * @param boolean $value
- * @return Zend_Service_WindowsAzure_Credentials_CredentialsAbstract
- */
- public function setUsePathStyleUri($value = false)
- {
- $this->_usePathStyleUri = $value;
- return $this;
- }
-
- /**
- * Sign request URL with credentials
- *
- * @param string $requestUrl Request URL
- * @param string $resourceType Resource type
- * @param string $requiredPermission Required permission
- * @return string Signed request URL
- */
- abstract public function signRequestUrl(
- $requestUrl = '',
- $resourceType = Zend_Service_WindowsAzure_Storage::RESOURCE_UNKNOWN,
- $requiredPermission = Zend_Service_WindowsAzure_Credentials_CredentialsAbstract::PERMISSION_READ
- );
-
- /**
- * Sign request headers with credentials
- *
- * @param string $httpVerb HTTP verb the request will use
- * @param string $path Path for the request
- * @param string $queryString Query string for the request
- * @param array $headers x-ms headers to add
- * @param boolean $forTableStorage Is the request for table storage?
- * @param string $resourceType Resource type
- * @param string $requiredPermission Required permission
- * @param mixed $rawData Raw post data
- * @return array Array of headers
- */
- abstract public function signRequestHeaders(
- $httpVerb = Zend_Http_Client::GET,
- $path = '/',
- $queryString = '',
- $headers = null,
- $forTableStorage = false,
- $resourceType = Zend_Service_WindowsAzure_Storage::RESOURCE_UNKNOWN,
- $requiredPermission = Zend_Service_WindowsAzure_Credentials_CredentialsAbstract::PERMISSION_READ,
- $rawData = null
- );
-
-
- /**
- * Prepare query string for signing
- *
- * @param string $value Original query string
- * @return string Query string for signing
- */
- protected function _prepareQueryStringForSigning($value)
- {
- // Return value
- $returnValue = array();
-
- // Prepare query string
- $queryParts = $this->_makeArrayOfQueryString($value);
- foreach ($queryParts as $key => $value) {
- $returnValue[] = $key . '=' . $value;
- }
-
- // Return
- if (count($returnValue) > 0) {
- return '?' . implode('&', $returnValue);
- } else {
- return '';
- }
- }
-
- /**
- * Make array of query string
- *
- * @param string $value Query string
- * @return array Array of key/value pairs
- */
- protected function _makeArrayOfQueryString($value)
- {
- // Returnvalue
- $returnValue = array();
-
- // Remove front ?
- if (strlen($value) > 0 && strpos($value, '?') === 0) {
- $value = substr($value, 1);
- }
-
- // Split parts
- $queryParts = explode('&', $value);
- foreach ($queryParts as $queryPart) {
- $queryPart = explode('=', $queryPart, 2);
-
- if ($queryPart[0] != '') {
- $returnValue[ $queryPart[0] ] = isset($queryPart[1]) ? $queryPart[1] : '';
- }
- }
-
- // Sort
- ksort($returnValue);
- // Return
- return $returnValue;
- }
-
- /**
- * Returns an array value if the key is set, otherwide returns $valueIfNotSet
- *
- * @param array $array
- * @param mixed $key
- * @param mixed $valueIfNotSet
- * @return mixed
- */
- protected function _issetOr($array, $key, $valueIfNotSet)
- {
- return isset($array[$key]) ? $array[$key] : $valueIfNotSet;
- }
- }
|