apigee_edge-8.x-1.17/modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityEventDeriverBase.php
modules/apigee_edge_actions/src/Plugin/RulesEvent/EdgeEntityEventDeriverBase.php
<?php
/**
* Copyright 2020 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_actions\Plugin\RulesEvent;
use Drupal\Component\Plugin\Derivative\DeriverBase;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\apigee_edge\Entity\AppInterface;
use Drupal\apigee_edge\Entity\EdgeEntityTypeInterface;
use Drupal\apigee_edge_actions\ApigeeActionsEntityTypeHelperInterface;
use Drupal\apigee_edge_teams\Entity\TeamAppInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Rules event deriver for Apigee Edge entity types.
*/
abstract class EdgeEntityEventDeriverBase extends DeriverBase implements EdgeEntityEventDeriverInterface {
use StringTranslationTrait;
/**
* The apigee app entity type manager service.
*
* @var \Drupal\apigee_edge_actions\ApigeeActionsEntityTypeHelperInterface
*/
protected $edgeEntityTypeManager;
/**
* AppEventDeriver constructor.
*
* @param \Drupal\apigee_edge_actions\ApigeeActionsEntityTypeHelperInterface $edge_entity_type_manager
* The apigee app entity type manager service.
*/
public function __construct(ApigeeActionsEntityTypeHelperInterface $edge_entity_type_manager) {
$this->edgeEntityTypeManager = $edge_entity_type_manager;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, $base_plugin_id) {
return new static(
$container->get('apigee_edge_actions.edge_entity_type_manager')
);
}
/**
* {@inheritdoc}
*/
public function getEntityTypes(): array {
return $this->edgeEntityTypeManager->getEntityTypes();
}
/**
* {@inheritdoc}
*/
public function getContext(EdgeEntityTypeInterface $entity_type): array {
$context = [
$entity_type->id() => [
'type' => "entity:{$entity_type->id()}",
'label' => $entity_type->getLabel(),
],
];
// Add additional context for App.
if ($entity_type->entityClassImplements(AppInterface::class)) {
// Add the developer to the context.
$context['developer'] = [
'type' => 'entity:user',
'label' => 'Developer',
];
// Add the team to the context.
if ($entity_type->entityClassImplements(TeamAppInterface::class)) {
$context['team'] = [
'type' => 'entity:team',
'label' => 'Team',
];
}
}
return $context;
}
/**
* {@inheritdoc}
*/
public function getDerivativeDefinitions($base_plugin_definition) {
foreach ($this->getEntityTypes() as $entity_type) {
$this->derivatives[$entity_type->id()] = [
'label' => $this->getLabel($entity_type),
'category' => $entity_type->getLabel(),
'entity_type_id' => $entity_type->id(),
'context_definitions' => $this->getContext($entity_type),
] + $base_plugin_definition;
}
return $this->derivatives;
}
}
