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

Source for file SharedKeyLiteCredentials.php

Documentation is available at SharedKeyLiteCredentials.php

  1. <?php
  2. /**
  3.  * Copyright (c) 2009, 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, 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_WindowsAzure_Credentials
  37.  */
  38. require_once 'Microsoft/WindowsAzure/Credentials.php';
  39.  
  40. /**
  41.  * @see Microsoft_WindowsAzure_Storage
  42.  */
  43. require_once 'Microsoft/WindowsAzure/Storage.php';
  44.  
  45. /**
  46.  * @see Microsoft_WindowsAzure_SharedKeyCredentials
  47.  */
  48. require_once 'Microsoft/WindowsAzure/SharedKeyCredentials.php';
  49.  
  50. /**
  51.  * @category   Microsoft
  52.  * @package    Microsoft_WindowsAzure
  53.  * @copyright  Copyright (c) 2009, RealDolmen (http://www.realdolmen.com)
  54.  * @license    http://phpazure.codeplex.com/license
  55.  */ 
  56. {
  57.     /**
  58.      * Sign request URL with credentials
  59.      *
  60.      * @param string $requestUrl Request URL
  61.      * @param string $resourceType Resource type
  62.      * @param string $requiredPermission Required permission
  63.      * @return string Signed request URL
  64.      */
  65.     public function signRequestUrl($requestUrl ''$resourceType Microsoft_WindowsAzure_Storage::RESOURCE_UNKNOWN$requiredPermission Microsoft_WindowsAzure_Credentials::PERMISSION_READ)
  66.     {
  67.         return $requestUrl;
  68.     }
  69.     
  70.     /**
  71.      * Sign request headers with credentials
  72.      *
  73.      * @param string $httpVerb HTTP verb the request will use
  74.      * @param string $path Path for the request
  75.      * @param string $queryString Query string for the request
  76.      * @param array $headers x-ms headers to add
  77.      * @param boolean $forTableStorage Is the request for table storage?
  78.      * @param string $resourceType Resource type
  79.      * @param string $requiredPermission Required permission
  80.      * @return array Array of headers
  81.      */
  82.     public function signRequestHeaders($httpVerb Microsoft_Http_Transport::VERB_GET$path '/'$queryString ''$headers null$forTableStorage false$resourceType Microsoft_WindowsAzure_Storage::RESOURCE_UNKNOWN$requiredPermission Microsoft_WindowsAzure_Credentials::PERMISSION_READ)
  83.     {
  84.         // Determine path
  85.         if ($this->_usePathStyleUri)
  86.             $path substr($pathstrpos($path'/'));
  87.  
  88.         // Determine query
  89.         $queryString $this->prepareQueryStringForSigning($queryString);
  90.  
  91.         // Build canonicalized resource string
  92.         $canonicalizedResource  '/' $this->_accountName;
  93.         if ($this->_usePathStyleUri)
  94.             $canonicalizedResource .= '/' $this->_accountName;
  95.         $canonicalizedResource .= $path;
  96.         if ($queryString !== '')
  97.             $canonicalizedResource .= $queryString;
  98.  
  99.         // Request date
  100.         $requestDate '';
  101.         if (isset($headers[self::PREFIX_STORAGE_HEADER 'date']))
  102.         {
  103.             $requestDate $headers[self::PREFIX_STORAGE_HEADER 'date'];
  104.         }
  105.         else 
  106.         {
  107.             $requestDate gmdate('D, d M Y H:i:s'time()) ' GMT'// RFC 1123
  108.         }
  109.  
  110.         // Create string to sign   
  111.         $stringToSign array();
  112.         $stringToSign[$requestDate// Date
  113.         $stringToSign[$canonicalizedResource;                     // Canonicalized resource
  114.         $stringToSign implode("\n"$stringToSign);
  115.         $signString base64_encode(hash_hmac('sha256'$stringToSign$this->_accountKeytrue));
  116.  
  117.         // Sign request
  118.         $headers[self::PREFIX_STORAGE_HEADER 'date'$requestDate;
  119.         $headers['Authorization''SharedKeyLite ' $this->_accountName . ':' $signString;
  120.         
  121.         // Return headers
  122.         return $headers;
  123.     }
  124. }

Documentation generated on Thu, 26 Nov 2009 08:05:22 +0100 by phpDocumentor 1.4.3