You are here

loqate.install in Loqate 8

Same filename and directory in other branches
  1. 2.x loqate.install

Contains loqate.install.

File

loqate.install
View source
<?php

/**
 * @file
 * Contains loqate.install.
 */
use Drupal\key\Entity\Key;
use Drupal\loqate\Form\LoqateApiKeyConfigForm;

/**
 * Decoupled Webform so install pca_webform submodule for the moved plugins.
 */
function loqate_update_8001() {

  // All sites using this module up until now would have had these plugins.
  \Drupal::service('module_installer')
    ->install([
    'pca_webform',
  ]);
  return t('PCA Webform installed.');
}

/**
 * Install new dependency on the key module.
 */
function loqate_update_8002() {

  // All sites using this module up until now will need this update.
  \Drupal::service('module_installer')
    ->install([
    'key',
  ]);
  return t('Key installed.');
}

/**
 * Convert old key string value into a key config entity.
 */
function loqate_update_8003() {

  // Move the string value into a key config entity if any.
  $loqate_config = \Drupal::configFactory()
    ->getEditable('loqate.loqateapikeyconfig');
  $old_key_value = $loqate_config
    ->get(LoqateApiKeyConfigForm::DEFAULT_API_KEY);
  if (!empty($old_key_value)) {

    // Create a new entity key with the config key provider.
    $key_entity = new Key([
      'id' => LoqateApiKeyConfigForm::DEFAULT_API_KEY,
      'label' => 'Loqate API key',
      'key_provider' => 'config',
      'key_input' => 'text_field',
    ], 'key');
    $key_entity
      ->setKeyValue($old_key_value);
    $key_entity
      ->save();

    // Set the config id now as the key value in config.
    $loqate_config
      ->set(LoqateApiKeyConfigForm::DEFAULT_API_KEY, LoqateApiKeyConfigForm::DEFAULT_API_KEY)
      ->save();
    return t('Key config entity successfully created.');
  }
  return t('No old key value found.');
}

/**
 * Assign administer loqate api permission to roles.
 */
function loqate_update_8004() {
  $old_perm = 'access administration pages';
  $new_perm = 'administer loqate api';
  $did_update = FALSE;

  /** @var \Drupal\user\RoleInterface[] $roles */
  $roles = \Drupal::entityTypeManager()
    ->getStorage('user_role')
    ->loadMultiple();
  foreach ($roles as $role) {
    if ($role
      ->hasPermission($old_perm)) {
      $role
        ->grantPermission($new_perm)
        ->save();
      $did_update = TRUE;
    }
  }
  return $did_update ? t('Loqate permission has been granted') : t('No permission updaes required');
}

Functions

Namesort descending Description
loqate_update_8001 Decoupled Webform so install pca_webform submodule for the moved plugins.
loqate_update_8002 Install new dependency on the key module.
loqate_update_8003 Convert old key string value into a key config entity.
loqate_update_8004 Assign administer loqate api permission to roles.