- Issue created by @eduardo morales alberti
- 🇪🇸Spain GeduR
It would be great if we could simulate the request but not do it so it keeps internal, so we avoid involving other layers like CDN or so
On issue
✨
Dettect links with access denied
Active
we wanted to cover access denied cases. The problem is that it checks the entity access, but some modules like a rabbit hole, or custom code could alter the request and give other responses.
The most accurate could be to simulate the request and get the response code, taking into account the redirections.
Example using curl:
$path = \Drupal::request()->getHost() . '/hello-world';
// Initialize a cURL session.
$ch = curl_init($path);
// Set options to fetch only the header.
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Execute the request.
curl_exec($ch);
// Get the HTTP status code.
$statusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
// Close the cURL session.
curl_close($ch);
echo "Status Code: " . $statusCode;
Active
1.0
Code
It would be great if we could simulate the request but not do it so it keeps internal, so we avoid involving other layers like CDN or so