1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Slides\Saml2\Http\Controllers; |
4
|
|
|
|
5
|
|
|
use Slides\Saml2\Events\SignedIn; |
6
|
|
|
use Slides\Saml2\Auth; |
7
|
|
|
use Illuminate\Routing\Controller; |
|
|
|
|
8
|
|
|
use Illuminate\Http\Request; |
|
|
|
|
9
|
|
|
use OneLogin\Saml2\Error as OneLoginError; |
10
|
|
|
|
11
|
|
|
/** |
12
|
|
|
* Class Saml2Controller |
13
|
|
|
* |
14
|
|
|
* @package Slides\Saml2\Http\Controllers |
15
|
|
|
*/ |
16
|
|
|
class Saml2Controller extends Controller |
17
|
|
|
{ |
18
|
|
|
/** |
19
|
|
|
* Render the metadata. |
20
|
|
|
* |
21
|
|
|
* @param Auth $auth |
22
|
|
|
* |
23
|
|
|
* @return \Illuminate\Support\Facades\Response |
24
|
|
|
* |
25
|
|
|
* @throws OneLoginError |
26
|
|
|
*/ |
27
|
|
|
public function metadata(Auth $auth) |
28
|
|
|
{ |
29
|
|
|
$metadata = $auth->getMetadata(); |
30
|
|
|
|
31
|
|
|
return response($metadata, 200, ['Content-Type' => 'text/xml']); |
|
|
|
|
32
|
|
|
} |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* Process the SAML Response sent by the IdP. |
36
|
|
|
* |
37
|
|
|
* Fires "SignedIn" event if a valid user is found. |
38
|
|
|
* |
39
|
|
|
* @param Auth $auth |
40
|
|
|
* |
41
|
|
|
* @return \Illuminate\Support\Facades\Redirect |
42
|
|
|
* |
43
|
|
|
* @throws OneLoginError |
44
|
|
|
* @throws \OneLogin\Saml2\ValidationError |
45
|
|
|
*/ |
46
|
|
|
public function acs(Auth $auth) |
47
|
|
|
{ |
48
|
|
|
$errors = $auth->acs(); |
49
|
|
|
|
50
|
|
|
if (!empty($errors)) { |
51
|
|
|
if (config('saml2.debug')) { |
|
|
|
|
52
|
|
|
logger()->debug('[Saml2] Error with IdP SAML Response. [Debug] Assertion: ' . $auth->getBase()->getLastResponseXML()); |
|
|
|
|
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
logger()->error('saml2.error_detail', ['error' => $auth->getLastErrorReason()]); |
56
|
|
|
session()->flash('saml2.error_detail', [$auth->getLastErrorReason()]); |
|
|
|
|
57
|
|
|
|
58
|
|
|
logger()->error('saml2.error', $errors); |
59
|
|
|
session()->flash('saml2.error', $errors); |
60
|
|
|
|
61
|
|
|
return redirect(config('saml2.errorRoute')); |
|
|
|
|
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
$user = $auth->getSaml2User(); |
65
|
|
|
|
66
|
|
|
event(new SignedIn($user, $auth)); |
|
|
|
|
67
|
|
|
|
68
|
|
|
$redirectUrl = $user->getIntendedUrl(); |
69
|
|
|
|
70
|
|
|
if ($redirectUrl !== null && !$this->wouldCauseInfiniteLoop($auth, $redirectUrl)) { |
71
|
|
|
return redirect($redirectUrl); |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
return redirect($auth->getTenant()->relay_state_url ?: config('saml2.loginRoute')); |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
private function wouldCauseInfiniteLoop(Auth $auth, $redirectUrl) |
78
|
|
|
{ |
79
|
|
|
$loginUrl = route('saml.login', ['uuid' => $auth->getTenant()->uuid]); |
|
|
|
|
80
|
|
|
return $redirectUrl === $loginUrl; |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
/** |
84
|
|
|
* Process the SAML Logout Response / Logout Request sent by the IdP. |
85
|
|
|
* |
86
|
|
|
* Fires 'saml2.logoutRequestReceived' event if its valid. |
87
|
|
|
* |
88
|
|
|
* This means the user logged out of the SSO infrastructure, you 'should' log him out locally too. |
89
|
|
|
* |
90
|
|
|
* @param Auth $auth |
91
|
|
|
* |
92
|
|
|
* @return \Illuminate\Support\Facades\Redirect |
93
|
|
|
* |
94
|
|
|
* @throws OneLoginError |
95
|
|
|
* @throws \Exception |
96
|
|
|
*/ |
97
|
|
|
public function sls(Auth $auth) |
98
|
|
|
{ |
99
|
|
|
$errors = $auth->sls(config('saml2.retrieveParametersFromServer')); |
|
|
|
|
100
|
|
|
|
101
|
|
|
if (!empty($errors)) { |
102
|
|
|
logger()->error('saml2.error_detail', ['error' => $auth->getLastErrorReason()]); |
|
|
|
|
103
|
|
|
session()->flash('saml2.error_detail', [$auth->getLastErrorReason()]); |
|
|
|
|
104
|
|
|
|
105
|
|
|
logger()->error('saml2.error', $errors); |
106
|
|
|
session()->flash('saml2.error', $errors); |
107
|
|
|
|
108
|
|
|
return redirect(config('saml2.errorRoute')); |
|
|
|
|
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
return redirect(config('saml2.logoutRoute')); //may be set a configurable default |
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
/** |
115
|
|
|
* Initiate a login request. |
116
|
|
|
* |
117
|
|
|
* @param Illuminate\Http\Request $request |
|
|
|
|
118
|
|
|
* @param Auth $auth |
119
|
|
|
* |
120
|
|
|
* @return void |
121
|
|
|
* |
122
|
|
|
* @throws OneLoginError |
123
|
|
|
*/ |
124
|
|
|
public function login(Request $request, Auth $auth) |
125
|
|
|
{ |
126
|
|
|
$redirectUrl = $auth->getTenant()->relay_state_url ?: config('saml2.loginRoute'); |
|
|
|
|
127
|
|
|
|
128
|
|
|
$auth->login($request->query('returnTo', $redirectUrl)); |
129
|
|
|
} |
130
|
|
|
|
131
|
|
|
/** |
132
|
|
|
* Initiate a logout request. |
133
|
|
|
* |
134
|
|
|
* @param Illuminate\Http\Request $request |
135
|
|
|
* @param Auth $auth |
136
|
|
|
* |
137
|
|
|
* @return void |
138
|
|
|
* |
139
|
|
|
* @throws OneLoginError |
140
|
|
|
*/ |
141
|
|
|
public function logout(Request $request, Auth $auth) |
142
|
|
|
{ |
143
|
|
|
$auth->logout( |
144
|
|
|
$request->query('returnTo'), |
145
|
|
|
$request->query('nameId'), |
146
|
|
|
$request->query('sessionIndex') |
147
|
|
|
); |
148
|
|
|
} |
149
|
|
|
} |
150
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths