Skip to content

Commit 42195c1

Browse files
committed
fix callbackUrl pb with https behind a reverse proxy
1 parent b9aff06 commit 42195c1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/Ubiquity/controllers/auth/AbstractOAuthController.php

+7-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* This class is part of Ubiquity
1111
*
1212
* @author jc
13-
* @version 1.0.0
13+
* @version 1.0.1
1414
*
1515
*/
1616
abstract class AbstractOAuthController extends Controller {
@@ -21,10 +21,12 @@ abstract class AbstractOAuthController extends Controller {
2121
*/
2222
protected $provider;
2323

24-
public function _oauth(string $name) {
25-
$requestURI = trim(strtok($_SERVER["REQUEST_URI"], '?'), '/');
26-
$link = 'http' . (isset($_SERVER['HTTPS']) ? 's' : '') . "://{$_SERVER['HTTP_HOST']}/{$requestURI}";
27-
$this->provider = OAuthManager::startAdapter($name, $link);
24+
public function _oauth(string $name, ?string $callbackUrl = null) {
25+
if(!isset($callbackUrl)) {
26+
$requestURI = \trim(\strtok($_SERVER["REQUEST_URI"], '?'), '/');
27+
$callbackUrl = $_SERVER['HTTP_X_FORWARDED_PROTO'] ?? ((isset($_SERVER["HTTPS"]) && strtolower($_SERVER["HTTPS"]) == "on") ? 'https' : 'http') . "://{$_SERVER['HTTP_HOST']}/{$requestURI}";
28+
}
29+
$this->provider = OAuthManager::startAdapter($name, $callbackUrl);
2830
$this->onConnect($name, $this->provider);
2931
}
3032

0 commit comments

Comments
 (0)