File tree 3 files changed +33
-5
lines changed
3 files changed +33
-5
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,12 @@ public function getAdminUri(
111
111
);
112
112
}
113
113
114
- public function getLogoutUri ():UriInterface {
115
- return new LogoutUri ($ this ->authwaveHost );
114
+ public function getLogoutUri (string $ returnToPath = null ):UriInterface {
115
+ if (is_null ($ returnToPath )) {
116
+ $ returnToPath = $ this ->currentUriPath ;
117
+ }
118
+
119
+ return new LogoutUri ($ this ->authwaveHost , $ returnToPath );
116
120
}
117
121
118
122
private function completeAuth ():void {
Original file line number Diff line number Diff line change 4
4
class LogoutUri extends AbstractProviderUri {
5
5
const PATH_LOGOUT = "/logout " ;
6
6
7
- public function __construct (string $ baseRemoteUri ) {
7
+ public function __construct (
8
+ string $ baseRemoteUri ,
9
+ string $ returnToUri = "/ "
10
+ ) {
8
11
$ baseRemoteUri = $ this ->normaliseBaseUri ($ baseRemoteUri );
9
12
parent ::__construct ($ baseRemoteUri );
10
13
$ this ->path = self ::PATH_LOGOUT ;
14
+ $ this ->query = http_build_query ([
15
+ "returnTo " => $ returnToUri ,
16
+ ]);
11
17
}
12
18
}
Original file line number Diff line number Diff line change @@ -73,24 +73,42 @@ public function testLogoutClearsSession() {
73
73
Authenticator::SESSION_KEY => $ sessionData
74
74
];
75
75
76
+ $ redirectHandler = self ::createMock (RedirectHandler::class);
77
+
78
+ $ sut = new Authenticator (
79
+ "example-app-id " ,
80
+ "test-key " ,
81
+ "/ " ,
82
+ AuthUri::DEFAULT_BASE_REMOTE_URI ,
83
+ null ,
84
+ $ redirectHandler
85
+ );
86
+ $ sut ->logout ();
87
+ self ::assertEmpty ($ _SESSION );
88
+ }
89
+
90
+ public function testLogoutRedirectsToCurrentPath () {
91
+ $ _SESSION = [];
92
+ $ currentPath = "/current/example/path " ;
93
+
76
94
$ redirectHandler = self ::createMock (RedirectHandler::class);
77
95
$ redirectHandler ->expects (self ::once ())
78
96
->method ("redirect " )
79
97
->with (self ::callback (fn (UriInterface $ uri ) =>
80
98
$ uri ->getHost () === AuthUri::DEFAULT_BASE_REMOTE_URI
81
99
&& $ uri ->getPath () === LogoutUri::PATH_LOGOUT
100
+ && $ uri ->getQuery () === "returnTo= " . urlencode ($ currentPath )
82
101
));
83
102
84
103
$ sut = new Authenticator (
85
104
"example-app-id " ,
86
105
"test-key " ,
87
- " / " ,
106
+ $ currentPath ,
88
107
AuthUri::DEFAULT_BASE_REMOTE_URI ,
89
108
null ,
90
109
$ redirectHandler
91
110
);
92
111
$ sut ->logout ();
93
- self ::assertEmpty ($ _SESSION );
94
112
}
95
113
96
114
public function testLoginRedirects () {
You can’t perform that action at this time.
0 commit comments