Microsoft_WindowsAzure
[ class tree: Microsoft_WindowsAzure ] [ index: Microsoft_WindowsAzure ] [ all elements ]

Source for file SharedKeyLite.php

Documentation is available at SharedKeyLite.php

  1. <?php
  2. /**
  3.  * Copyright (c) 2009 - 2011, RealDolmen
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions are met:
  8.  *     * Redistributions of source code must retain the above copyright
  9.  *       notice, this list of conditions and the following disclaimer.
  10.  *     * Redistributions in binary form must reproduce the above copyright
  11.  *       notice, this list of conditions and the following disclaimer in the
  12.  *       documentation and/or other materials provided with the distribution.
  13.  *     * Neither the name of RealDolmen nor the
  14.  *       names of its contributors may be used to endorse or promote products
  15.  *       derived from this software without specific prior written permission.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY RealDolmen ''AS IS'' AND ANY
  18.  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  19.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  20.  * DISCLAIMED. IN NO EVENT SHALL RealDolmen BE LIABLE FOR ANY
  21.  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  22.  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  23.  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  24.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  26.  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  *
  28.  * @category   Microsoft
  29.  * @package    Microsoft_WindowsAzure
  30.  * @copyright  Copyright (c) 2009 - 2011, RealDolmen (http://www.realdolmen.com)
  31.  * @license    http://phpazure.codeplex.com/license
  32.  * @version    $Id: SharedKeyCredentials.php 14561 2009-05-07 08:05:12Z unknown $
  33.  */
  34.  
  35. /**
  36.  * @see Microsoft_AutoLoader
  37.  */
  38. require_once dirname(__FILE__'/../../AutoLoader.php';
  39.  
  40. /**
  41.  * @category   Microsoft
  42.  * @package    Microsoft_WindowsAzure
  43.  * @copyright  Copyright (c) 2009 - 2011, RealDolmen (http://www.realdolmen.com)
  44.  * @license    http://phpazure.codeplex.com/license
  45.  */ 
  46. {
  47.     /**
  48.      * Sign request URL with credentials
  49.      *
  50.      * @param string $requestUrl Request URL
  51.      * @param string $resourceType Resource type
  52.      * @param string $requiredPermission Required permission
  53.      * @return string Signed request URL
  54.      */
  55.     public function signRequestUrl(
  56.         $requestUrl '',
  57.         $resourceType Microsoft_WindowsAzure_Storage::RESOURCE_UNKNOWN,
  58.         $requiredPermission Microsoft_WindowsAzure_Credentials_CredentialsAbstract::PERMISSION_READ
  59.     {
  60.         return $requestUrl;
  61.     }
  62.     
  63.     /**
  64.      * Sign request headers with credentials
  65.      *
  66.      * @param string $httpVerb HTTP verb the request will use
  67.      * @param string $path Path for the request
  68.      * @param string $queryString Query string for the request
  69.      * @param array $headers x-ms headers to add
  70.      * @param boolean $forTableStorage Is the request for table storage?
  71.      * @param string $resourceType Resource type
  72.      * @param string $requiredPermission Required permission
  73.      * @param mixed  $rawData Raw post data
  74.      * @return array Array of headers
  75.      */
  76.     public function signRequestHeaders(
  77.         $httpVerb Microsoft_Http_Client::GET,
  78.         $path '/',
  79.         $queryString '',
  80.         $headers null,
  81.         $forTableStorage false,
  82.         $resourceType Microsoft_WindowsAzure_Storage::RESOURCE_UNKNOWN,
  83.         $requiredPermission Microsoft_WindowsAzure_Credentials_CredentialsAbstract::PERMISSION_READ,
  84.         $rawData null
  85.     {
  86.         // Table storage?
  87.         if (!$forTableStorage{
  88.             throw new Microsoft_WindowsAzure_Credentials_Exception('The Windows Azure SDK for PHP does not support SharedKeyLite authentication on blob or queue storage. Use SharedKey authentication instead.');
  89.         }
  90.         
  91.         // Determine path
  92.         if ($this->_usePathStyleUri{
  93.             $path substr($pathstrpos($path'/'));
  94.         }
  95.  
  96.         // Determine query
  97.         $queryString $this->_prepareQueryStringForSigning($queryString);
  98.  
  99.         // Build canonicalized resource string
  100.         $canonicalizedResource  '/' $this->_accountName;
  101.         if ($this->_usePathStyleUri{
  102.             $canonicalizedResource .= '/' $this->_accountName;
  103.         }
  104.         $canonicalizedResource .= $path;
  105.         if ($queryString !== ''{
  106.             $canonicalizedResource .= $queryString;
  107.         }
  108.  
  109.         // Request date
  110.         $requestDate '';
  111.         if (isset($headers[Microsoft_WindowsAzure_Credentials_CredentialsAbstract::PREFIX_STORAGE_HEADER 'date'])) {
  112.             $requestDate $headers[Microsoft_WindowsAzure_Credentials_CredentialsAbstract::PREFIX_STORAGE_HEADER 'date'];
  113.         else {
  114.             $requestDate gmdate('D, d M Y H:i:s'time()) ' GMT'// RFC 1123
  115.         }
  116.  
  117.         // Create string to sign   
  118.         $stringToSign   array();
  119.         $stringToSign[$requestDate// Date
  120.         $stringToSign[$canonicalizedResource;                     // Canonicalized resource
  121.         $stringToSign   implode("\n"$stringToSign);
  122.         $signString     base64_encode(hash_hmac('sha256'$stringToSign$this->_accountKeytrue));
  123.  
  124.         // Sign request
  125.         $headers[Microsoft_WindowsAzure_Credentials_CredentialsAbstract::PREFIX_STORAGE_HEADER 'date'$requestDate;
  126.         $headers['Authorization''SharedKeyLite ' $this->_accountName . ':' $signString;
  127.         
  128.         // Return headers
  129.         return $headers;
  130.     }
  131.     
  132.     /**
  133.      * Prepare query string for signing
  134.      * 
  135.      * @param  string $value Original query string
  136.      * @return string        Query string for signing
  137.      */
  138.     protected function _prepareQueryStringForSigning($value)
  139.     {
  140.         // Check for 'comp='
  141.         if (strpos($value'comp='=== false{
  142.             // If not found, no query string needed
  143.             return '';
  144.         else {
  145.             // If found, make sure it is the only parameter being used      
  146.             if (strlen($value&& strpos($value'?'=== 0{
  147.                 $value substr($value1);
  148.             }
  149.             
  150.             // Split parts
  151.             $queryParts explode('&'$value);
  152.             foreach ($queryParts as $queryPart{
  153.                 if (strpos($queryPart'comp='!== false{
  154.                     return '?' $queryPart;
  155.                 }
  156.             }
  157.  
  158.             // Should never happen...
  159.             return '';
  160.         }
  161.     }
  162. }

Documentation generated on Wed, 18 May 2011 12:06:51 +0200 by phpDocumentor 1.4.3