|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the TYPO3 CMS project. |
|
5
|
|
|
* |
|
6
|
|
|
* It is free software; you can redistribute it and/or modify it under |
|
7
|
|
|
* the terms of the GNU General Public License, either version 2 |
|
8
|
|
|
* of the License, or any later version. |
|
9
|
|
|
* |
|
10
|
|
|
* For the full copyright and license information, please read the |
|
11
|
|
|
* LICENSE.txt file that was distributed with this source code. |
|
12
|
|
|
* |
|
13
|
|
|
* The TYPO3 project - inspiring people to share! |
|
14
|
|
|
*/ |
|
15
|
|
|
|
|
16
|
|
|
namespace TYPO3\CMS\Beuser\Domain\Repository; |
|
17
|
|
|
|
|
18
|
|
|
use TYPO3\CMS\Beuser\Domain\Model\BackendUser; |
|
19
|
|
|
use TYPO3\CMS\Core\Authentication\AbstractUserAuthentication; |
|
20
|
|
|
use TYPO3\CMS\Core\Session\Backend\HashableSessionBackendInterface; |
|
21
|
|
|
use TYPO3\CMS\Core\Session\Backend\SessionBackendInterface; |
|
22
|
|
|
use TYPO3\CMS\Core\Session\SessionManager; |
|
23
|
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* @internal This class is a TYPO3 Backend implementation and is not considered part of the Public TYPO3 API. |
|
27
|
|
|
*/ |
|
28
|
|
|
class BackendUserSessionRepository |
|
29
|
|
|
{ |
|
30
|
|
|
protected SessionBackendInterface $sessionBackend; |
|
31
|
|
|
|
|
32
|
|
|
public function __construct() |
|
33
|
|
|
{ |
|
34
|
|
|
$this->sessionBackend = GeneralUtility::makeInstance(SessionManager::class)->getSessionBackend('BE'); |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* Find all active sessions for all backend users |
|
39
|
|
|
* |
|
40
|
|
|
* @return array |
|
41
|
|
|
*/ |
|
42
|
|
|
public function findAllActive(): array |
|
43
|
|
|
{ |
|
44
|
|
|
$allSessions = $this->sessionBackend->getAll(); |
|
45
|
|
|
|
|
46
|
|
|
// Map array to correct keys |
|
47
|
|
|
$allSessions = array_map( |
|
48
|
|
|
function ($session) { |
|
49
|
|
|
return [ |
|
50
|
|
|
'id' => $session['ses_id'], // this is the hashed sessionId |
|
51
|
|
|
'ip' => $session['ses_iplock'], |
|
52
|
|
|
'timestamp' => $session['ses_tstamp'], |
|
53
|
|
|
'ses_userid' => $session['ses_userid'] |
|
54
|
|
|
]; |
|
55
|
|
|
}, |
|
56
|
|
|
$allSessions |
|
57
|
|
|
); |
|
58
|
|
|
|
|
59
|
|
|
// Sort by timestamp |
|
60
|
|
|
usort($allSessions, function ($session1, $session2) { |
|
61
|
|
|
return $session1['timestamp'] <=> $session2['timestamp']; |
|
62
|
|
|
}); |
|
63
|
|
|
|
|
64
|
|
|
return $allSessions; |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
/** |
|
68
|
|
|
* Find Sessions for specific BackendUser |
|
69
|
|
|
* |
|
70
|
|
|
* @param BackendUser $backendUser |
|
71
|
|
|
* @return array |
|
72
|
|
|
*/ |
|
73
|
|
|
public function findByBackendUser(BackendUser $backendUser) |
|
74
|
|
|
{ |
|
75
|
|
|
$allActive = $this->findAllActive(); |
|
76
|
|
|
|
|
77
|
|
|
return array_filter( |
|
78
|
|
|
$allActive, |
|
79
|
|
|
function ($session) use ($backendUser) { |
|
80
|
|
|
return (int)$session['ses_userid'] === $backendUser->getUid(); |
|
81
|
|
|
} |
|
82
|
|
|
); |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
/** |
|
86
|
|
|
* Update current session to move back to the original user. |
|
87
|
|
|
* |
|
88
|
|
|
* @param AbstractUserAuthentication $userObject |
|
89
|
|
|
*/ |
|
90
|
|
|
public function switchBackToOriginalUser(AbstractUserAuthentication $userObject): void |
|
91
|
|
|
{ |
|
92
|
|
|
$this->sessionBackend->update( |
|
93
|
|
|
$userObject->getSessionId(), |
|
94
|
|
|
[ |
|
95
|
|
|
'ses_userid' => $userObject->user['ses_backuserid'], |
|
96
|
|
|
'ses_backuserid' => 0 |
|
97
|
|
|
] |
|
98
|
|
|
); |
|
99
|
|
|
} |
|
100
|
|
|
|
|
101
|
|
|
/** |
|
102
|
|
|
* Update current session to move to the target user. This is done |
|
103
|
|
|
* by setting the target user id as ses_userid and storing the current |
|
104
|
|
|
* user in ses_backuserid to restore the session record later on. |
|
105
|
|
|
* |
|
106
|
|
|
* @param AbstractUserAuthentication $userObject |
|
107
|
|
|
* @param int $targetUserId |
|
108
|
|
|
*/ |
|
109
|
|
|
public function switchToUser(AbstractUserAuthentication $userObject, int $targetUserId): void |
|
110
|
|
|
{ |
|
111
|
|
|
$this->sessionBackend->update( |
|
112
|
|
|
$userObject->getSessionId(), |
|
113
|
|
|
[ |
|
114
|
|
|
'ses_userid' => (int)$targetUserId, |
|
115
|
|
|
'ses_backuserid' => (int)$userObject->user['uid'] |
|
116
|
|
|
] |
|
117
|
|
|
); |
|
118
|
|
|
} |
|
119
|
|
|
|
|
120
|
|
|
public function getPersistedSessionIdentifier(AbstractUserAuthentication $userObject): string |
|
121
|
|
|
{ |
|
122
|
|
|
$currentSessionId = $userObject->getSessionId(); |
|
123
|
|
|
if ($this->sessionBackend instanceof HashableSessionBackendInterface) { |
|
124
|
|
|
$currentSessionId = $this->sessionBackend->hash($currentSessionId); |
|
|
|
|
|
|
125
|
|
|
} |
|
126
|
|
|
return $currentSessionId; |
|
127
|
|
|
} |
|
128
|
|
|
|
|
129
|
|
|
public function terminateSessionByIdentifier(string $sessionIdentifier): string |
|
130
|
|
|
{ |
|
131
|
|
|
return $this->sessionBackend->remove($sessionIdentifier); |
|
|
|
|
|
|
132
|
|
|
} |
|
133
|
|
|
} |
|
134
|
|
|
|