You are here

UserUpdate.php in Apigee Edge 8

File

src/Job/UserUpdate.php
View source
<?php

/**
 * Copyright 2018 Google Inc.
 *
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License version 2 as published by the
 * Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
 * License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc., 51
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */
namespace Drupal\apigee_edge\Job;

use Drupal\apigee_edge\Exception\DeveloperToUserConversationInvalidValueException;
use Drupal\apigee_edge\Structure\DeveloperToUserConversionResult;

/**
 * A job to update a Drupal user based on an Apigee Edge developer.
 */
class UserUpdate extends UserCreateUpdate {

  /**
   * {@inheritdoc}
   */
  protected function beforeUserSave(DeveloperToUserConversionResult $result) : void {
    parent::beforeUserSave($result);

    /** @var \Drupal\user\UserInterface $original_user */
    $original_user = \Drupal::entityTypeManager()
      ->getStorage('user')
      ->loadUnchanged($result
      ->getUser()
      ->id());

    // Even if the developer has been blocked in Apigee Edge we should not block
    // its Drupal user automatically when syncing.
    if ($original_user
      ->isActive() && $result
      ->getUser()
      ->isBlocked()) {
      $result
        ->getUser()
        ->activate();
    }
    $context = [
      'link' => $result
        ->getUser()
        ->toLink(t('View user'))
        ->toString(),
    ];
    $this
      ->logConversionProblems($result
      ->getProblems(), $context);

    // Rollback a synchronised field's value if the related attribute's value
    // contained an incorrect field value.
    if (count($result
      ->getProblems()) > 0) {

      /** @var \Drupal\user\UserInterface $original_user */
      foreach ($result
        ->getProblems() as $problem) {

        // Do not apply rollback on base fields.
        if ($problem instanceof DeveloperToUserConversationInvalidValueException && !in_array($problem
          ->getTarget(), $this
          ->userDeveloperConverter()::DEVELOPER_PROP_USER_BASE_FIELD_MAP, TRUE)) {
          $result
            ->getUser()
            ->set($problem
            ->getTarget(), $original_user
            ->get($problem
            ->getTarget())
            ->getValue());
        }
      }
    }
  }

  /**
   * {@inheritdoc}
   */
  public function __toString() : string {
    return t('Updating user (@email) from Apigee Edge.', [
      '@email' => $this->email,
    ])
      ->render();
  }

}

Classes

Namesort descending Description
UserUpdate A job to update a Drupal user based on an Apigee Edge developer.