Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(auth): selecting database before auth caused error #85

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

jasverix
Copy link

No description provided.

@pprkut
Copy link
Collaborator

pprkut commented Mar 4, 2025

@jasverix Hi! Thank you for the fix!

However, without an explanation what error case this is fixing, I'm left guessing a little bit.

The general assumption here is that if an object is passed to the constructor, you can just call auth() before passing it to the constructor. All internal instantiations are handled in the code that's already there, except the case where we instantiate Redis_Cluster, but that would also make sure it's connected to a database in it's __call() method before calling auth().

@jasverix
Copy link
Author

jasverix commented Mar 5, 2025

It's a long time since I did this PR, but I am pretty sure it's the $this->driver->select($database); which is directly below the code I added. I cannot run ->select() before ->auth(), because ->select() requires a valid connection.

Alternative approach is that, in Redis.php, we don't pass self::$redisDatabase to the constructur, but run ->select(self::$redisDatabase) after if (!empty(self::$auth)) { block.

if ($auth !== null) {
$this->driver->auth($auth);
}

if ($database !== null) {
$this->driver->select($database);
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This causes error if auth is not executed.

@@ -72,7 +72,7 @@ public static function redis()
if (is_callable(self::$redisServer)) {
self::$redis = call_user_func(self::$redisServer, self::$redisDatabase);
} else {
self::$redis = new Redis(self::$redisServer, self::$redisDatabase);
self::$redis = new Redis(self::$redisServer, self::$redisDatabase, null, self::$auth);
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is passing $redisDatabase, which causes a ->select() in constructor. Line 78 passes auth after the select.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the value of $redisServer that triggers the error for you?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The value of $redisServer is 10.181.53.75. We are running a local redis server in our network - and that server has auth configured.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So when $redisServer is set to 10.181.53.75 and $redisDatabase is set to 1, the error occurs. If the $redisDatabase is 0, it does not fail, because ->select() is not ran.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not use tcp://user:pass@host:port/db as a value? The user part of it is ignored, but that wouldn't be part of $auth either so that wouldn't matter

@@ -72,7 +72,7 @@ public static function redis()
if (is_callable(self::$redisServer)) {
self::$redis = call_user_func(self::$redisServer, self::$redisDatabase);
} else {
self::$redis = new Redis(self::$redisServer, self::$redisDatabase);
self::$redis = new Redis(self::$redisServer, self::$redisDatabase, null, self::$auth);
}

if (!empty(self::$auth)) {
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here, auth is passed, but it is too late.

Copy link
Member

@danhunsaker danhunsaker Mar 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pretty sure the if block after this one should be removed in this PR, since trying to auth twice isn't technically valid.

@pprkut
Copy link
Collaborator

pprkut commented Mar 7, 2025

@danhunsaker You merged chrisboulton/php-resque#328 that introduced the $auth. Looking at the code, the way it's implemented i think it actually hurts more than it adds. I'm tempted to just remove it completely again. What do you think? Is there a use case that $auth covers that wouldn't be supported by a DSN string?

@danhunsaker
Copy link
Member

Ultimately, I'd like to rip Credis out and support multiple back ends by making users instantiate their own Redis connection.

For now? I'm ok with a rollback.

@danhunsaker danhunsaker force-pushed the fix-auth branch 2 times, most recently from 331a316 to c38c3e7 Compare March 17, 2025 06:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants