Skip to content

Commit

Permalink
Renamed AuthComponent::redirect() to AuthComponent::redirectUrl().
Browse files Browse the repository at this point in the history
Closes #3268
  • Loading branch information
ADmad committed Jan 27, 2013
1 parent 422ceaf commit 04ec9dd
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
13 changes: 12 additions & 1 deletion lib/Cake/Controller/Component/AuthComponent.php
Expand Up @@ -622,6 +622,17 @@ protected function _getUser() {
return false;
}

/**
* Backwards compatible alias for AuthComponent::redirectUrl()
*
* @param string|array $url Optional URL to write as the login redirect URL.
* @return string Redirect URL
* @deprecated 2.3 Use AuthComponent::redirectUrl() instead
*/
public function redirect($url = null) {
return $this->redirectUrl($url);
}

/**
* If no parameter is passed, gets the authentication redirect URL. Pass a url in to
* set the destination a user should be redirected to upon logging in. Will fallback to
Expand All @@ -630,7 +641,7 @@ protected function _getUser() {
* @param string|array $url Optional URL to write as the login redirect URL.
* @return string Redirect URL
*/
public function redirect($url = null) {
public function redirectUrl($url = null) {
if (!is_null($url)) {
$redir = $url;
$this->Session->write('Auth.redirect', $redir);
Expand Down
10 changes: 5 additions & 5 deletions lib/Cake/Test/Case/Controller/Component/AuthComponentTest.php
Expand Up @@ -758,7 +758,7 @@ public function testLoginRedirect() {
);
$this->Auth->startup($this->Controller);
$expected = Router::normalize($this->Auth->loginRedirect);
$this->assertEquals($expected, $this->Auth->redirect());
$this->assertEquals($expected, $this->Auth->redirectUrl());

$this->Auth->Session->delete('Auth');

Expand Down Expand Up @@ -797,7 +797,7 @@ public function testLoginRedirect() {
$this->Auth->loginRedirect = false;
$this->Auth->startup($this->Controller);
$expected = Router::normalize('/admin');
$this->assertEquals($expected, $this->Auth->redirect());
$this->assertEquals($expected, $this->Auth->redirectUrl());

// Ticket #4750
// Named Parameters
Expand Down Expand Up @@ -1263,7 +1263,7 @@ public function testFlashSettings() {
*/
public function testRedirectSet() {
$value = array('controller' => 'users', 'action' => 'home');
$result = $this->Auth->redirect($value);
$result = $this->Auth->redirectUrl($value);
$this->assertEquals('/users/home', $result);
$this->assertEquals($value, $this->Auth->Session->read('Auth.redirect'));
}
Expand All @@ -1277,7 +1277,7 @@ public function testRedirectSessionRead() {
$this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
$this->Auth->Session->write('Auth.redirect', '/users/home');

$result = $this->Auth->redirect();
$result = $this->Auth->redirectUrl();
$this->assertEquals('/users/home', $result);
$this->assertFalse($this->Auth->Session->check('Auth.redirect'));
}
Expand All @@ -1293,7 +1293,7 @@ public function testRedirectSessionReadEqualToLoginAction() {
$this->Auth->loginRedirect = array('controller' => 'users', 'action' => 'home');
$this->Auth->Session->write('Auth.redirect', array('controller' => 'users', 'action' => 'login'));

$result = $this->Auth->redirect();
$result = $this->Auth->redirectUrl();
$this->assertEquals('/users/home', $result);
$this->assertFalse($this->Auth->Session->check('Auth.redirect'));
}
Expand Down

0 comments on commit 04ec9dd

Please sign in to comment.