You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					51 lines
				
				1.3 KiB
			
		
		
			
		
	
	
					51 lines
				
				1.3 KiB
			| 
								 
											12 years ago
										 
									 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @link http://www.yiiframework.com/
							 | 
						||
| 
								 | 
							
								 * @copyright Copyright (c) 2008 Yii Software LLC
							 | 
						||
| 
								 | 
							
								 * @license http://www.yiiframework.com/license/
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								namespace yii\authclient\signature;
							 | 
						||
| 
								 
											12 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								use yii\base\Object;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * BaseMethod is a base class for the OAuth signature methods.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @property string $name method canonical name. This property is read-only.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @author Paul Klimov <klimov.paul@gmail.com>
							 | 
						||
| 
								 | 
							
								 * @since 2.0
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								abstract class BaseMethod extends Object
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Return the canonical name of the Signature Method.
							 | 
						||
| 
								 | 
							
									 * @return string method name.
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									abstract public function getName();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Generates OAuth request signature.
							 | 
						||
| 
								 | 
							
									 * @param string $baseString signature base string.
							 | 
						||
| 
								 | 
							
									 * @param string $key signature key.
							 | 
						||
| 
								 | 
							
									 * @return string signature string.
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									abstract public function generateSignature($baseString, $key);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Verifies given OAuth request.
							 | 
						||
| 
								 | 
							
									 * @param string $signature signature to be verified.
							 | 
						||
| 
								 | 
							
									 * @param string $baseString signature base string.
							 | 
						||
| 
								 | 
							
									 * @param string $key signature key.
							 | 
						||
| 
								 | 
							
									 * @return boolean success.
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									public function verify($signature, $baseString, $key)
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										$expectedSignature = $this->generateSignature($baseString, $key);
							 | 
						||
| 
								 | 
							
										if (empty($signature) || empty($expectedSignature)) {
							 | 
						||
| 
								 | 
							
											return false;
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
										return (strcmp($expectedSignature, $signature) === 0);
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								}
							 |