Skip to content

Commit

Permalink
Allow a custom query string parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
thewilkybarkid committed Mar 5, 2017
1 parent 1a95710 commit 32301c3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
11 changes: 11 additions & 0 deletions src/Symfony/Component/HttpKernel/Tests/UriSignerTest.php
Expand Up @@ -50,4 +50,15 @@ public function testCheckWithDifferentArgSeparator()
);
$this->assertTrue($signer->check($signer->sign('http://example.com/foo?foo=bar&baz=bay')));
}

public function testCheckWithDifferentParameter()
{
$signer = new UriSigner('foobar', 'qux');

$this->assertSame(
'http://example.com/foo?baz=bay&foo=bar&qux=rIOcC%2FF3DoEGo%2FvnESjSp7uU9zA9S%2F%2BOLhxgMexoPUM%3D',
$signer->sign('http://example.com/foo?foo=bar&baz=bay')
);
$this->assertTrue($signer->check($signer->sign('http://example.com/foo?foo=bar&baz=bay')));
}
}
19 changes: 11 additions & 8 deletions src/Symfony/Component/HttpKernel/UriSigner.php
Expand Up @@ -19,21 +19,24 @@
class UriSigner
{
private $secret;
private $parameter;

/**
* Constructor.
*
* @param string $secret A secret
* @param string $secret A secret
* @param string $parameter Query string parameter to use
*/
public function __construct($secret)
public function __construct($secret, $parameter = '_hash')
{
$this->secret = $secret;
$this->parameter = $parameter;
}

/**
* Signs a URI.
*
* The given URI is signed by adding a _hash query string parameter
* The given URI is signed by adding the query string parameter
* which value depends on the URI and the secret.
*
* @param string $uri A URI to sign
Expand All @@ -51,13 +54,13 @@ public function sign($uri)

$uri = $this->buildUrl($url, $params);

return $uri.(false === strpos($uri, '?') ? '?' : '&').'_hash='.$this->computeHash($uri);
return $uri.(false === strpos($uri, '?') ? '?' : '&').$this->parameter.'='.$this->computeHash($uri);
}

/**
* Checks that a URI contains the correct hash.
*
* The _hash query string parameter must be the last one
* The query string parameter must be the last one
* (as it is generated that way by the sign() method, it should
* never be a problem).
*
Expand All @@ -74,12 +77,12 @@ public function check($uri)
$params = array();
}

if (empty($params['_hash'])) {
if (empty($params[$this->parameter])) {
return false;
}

$hash = urlencode($params['_hash']);
unset($params['_hash']);
$hash = urlencode($params[$this->parameter]);
unset($params[$this->parameter]);

return $this->computeHash($this->buildUrl($url, $params)) === $hash;
}
Expand Down

0 comments on commit 32301c3

Please sign in to comment.