blob: 4c3b10047a3956e97f24c1df2ba87423fcad14a8 (
plain) (
blame)
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
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Sprinkle\Account\Error\Handler;
use UserFrosting\Sprinkle\Core\Error\Handler\HttpExceptionHandler;
/**
* Handler for AuthCompromisedExceptions.
*
* Warns the user that their account may have been compromised due to a stolen "remember me" cookie.
* @author Alex Weissman (https://alexanderweissman.com)
*/
class AuthCompromisedExceptionHandler extends HttpExceptionHandler
{
/**
* Render a generic, user-friendly response without sensitive debugging information.
*
* @return ResponseInterface
*/
public function renderGenericResponse() {
$template = $this->ci->view->getEnvironment()->loadTemplate('pages/error/compromised.html.twig');
return $this->response
->withStatus($this->statusCode)
->withHeader('Content-type', $this->contentType)
->write($template->render());
}
}
|