class GDPRController in General Data Protection Regulation 3.0.x
Same name in this branch
- 3.0.x modules/gdpr_fields/src/Controller/GDPRController.php \Drupal\gdpr_fields\Controller\GDPRController
- 3.0.x modules/gdpr_tasks/src/Controller/GDPRController.php \Drupal\gdpr_tasks\Controller\GDPRController
Same name and namespace in other branches
- 8.2 modules/gdpr_fields/src/Controller/GDPRController.php \Drupal\gdpr_fields\Controller\GDPRController
- 8 modules/gdpr_fields/src/Controller/GDPRController.php \Drupal\gdpr_fields\Controller\GDPRController
Returns responses for GDPR Field routes.
Hierarchy
- class \Drupal\Core\Controller\ControllerBase implements ContainerInjectionInterface uses LoggerChannelTrait, MessengerTrait, RedirectDestinationTrait, StringTranslationTrait
- class \Drupal\gdpr_fields\Controller\GDPRController
Expanded class hierarchy of GDPRController
File
- modules/
gdpr_fields/ src/ Controller/ GDPRController.php, line 21
Namespace
Drupal\gdpr_fields\ControllerView source
class GDPRController extends ControllerBase {
/**
* Stores the Views data cache object.
*
* @var \Drupal\gdpr_fields\GDPRCollector
*/
protected $collector;
/**
* Current request.
*
* @var \Symfony\Component\HttpFoundation\Request
*/
protected $request;
/**
* Constructs a new GDPRController.
*
* @param \Drupal\gdpr_fields\GDPRCollector $collector
* The GDPR collector service.
* @param \Symfony\Component\HttpFoundation\RequestStack $request_stack
* HTTP Request stack.
*/
public function __construct(GDPRCollector $collector, RequestStack $request_stack) {
$this->collector = $collector;
$this->request = $request_stack
->getCurrentRequest();
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('gdpr_fields.collector'), $container
->get('request_stack'));
}
/**
* Lists all fields with GDPR sensitivity.
*
* @return array
* The Views plugins report page.
*/
public function fieldsList() {
$filters = GdprFieldFilterForm::getFilters($this->request);
$output = [];
$output['filter'] = $this
->formBuilder()
->getForm(GdprFieldFilterForm::class);
$output['#attached']['library'][] = 'gdpr_fields/field-list';
foreach ($this
->entityTypeManager()
->getDefinitions() as $entityTypeId => $definition) {
// Skip non-fieldable/config entities.
if (!$definition
->entityClassImplements(FieldableEntityInterface::class)) {
continue;
}
// If a filter is active, exclude any entities that don't match.
if (!empty($filters['entity_type']) && !in_array($entityTypeId, $filters['entity_type'], FALSE)) {
continue;
}
$bundles = $this->collector
->getBundles($entityTypeId);
$output[$entityTypeId] = [
'#type' => 'details',
'#title' => $definition
->getLabel() . " [{$entityTypeId}]",
'#open' => TRUE,
];
if (count($bundles) > 1) {
$atLeastOneBundleHasFields = FALSE;
foreach ($bundles as $bundle_id => $bundle_info) {
$fieldTable = $this
->buildFieldTable($definition, $bundle_id, $filters);
if ($fieldTable) {
$atLeastOneBundleHasFields = TRUE;
$output[$entityTypeId][$bundle_id] = [
'#type' => 'details',
'#title' => new TranslatableMarkup('%label [%bundle]', [
'%label' => $bundle_info['label'],
'%bundle' => $bundle_id,
]),
'#open' => TRUE,
];
$output[$entityTypeId][$bundle_id]['fields'] = $fieldTable;
}
}
if (!$atLeastOneBundleHasFields) {
unset($output[$entityTypeId]);
}
}
else {
// Don't add another collapsible wrapper around single bundle entities.
$bundle_id = $entityTypeId;
$fieldTable = $this
->buildFieldTable($definition, $bundle_id, $filters);
if ($fieldTable) {
$output[$entityTypeId][$bundle_id]['fields'] = $fieldTable;
}
else {
// If the entity has no fields because they've been filtered out
// don't bother including it.
unset($output[$entityTypeId]);
}
}
}
return $output;
}
/**
* Build a table for entity field list.
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type id.
* @param string $bundle_id
* The entity bundle id.
* @param array $filters
* Filters.
*
* @return array
* Renderable array for field list table.
*/
protected function buildFieldTable(EntityTypeInterface $entity_type, $bundle_id, array $filters) {
$rows = $this->collector
->listFields($entity_type, $bundle_id, $filters);
if (count($rows) === 0) {
return NULL;
}
// Sort rows by field name.
ksort($rows);
$table = [
'#type' => 'table',
'#header' => [
$this
->t('Name'),
$this
->t('Type'),
$this
->t('Right to access'),
$this
->t('Right to be forgotten'),
$this
->t('Notes'),
'',
],
'#sticky' => TRUE,
];
$delta = 0;
foreach ($rows as $row) {
$table[$delta]['title'] = [
'#plain_text' => $row['title'],
];
$type_markup = $row['is_id'] || $row['type'] === 'entity_reference' ? "<strong>{$row['type']}</strong>" : $row['type'];
$table[$delta]['type'] = [
'#markup' => new FormattableMarkup($type_markup, []),
];
$table[$delta]['rta'] = [
'#plain_text' => $row['rta'],
];
$table[$delta]['rtf'] = [
'#plain_text' => $row['rtf'],
];
$table[$delta]['notes'] = [
'#markup' => empty($row['notes']) ? '' : '<span class="notes" data-icon="?"></span><div>' . $row['notes'] . '</div>',
];
$table[$delta]['edit'] = [
'#markup' => !empty($row['edit']) ? $row['edit']
->toString() : '',
];
++$delta;
}
return $table;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ControllerBase:: |
protected | property | The configuration factory. | |
ControllerBase:: |
protected | property | The current user service. | 1 |
ControllerBase:: |
protected | property | The entity form builder. | |
ControllerBase:: |
protected | property | The entity type manager. | |
ControllerBase:: |
protected | property | The form builder. | 2 |
ControllerBase:: |
protected | property | The key-value storage. | 1 |
ControllerBase:: |
protected | property | The language manager. | 1 |
ControllerBase:: |
protected | property | The module handler. | 2 |
ControllerBase:: |
protected | property | The state service. | |
ControllerBase:: |
protected | function | Returns the requested cache bin. | |
ControllerBase:: |
protected | function | Retrieves a configuration object. | |
ControllerBase:: |
private | function | Returns the service container. | |
ControllerBase:: |
protected | function | Returns the current user. | 1 |
ControllerBase:: |
protected | function | Retrieves the entity form builder. | |
ControllerBase:: |
protected | function | Retrieves the entity type manager. | |
ControllerBase:: |
protected | function | Returns the form builder service. | 2 |
ControllerBase:: |
protected | function | Returns a key/value storage collection. | 1 |
ControllerBase:: |
protected | function | Returns the language manager service. | 1 |
ControllerBase:: |
protected | function | Returns the module handler. | 2 |
ControllerBase:: |
protected | function | Returns a redirect response object for the specified route. | |
ControllerBase:: |
protected | function | Returns the state storage service. | |
GDPRController:: |
protected | property | Stores the Views data cache object. | |
GDPRController:: |
protected | property | Current request. | |
GDPRController:: |
protected | function | Build a table for entity field list. | |
GDPRController:: |
public static | function |
Instantiates a new instance of this class. Overrides ControllerBase:: |
|
GDPRController:: |
public | function | Lists all fields with GDPR sensitivity. | |
GDPRController:: |
public | function | Constructs a new GDPRController. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |