-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: move forceSecureAccess() ForceHTTPS filter
- Loading branch information
Showing
5 changed files
with
66 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
namespace CodeIgniter\Filters; | ||
|
||
use CodeIgniter\HTTP\Exceptions\RedirectException; | ||
use CodeIgniter\HTTP\RequestInterface; | ||
use CodeIgniter\HTTP\ResponseInterface; | ||
use Config\Services; | ||
|
||
/** | ||
* Force HTTPS filter | ||
*/ | ||
class ForceHTTPS implements FilterInterface | ||
{ | ||
/** | ||
* Force Secure Site Access? If the config value 'forceGlobalSecureRequests' | ||
* is true, will enforce that all requests to this site are made through | ||
* HTTPS. Will redirect the user to the current page with HTTPS, as well | ||
* as set the HTTP Strict Transport Security header for those browsers | ||
* that support it. | ||
* | ||
* @param array|null $arguments | ||
* | ||
* @return ResponseInterface|void | ||
*/ | ||
public function before(RequestInterface $request, $arguments = null) | ||
{ | ||
$response = Services::response(); | ||
|
||
try { | ||
force_https(YEAR, $request, $response); | ||
} catch (RedirectException $e) { | ||
return $e->getResponse(); | ||
} | ||
} | ||
|
||
/** | ||
* We don't have anything to do here. | ||
* | ||
* @param array|null $arguments | ||
* | ||
* @return void | ||
*/ | ||
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null) | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters