Spaces:
No application file
No application file
File size: 7,173 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
<?php
namespace Mautic\UserBundle\Event;
use Mautic\PluginBundle\Integration\AbstractIntegration;
use Mautic\UserBundle\Entity\User;
use Mautic\UserBundle\Security\Authentication\Token\PluginToken;
use Mautic\UserBundle\Security\Provider\UserProvider;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
use Symfony\Component\Security\Core\User\ChainUserProvider;
use Symfony\Component\Security\Core\User\UserProviderInterface;
use Symfony\Contracts\EventDispatcher\Event;
class AuthenticationEvent extends Event
{
/**
* @var Response
*/
protected $response;
/**
* @var bool
*/
protected $isAuthenticated = false;
/**
* @var bool
*/
protected $forceFailedAuthentication = false;
/**
* @var UserProvider
*/
protected UserProviderInterface $userProvider;
protected bool $isFormLogin;
/**
* Message to display to user if there is a failed authentication.
*
* @var string
*/
protected $failedAuthMessage;
/**
* @param string|User|null $user
* @param bool $isLoginCheck Event executed from the mautic_sso_login_check route typically used as the SSO callback
* @param string $authenticatingService Service Service requesting authentication
* @param array<AbstractIntegration>|null $integrations
*/
public function __construct(
protected $user,
protected TokenInterface $token,
UserProviderInterface $userProvider,
protected Request $request,
protected $isLoginCheck = false,
protected $authenticatingService = null,
protected $integrations = null
) {
$this->isFormLogin = $token instanceof UsernamePasswordToken;
if ($userProvider instanceof ChainUserProvider) {
// Chain of user providers so let's find Mautic's
$providers = $userProvider->getProviders();
foreach ($providers as $provider) {
if ($provider instanceof UserProvider) {
$userProvider = $provider;
break;
}
}
}
$this->userProvider = $userProvider;
}
/**
* Get user returned by username search.
*
* @return string|User|null
*/
public function getUser()
{
return $this->user;
}
/**
* Set the user to be used after authentication.
*
* @param bool|true $saveUser
* @param bool|true $createIfNotExists If true, the user will be created if it does not exist
*/
public function setUser(User $user, $saveUser = true, $createIfNotExists = true): void
{
if ($saveUser) {
$user = $this->userProvider->saveUser($user, $createIfNotExists);
}
$this->user = $user;
}
/**
* Get the token that has credentials, etc used to login.
*
* @return PluginToken
*/
public function getToken()
{
return $this->token;
}
public function setToken($service, TokenInterface $token): void
{
$this->token = $token;
$this->authenticatingService = $service;
$this->isAuthenticated = null !== $token->getUser();
$this->stopPropagation();
}
/**
* Get the username used.
*
* @return string
*/
public function getUsername()
{
return $this->token->getUserIdentifier();
}
/**
* Get user provider to find and/or create new users.
*
* @return UserProvider
*/
public function getUserProvider()
{
return $this->userProvider;
}
/**
* Set if this user is successfully authenticated.
*
* @param string $service Service that authenticated the user; if using a Integration, it should match that of AbstractIntegration::getName();
* @param bool|true $createIfNotExists
*/
public function setIsAuthenticated($service, User $user = null, $createIfNotExists = true): void
{
$this->authenticatingService = $service;
$this->isAuthenticated = true;
if (null !== $user) {
$this->setUser($user, $createIfNotExists);
}
// Authenticated so stop propagation
$this->stopPropagation();
}
/**
* Check if the user has been authenticated.
*
* @return bool
*/
public function isAuthenticated()
{
return $this->isAuthenticated;
}
/**
* Prevent any other authentication method from authorizing the user.
* Mainly used to prevent a form login from trying to auth with the given password for a local user (think two-factor requirements).
*/
public function setIsFailedAuthentication(): void
{
$this->forceFailedAuthentication = true;
// Authenticated so stop propagation
$this->stopPropagation();
}
/**
* Set the message to display to the user for failing auth.
*/
public function setFailedAuthenticationMessage($message): void
{
$this->failedAuthMessage = $message;
}
/**
* Returns message to display to user for failing auth.
*
* @return string
*/
public function getFailedAuthenticationMessage()
{
return $this->failedAuthMessage;
}
/**
* Returns true if a plugin has forcefully failed authentication.
*
* @return bool
*/
public function isFailed()
{
return $this->forceFailedAuthentication;
}
/**
* Get the service that authenticated the user.
*
* @return string
*/
public function getAuthenticatingService()
{
return $this->authenticatingService;
}
/**
* Set a response such as a redirect.
*/
public function setResponse(Response $response): void
{
$this->response = $response;
// A response has been requested so stop propagation
$this->stopPropagation();
}
/**
* Get the response if set by the listener.
*
* @return Response|null
*/
public function getResponse()
{
return $this->response;
}
/**
* Get the request.
*
* @return Request
*/
public function getRequest()
{
return $this->request;
}
/**
* Check if this is a form login authentication request or pre-auth.
*/
public function isFormLogin(): bool
{
return $this->isFormLogin;
}
/**
* Check if the event is executed as the result of accessing mautic_sso_login_check.
*
* @return bool
*/
public function isLoginCheck()
{
return $this->isLoginCheck;
}
/**
* @return AbstractIntegration|bool
*/
public function getIntegration($integrationName)
{
return $this->integrations[$integrationName] ?? false;
}
}
|