class GDPRController in General Data Protection Regulation 8
Same name in this branch
- 8 modules/gdpr_fields/src/Controller/GDPRController.php \Drupal\gdpr_fields\Controller\GDPRController
- 8 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
- 3.0.x 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, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\gdpr_fields\Controller\GDPRController
Expanded class hierarchy of GDPRController
File
- modules/
gdpr_fields/ src/ Controller/ GDPRController.php, line 18
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('Drupal\\gdpr_fields\\Form\\GdprFieldFilterForm');
$output['#attached']['library'][] = 'gdpr_fields/field-list';
foreach ($this
->entityTypeManager()
->getDefinitions() as $entity_type_id => $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($entity_type_id, $filters['entity_type'])) {
continue;
}
$bundles = $this->collector
->getBundles($entity_type_id);
$output[$entity_type_id] = [
'#type' => 'details',
'#title' => $definition
->getLabel() . " [{$entity_type_id}]",
'#open' => TRUE,
];
if (count($bundles) > 1) {
$at_least_one_bundle_has_fields = FALSE;
foreach ($bundles as $bundle_id => $bundle_info) {
$field_table = $this
->buildFieldTable($definition, $bundle_id, $filters);
if ($field_table) {
$at_least_one_bundle_has_fields = TRUE;
$output[$entity_type_id][$bundle_id] = [
'#type' => 'details',
'#title' => new TranslatableMarkup('%label [%bundle]', [
'%label' => $bundle_info['label'],
'%bundle' => $bundle_id,
]),
'#open' => TRUE,
];
$output[$entity_type_id][$bundle_id]['fields'] = $field_table;
}
}
if (!$at_least_one_bundle_has_fields) {
unset($output[$entity_type_id]);
}
}
else {
// Don't add another collapsible wrapper around single bundle entities.
$bundle_id = $entity_type_id;
$field_table = $this
->buildFieldTable($definition, $bundle_id, $filters);
if ($field_table) {
$output[$entity_type_id][$bundle_id]['fields'] = $field_table;
}
else {
// If the entity has no fields because they've been filtered out
// don't bother including it.
unset($output[$entity_type_id]);
}
}
}
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,
];
$i = 0;
foreach ($rows as $row) {
$table[$i]['title'] = [
'#plain_text' => $row['title'],
];
$type_markup = $row['is_id'] || $row['type'] == 'entity_reference' ? "<strong>{$row['type']}</strong>" : $row['type'];
$table[$i]['type'] = [
'#markup' => new FormattableMarkup($type_markup, []),
];
$table[$i]['rta'] = [
'#plain_text' => $row['rta'],
];
$table[$i]['rtf'] = [
'#plain_text' => $row['rtf'],
];
$table[$i]['notes'] = [
'#markup' => empty($row['notes']) ? '' : '<span class="notes" data-icon="?"></span><div>' . $row['notes'] . '</div>',
];
$table[$i]['edit'] = [
'#markup' => !empty($row['edit']) ? $row['edit']
->toString() : '',
];
$i++;
}
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 manager. | |
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 manager service. | |
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. Overrides UrlGeneratorTrait:: |
|
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. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
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. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
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. | 1 |
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. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. |