Detect links with access denied request level

Created on 27 February 2025, about 1 month ago

Problem/Motivation

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.

Steps to reproduce

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;
Feature request
Status

Active

Version

1.0

Component

Code

Created by

🇪🇸Spain eduardo morales alberti Spain, 🇪🇺

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024