Skip to content

Commit

Permalink
Merge pull request #190 from quantcdn/feature/d10-aggregation
Browse files Browse the repository at this point in the history
Work around Drupal 10.1 CSS/JS aggregation issues.
  • Loading branch information
kepol authored Sep 29, 2023
2 parents abc7e93 + ebf9857 commit e793d24
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions modules/quant_api/src/EventSubscriber/QuantApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ public function onRedirect(QuantRedirectEvent $event) {
*/
public function onOutput(QuantEvent $event) {

$config = \Drupal::config('quant.settings');
$path = $event->getLocation();
$content = $event->getContents();
$meta = $event->getMetadata();
Expand Down Expand Up @@ -177,14 +178,40 @@ public function onOutput(QuantEvent $event) {
$fileOnDisk = str_replace('/system/files', $privatePath, $file);
}

// Check if the file has changed.
if (isset($item['existing_md5'])) {
if (file_exists($fileOnDisk) && md5_file($fileOnDisk) == $item['existing_md5']) {
continue;
}
}

// If the file exists we send it directly to quant otherwise we add it
// to the queue to generate assets on the next run.
// In Drupal 10.1, work around CSS/JS aggregation issues.
// Only process internal CSS/JS files.
$check_file = (str_ends_with($file, 'css') || str_ends_with($file, 'js')) && !str_starts_with($item['original_path'], 'http');
if (!file_exists($fileOnDisk) && $check_file) {

// Do an HTTP request for the full file path to generate the file.
// The `original_path` has the necessary query parameters.
$local_server = $config->get('local_server') ?: 'http://localhost';
$url = $local_server . $item['original_path'];

// Set the headers.
$headers['Host'] = $config->get('host_domain') ?: $_SERVER['SERVER_NAME'];

// If using basic auth, the credentials must already be in the host.
$response = \Drupal::httpClient()->get($url, [
'http_errors' => FALSE,
'headers' => $headers,
'allow_redirects' => FALSE,
'verify' => boolval($config->get('ssl_cert_verify')),
]);
if ($response->getStatusCode() != 200) {
$this->logger->error("Error retrieving file for route: $url");
}
}

// If the file exists, send it directly to Quant; otherwise, add it to the
// queue to generate assets on the next run.
if (file_exists($fileOnDisk)) {
$this->eventDispatcher->dispatch(new QuantFileEvent($fileOnDisk, $item['full_path'] ?? $file), QuantFileEvent::OUTPUT);
}
Expand All @@ -204,7 +231,7 @@ public function onOutput(QuantEvent $event) {
$xpath = new \DOMXPath($document);

$xpath_selectors = [];
$links_config = \Drupal::config('quant.settings')->get('xpath_selectors');
$links_config = $config->get('xpath_selectors');

foreach (explode(PHP_EOL, $links_config) as $links_line) {
$xpath_selectors[] = trim($links_line);
Expand Down

0 comments on commit e793d24

Please sign in to comment.