Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 5 |
CRAP | |
0.00% |
0 / 19 |
BlockedIP | |
0.00% |
0 / 1 |
|
0.00% |
0 / 5 |
30 | |
0.00% |
0 / 19 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
create | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 8 |
|||
getIds | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
fields | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
|||
import | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\ban\Plugin\migrate\destination\BlockedIP. | |
*/ | |
namespace Drupal\ban\Plugin\migrate\destination; | |
use Drupal\ban\BanIpManagerInterface; | |
use Drupal\Core\Plugin\ContainerFactoryPluginInterface; | |
use Drupal\migrate\Entity\MigrationInterface; | |
use Drupal\migrate\Plugin\migrate\destination\DestinationBase; | |
use Drupal\migrate\Row; | |
use Symfony\Component\DependencyInjection\ContainerInterface; | |
/** | |
* Destination for blocked IP addresses. | |
* | |
* @MigrateDestination( | |
* id = "blocked_ip" | |
* ) | |
*/ | |
class BlockedIP extends DestinationBase implements ContainerFactoryPluginInterface { | |
/** | |
* The IP ban manager. | |
* | |
* @var \Drupal\ban\BanIpManagerInterface | |
*/ | |
protected $banManager; | |
/** | |
* Constructs a BlockedIP object. | |
* | |
* @param array $configuration | |
* Plugin configuration. | |
* @param string $plugin_id | |
* The plugin ID. | |
* @param mixed $plugin_definition | |
* The plugin definiiton. | |
* @param \Drupal\migrate\Entity\MigrationInterface $migration | |
* The current migration. | |
* @param \Drupal\ban\BanIpManagerInterface $ban_manager | |
* The IP manager service. | |
*/ | |
public function __construct(array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration, BanIpManagerInterface $ban_manager) { | |
parent::__construct($configuration, $plugin_id, $plugin_definition, $migration); | |
$this->banManager = $ban_manager; | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition, MigrationInterface $migration = NULL) { | |
return new static( | |
$configuration, | |
$plugin_id, | |
$plugin_definition, | |
$migration, | |
$container->get('ban.ip_manager') | |
); | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function getIds() { | |
return ['ip' => ['type' => 'string']]; | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function fields(MigrationInterface $migration = NULL) { | |
return [ | |
'ip' => $this->t('The blocked IP address.'), | |
]; | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function import(Row $row, array $old_destination_id_values = array()) { | |
$this->banManager->banIp($row->getDestinationProperty('ip')); | |
} | |
} |