Esempio n. 1
0
 /**
  * {@inheritdoc}
  */
 public function applyContextMapping(ContextAwarePluginInterface $plugin, $contexts, $mappings = array())
 {
     $mappings += $plugin->getContextMapping();
     // Loop through each of the expected contexts.
     foreach (array_keys($plugin->getContextDefinitions()) as $plugin_context_id) {
         // If this context was given a specific name, use that.
         $context_id = isset($mappings[$plugin_context_id]) ? $mappings[$plugin_context_id] : $plugin_context_id;
         if (!empty($contexts[$context_id])) {
             // This assignment has been used, remove it.
             unset($mappings[$plugin_context_id]);
             $plugin->setContextValue($plugin_context_id, $contexts[$context_id]->getContextValue());
         }
     }
     // If there are any mappings that were not satisfied, throw an exception.
     if (!empty($mappings)) {
         throw new ContextException(String::format('Assigned contexts were not satisfied: @mappings', ['@mappings' => implode(',', array_keys($mappings))]));
     }
 }
Esempio n. 2
0
 /**
  * {@inheritdoc}
  */
 public function applyContextMapping(ContextAwarePluginInterface $plugin, $contexts, $mappings = array())
 {
     /** @var $contexts \Drupal\Core\Plugin\Context\ContextInterface[] */
     $mappings += $plugin->getContextMapping();
     // Loop through each of the expected contexts.
     $missing_value = [];
     foreach ($plugin->getContextDefinitions() as $plugin_context_id => $plugin_context_definition) {
         // If this context was given a specific name, use that.
         $context_id = isset($mappings[$plugin_context_id]) ? $mappings[$plugin_context_id] : $plugin_context_id;
         if (!empty($contexts[$context_id])) {
             // This assignment has been used, remove it.
             unset($mappings[$plugin_context_id]);
             // Plugins have their on context objects, only the value is applied.
             // They also need to know about the cacheability metadata of where that
             // value is coming from, so pass them through to those objects.
             $plugin_context = $plugin->getContext($plugin_context_id);
             if ($plugin_context instanceof ContextInterface && $contexts[$context_id] instanceof CacheableDependencyInterface) {
                 $plugin_context->addCacheableDependency($contexts[$context_id]);
             }
             // Pass the value to the plugin if there is one.
             if ($contexts[$context_id]->hasContextValue()) {
                 $plugin->setContextValue($plugin_context_id, $contexts[$context_id]->getContextData());
             } elseif ($plugin_context_definition->isRequired()) {
                 // Collect required contexts that exist but are missing a value.
                 $missing_value[] = $plugin_context_id;
             }
         } elseif ($plugin_context_definition->isRequired()) {
             // Collect required contexts that are missing.
             $missing_value[] = $plugin_context_id;
         } else {
             // Ignore mappings for optional missing context.
             unset($mappings[$plugin_context_id]);
         }
     }
     // If there are any required contexts without a value, throw an exception.
     if ($missing_value) {
         throw new ContextException(sprintf('Required contexts without a value: %s.', implode(', ', $missing_value)));
     }
     // If there are any mappings that were not satisfied, throw an exception.
     if (!empty($mappings)) {
         throw new ContextException('Assigned contexts were not satisfied: ' . implode(',', array_keys($mappings)));
     }
 }
 /**
  * Process data context on the plugin, usually before it gets executed.
  *
  * @param \Drupal\Core\Plugin\ContextAwarePluginInterface $plugin
  *   The plugin to process the context data on.
  * @param \Drupal\rules\Engine\RulesStateInterface $rules_state
  *   The current Rules execution state with context variables.
  */
 protected function processData(CoreContextAwarePluginInterface $plugin, RulesStateInterface $rules_state)
 {
     if (isset($this->configuration['context_processors'])) {
         foreach ($this->configuration['context_processors'] as $context_name => $processors) {
             $value = $plugin->getContextValue($context_name);
             foreach ($processors as $processor_plugin_id => $configuration) {
                 $data_processor = $this->processorManager->createInstance($processor_plugin_id, $configuration);
                 $value = $data_processor->process($value, $rules_state);
             }
             $plugin->setContextValue($context_name, $value);
         }
     }
 }