class TaskManager in General Data Protection Regulation 3.0.x
Same name and namespace in other branches
- 8.2 modules/gdpr_tasks/src/TaskManager.php \Drupal\gdpr_tasks\TaskManager
- 8 modules/gdpr_tasks/src/TaskManager.php \Drupal\gdpr_tasks\TaskManager
Defines a helper class for stuff related to views data.
Hierarchy
- class \Drupal\gdpr_tasks\TaskManager
Expanded class hierarchy of TaskManager
2 files declare their use of TaskManager
- GDPRController.php in modules/
gdpr_tasks/ src/ Controller/ GDPRController.php - TaskActionsForm.php in modules/
gdpr_tasks/ src/ Form/ TaskActionsForm.php
1 string reference to 'TaskManager'
- gdpr_tasks.services.yml in modules/
gdpr_tasks/ gdpr_tasks.services.yml - modules/gdpr_tasks/gdpr_tasks.services.yml
1 service uses TaskManager
- gdpr_tasks.manager in modules/
gdpr_tasks/ gdpr_tasks.services.yml - Drupal\gdpr_tasks\TaskManager
File
- modules/
gdpr_tasks/ src/ TaskManager.php, line 13
Namespace
Drupal\gdpr_tasksView source
class TaskManager {
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManager
*/
protected $entityTypeManager;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityStorageInterface
*/
protected $taskStorage;
/**
* The current user service.
*
* @var \Drupal\Core\Session\AccountProxy
*/
protected $currentUser;
/**
* Filesystem.
*
* @var \Drupal\Core\File\FileSystemInterface
*/
protected $fileSystem;
/**
* Constructs a TaskManager object.
*
* @param \Drupal\Core\Entity\EntityTypeManager $entityTypeManager
* The entity type manager.
* @param \Drupal\Core\Session\AccountProxy $currentUser
* The current user service.
* @param \Drupal\Core\File\FileSystemInterface $fileSystem
* Filesystem.
*
* @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
* @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
*/
public function __construct(EntityTypeManager $entityTypeManager, AccountProxy $currentUser, FileSystemInterface $fileSystem) {
$this->entityTypeManager = $entityTypeManager;
$this->taskStorage = $entityTypeManager
->getStorage('gdpr_task');
$this->currentUser = $currentUser;
$this->fileSystem = $fileSystem;
}
/**
* Fetch tasks for a certain user.
*
* @param null|\Drupal\Core\Session\AccountInterface $account
* The user account to get tasks for. Defaults to current user.
* @param null|string $type
* Optionally filter by task type.
*
* @return array|\Drupal\gdpr_tasks\Entity\TaskInterface[]
* Array of fully loaded task entities.
*/
public function getUserTasks($account = NULL, $type = NULL) {
$tasks = [];
if (!$account) {
$account = $this->currentUser
->getAccount();
}
$query = $this->taskStorage
->getQuery();
$query
->condition('user_id', $account
->id(), '=');
if ($type) {
$query
->condition('type', $type, '=');
}
if (!empty($ids = $query
->execute())) {
$tasks = $this->taskStorage
->loadMultiple($ids);
}
return $tasks;
}
/**
* Writes array data to a csv file.
*
* @param array $data
* The data to be stored in csv.
* @param string $dirname
* The local path or stream wrapper for destination directory.
*
* @return string
* The uri path of the created file.
*/
public function toCsv(array $data, $dirname = 'private://') {
// Prepare destination.
$this->fileSystem
->prepareDirectory($dirname, FileSystemInterface::CREATE_DIRECTORY);
// Generate a file entity.
$random = new Random();
$destination = $dirname . '/' . $random
->name(10, TRUE) . '.csv';
// Update csv with actual data.
$fp = fopen($destination, 'wb');
foreach ($data as $line) {
fputcsv($fp, $line);
}
fclose($fp);
return $destination;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TaskManager:: |
protected | property | The current user service. | |
TaskManager:: |
protected | property | The entity type manager. | |
TaskManager:: |
protected | property | Filesystem. | |
TaskManager:: |
protected | property | The entity type manager. | |
TaskManager:: |
public | function | Fetch tasks for a certain user. | |
TaskManager:: |
public | function | Writes array data to a csv file. | |
TaskManager:: |
public | function | Constructs a TaskManager object. |