OAuth2ServerException.php
Current file: /home/cristiano/expresso-api/prototype/library/oauth2/lib/OAuth2ServerException.php
Legend: executed not executed dead code

  Coverage
  Classes Functions / Methods Lines
Total
0.00% 0 / 1
0.00% 0 / 6 CRAP
0.00% 0 / 17
OAuth2ServerException
0.00% 0 / 1
0.00% 0 / 6 72
0.00% 0 / 17
 __construct($http_status_code, $error, $error_description = NULL)
0.00% 0 / 1 6
0.00% 0 / 7
 getDescription()
0.00% 0 / 1 6
0.00% 0 / 1
 getHttpCode()
0.00% 0 / 1 2
0.00% 0 / 1
 sendHttpResponse()
0.00% 0 / 1 2
0.00% 0 / 4
 sendHeaders()
0.00% 0 / 1 2
0.00% 0 / 3
 __toString()
0.00% 0 / 1 2
0.00% 0 / 1


       1                 : <?php                                                                                                      
       2                 :                                                                                                            
       3                 : /**                                                                                                        
       4                 :  * OAuth2 errors that require termination of OAuth2 due to                                                 
       5                 :  * an error.                                                                                               
       6                 :  *                                                                                                         
       7                 :  */                                                                                                        
       8                 : class OAuth2ServerException extends Exception {                                                            
       9                 :                                                                                                            
      10                 :     protected $httpCode;                                                                                   
      11                 :     protected $errorData = array();                                                                        
      12                 :                                                                                                            
      13                 :     /**                                                                                                    
      14                 :      * @param $http_status_code                                                                            
      15                 :      * HTTP status code message as predefined.                                                             
      16                 :      * @param $error                                                                                       
      17                 :      * A single error code.                                                                                
      18                 :      * @param $error_description                                                                           
      19                 :      * (optional) A human-readable text providing additional information,                                  
      20                 :      * used to assist in the understanding and resolution of the error                                     
      21                 :      * occurred.                                                                                           
      22                 :      */                                                                                                    
      23                 :     public function __construct($http_status_code, $error, $error_description = NULL) {                    
      24               0 :         parent::__construct($error);                                                                       
      25                 :                                                                                                            
      26               0 :         $this->httpCode = $http_status_code;                                                               
      27                 :                                                                                                            
      28               0 :         $this->errorData['error'] = $error;                                                                
      29               0 :         if ($error_description) {                                                                          
      30               0 :             $this->errorData['error_description'] = $error_description;                                    
      31               0 :         }                                                                                                  
      32               0 :     }                                                                                                      
      33                 :                                                                                                            
      34                 :     /**                                                                                                    
      35                 :      * @return string                                                                                      
      36                 :      */                                                                                                    
      37                 :     public function getDescription() {                                                                     
      38               0 :         return isset($this->errorData['error_description']) ? $this->errorData['error_description'] : null;
      39                 :     }                                                                                                      
      40                 :                                                                                                            
      41                 :     /**                                                                                                    
      42                 :      * @return string                                                                                      
      43                 :      */                                                                                                    
      44                 :     public function getHttpCode() {                                                                        
      45               0 :         return $this->httpCode;                                                                            
      46                 :     }                                                                                                      
      47                 :                                                                                                            
      48                 :     /**                                                                                                    
      49                 :      * Send out error message in JSON.                                                                     
      50                 :      *                                                                                                     
      51                 :      * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-5.1                                  
      52                 :      * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-5.2                                  
      53                 :      *                                                                                                     
      54                 :      * @ingroup oauth2_error                                                                               
      55                 :      */                                                                                                    
      56                 :     public function sendHttpResponse() {                                                                   
      57               0 :         header("HTTP/1.1 " . $this->httpCode);                                                             
      58               0 :         $this->sendHeaders();                                                                              
      59               0 :         echo (string) $this;                                                                               
      60               0 :         exit();                                                                                            
      61                 :     }                                                                                                      
      62                 :                                                                                                            
      63                 :     /**                                                                                                    
      64                 :      * Send out HTTP headers for JSON.                                                                     
      65                 :      *                                                                                                     
      66                 :      * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-5.1                                  
      67                 :      * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-5.2                                  
      68                 :      *                                                                                                     
      69                 :      * @ingroup oauth2_section_5                                                                           
      70                 :      */                                                                                                    
      71                 :     protected function sendHeaders() {                                                                     
      72               0 :         header("Content-Type: application/json");                                                          
      73               0 :         header("Cache-Control: no-store");                                                                 
      74               0 :     }                                                                                                      
      75                 :                                                                                                            
      76                 :     /**                                                                                                    
      77                 :      * @see Exception::__toString()                                                                        
      78                 :      */                                                                                                    
      79                 :     public function __toString() {                                                                         
      80               0 :         return json_encode($this->errorData);                                                              
      81                 :     }                                                                                                      

Generated by PHP_CodeCoverage 1.1.2 using PHP 5.3.10 and PHPUnit 3.6.10 at Thu Mar 29 15:14:42 BRT 2012.