apigee_edge-8.x-1.17/src/Entity/Controller/DeveloperAppEdgeEntityControllerProxy.php

src/Entity/Controller/DeveloperAppEdgeEntityControllerProxy.php
<?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\Entity\Controller;

use Apigee\Edge\Api\Management\Entity\AppInterface;
use Apigee\Edge\Api\Management\Entity\DeveloperAppInterface;
use Apigee\Edge\Entity\EntityInterface;
use Drupal\apigee_edge\Exception\RuntimeException;

/**
 * Developer app specific entity controller implementation.
 *
 * It ensures that the right SDK controllers (and with that the right API
 * endpoints) gets used for CRUDL operations.
 */
final class DeveloperAppEdgeEntityControllerProxy implements EdgeEntityControllerInterface {

  /**
   * The developer app controller factory service.
   *
   * @var \Drupal\apigee_edge\Entity\Controller\DeveloperAppControllerFactoryInterface
   */
  private $devAppControllerFactory;

  /**
   * The app controller service.
   *
   * @var \Drupal\apigee_edge\Entity\Controller\AppControllerInterface
   */
  private $appController;


  /**
   * The organization controller service.
   *
   * @var \Drupal\apigee_edge\Entity\Controller\OrganizationControllerInterface
   */
  private $orgController;

  /**
   * DeveloperAppEntityControllerProxy constructor.
   *
   * @param \Drupal\apigee_edge\Entity\Controller\DeveloperAppControllerFactoryInterface $developer_app_controller_factory
   *   The developer app controller factory service.
   * @param \Drupal\apigee_edge\Entity\Controller\AppControllerInterface $app_controller
   *   The app controller service.
   * @param \Drupal\apigee_edge\Entity\Controller\OrganizationControllerInterface $org_controller
   *   The organization controller service.
   */
  public function __construct(DeveloperAppControllerFactoryInterface $developer_app_controller_factory, AppControllerInterface $app_controller, OrganizationControllerInterface $org_controller) {
    $this->devAppControllerFactory = $developer_app_controller_factory;
    $this->appController = $app_controller;
    $this->orgController = $org_controller;
  }

  /**
   * {@inheritdoc}
   */
  public function create(EntityInterface $entity): void {
    /** @var \Apigee\Edge\Api\Management\Entity\DeveloperAppInterface $entity */
    if (empty($entity->getDeveloperId())) {
      // Sanity check.
      throw new RuntimeException('Developer id has to set on the app.');
    }
    $controller = $this->devAppControllerFactory->developerAppController($entity->getDeveloperId());
    $controller->create($entity);
  }

  /**
   * {@inheritdoc}
   */
  public function load(string $id): EntityInterface {
    $app = $this->orgController->isOrganizationApigeeX() ? $this->appController->loadAppGroup($id) : $this->appController->loadApp($id);
    return $app;
  }

  /**
   * {@inheritdoc}
   */
  public function update(EntityInterface $entity): void {
    /** @var \Apigee\Edge\Api\Management\Entity\DeveloperAppInterface $entity */
    $controller = $this->devAppControllerFactory->developerAppController($entity->getDeveloperId());
    $controller->update($entity);
  }

  /**
   * {@inheritdoc}
   */
  public function delete(string $id): void {
    // Try to be smart here and load the app from the developer app
    // entity cache (app controller's cache is probably empty unless there were
    // a load() or getEntities() call before).
    $entity = \Drupal::entityTypeManager()->getStorage('developer_app')->load($id);
    if (!$entity) {
      // Entity has not found in the entity cache, we have it from Apigee Edge.
      $entity = $this->load($id);
    }
    /** @var \Apigee\Edge\Api\Management\Entity\DeveloperAppInterface $entity */
    $controller = $this->devAppControllerFactory->developerAppController($entity->getDeveloperId());
    // The id that we got is a UUID, what we need is an app name.
    $controller->delete($entity->getName());
  }

  /**
   * {@inheritdoc}
   */
  public function loadAll(): array {
    return array_filter($this->appController->listApps(TRUE), function (AppInterface $app) {
      return $app instanceof DeveloperAppInterface;
    });
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc