Call to a member function setSyncing() on null if Drupal view is removed and post_update hook is run

Created on 20 January 2025, 2 months ago

Problem/Motivation

If the Drupal view civictheme_alerts is already deleted, then if you update civic theme to run civictheme_post_update_alert_visibility_validation(), then you get an error, Call to a member function setSyncing() on null, when running drush updb.

Steps to reproduce

See above.

Proposed resolution

Check if the config exists, before updating the config it.

Old code:

function civictheme_post_update_alert_visibility_validation(): string {
  $view_config = \Drupal::configFactory()->getEditable('views.view.civictheme_alerts');
  $view_config->set('display.default.display_options.fields.field_c_n_alert_page_visibility.alter.strip_tags', TRUE);
  $view_config->save();
  return (string) (new TranslatableMarkup('Updated alert api view to strip tags from visibility validation.'));
}

New code:

function civictheme_post_update_alert_visibility_validation(): string {
  $config_name = 'views.view.civictheme_alerts';
  $config_entity_type = 'view';
  $id = substr($config_name, strpos($config_name, '.', 6) + 1);
  $config_read = \Drupal::service('entity_type.manager')->getStorage($config_entity_type)->load($id);
  // Only update config if it already exists.
  if ($config_read) {
    $config_object = \Drupal::configFactory()->getEditable($config_name);
    $config_object->set('display.default.display_options.fields.field_c_n_alert_page_visibility.alter.strip_tags', TRUE);
    $config_object->save();
    return (string) (new TranslatableMarkup('Updated alert api view to strip tags from visibility validation.'));
  }
  return (string) (new TranslatableMarkup('Update to alert api view skipped, view does not exist.'));
}

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

1.9

Component

Code

Created by

🇦🇺Australia silverham

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

Comments & Activities

  • Issue created by @silverham
  • 🇦🇺Australia silverham

    Theme hook workaround to remove the config if it's invalid. So config is created but then removed:

    use Drupal\Core\StringTranslation\TranslatableMarkup;
    
    /**
     * Disable: Update alert api view to strip tags from visibility validation.
     *
     * Avoid error: "Error: Call to a member function setSyncing() on null"
     *
     * @see https://www.drupal.org/project/drupal/issues/3051453
     *
     * @SuppressWarnings(PHPMD.StaticAccess)
     */
    function MYTHEME_post_update_disable_civictheme_alert_visibility_validation(): string {
      if (!\Drupal::service('theme_handler')->themeExists('civictheme')) {
        return (string) (new TranslatableMarkup("Civictheme is not installed, post update skipped."));
      }
      $config_name = 'views.view.civictheme_alerts';
      $config_entity_type = 'view';
      $config_object = \Drupal::configFactory()->getEditable($config_name);
      if (!$config_object) {
        return (string) (new TranslatableMarkup("The Civictheme config, @config, not detcted, update .", ['@config' => $config_name]));
      }
      $storage = \Drupal::service('entity_type.manager')->getStorage($config_entity_type);
      // Var $id is "civictheme_alerts".
      // Same as:
      // phpcs:disable
      // $id = Drupal\Core\Config\Entity\ConfigEntityStorage\ConfigEntityStorage::getIDFromConfigName(
      //   'views.view.civictheme_alerts',
      //   'views.view'
      // );
      // phpcs:enable
      $id = substr($config_name, strpos($config_name, '.', 6) + 1);
      $config_read = $storage->load($id);
      // If it's bad config then delete it.
      if (!$config_read) {
        $view_config = \Drupal::configFactory()->getEditable($config_name);
        $view_config->delete();
        return (string) (new TranslatableMarkup("The Civictheme config, @config, was removed because it was invalid.", ['@config' => $config_name]));
      }
      return (string) (new TranslatableMarkup("The Civictheme config, @config, was kept because it was valid.", ['@config' => $config_name]));
    }
    
    • a2854628 committed on 1.x
      Issue #3500869 by silverham: Call to a member function setSyncing() on...
Production build 0.71.5 2024