You are here

SocialProfilePrivacyHelper.php in Open Social 10.0.x

File

modules/social_features/social_profile/modules/social_profile_privacy/src/Service/SocialProfilePrivacyHelper.php
View source
<?php

namespace Drupal\social_profile_privacy\Service;

use Drupal\Core\Entity\EntityFieldManagerInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Field\FieldConfigInterface;
use Drupal\Core\Session\AccountInterface;

/**
 * Defines the helper service.
 *
 * @package Drupal\social_profile_privacy\Service
 */
class SocialProfilePrivacyHelper implements SocialProfilePrivacyHelperInterface {

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * The entity field manager.
   *
   * @var \Drupal\Core\Entity\EntityFieldManagerInterface
   */
  protected $entityFieldManager;

  /**
   * SocialProfilePrivacyHelper constructor.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   * @param \Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager
   *   The entity field manager.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager, EntityFieldManagerInterface $entity_field_manager) {
    $this->entityTypeManager = $entity_type_manager;
    $this->entityFieldManager = $entity_field_manager;
  }

  /**
   * {@inheritdoc}
   */
  public function getFieldOptions(AccountInterface $account = NULL) {

    /** @var \Drupal\Core\Entity\Display\EntityFormDisplayInterface $display */
    $display = $this->entityTypeManager
      ->getStorage('entity_form_display')
      ->load('profile.profile.default');
    $definitions = $this->entityFieldManager
      ->getFieldDefinitions('profile', 'profile');
    $handler = $this->entityTypeManager
      ->getAccessControlHandler('profile');
    if ($account) {

      /** @var \Drupal\profile\ProfileStorageInterface $storage */
      $storage = $this->entityTypeManager
        ->getStorage('profile');
      $profile = $storage
        ->loadByUser($account, 'profile');
    }
    $options = [];
    foreach (array_keys($display
      ->getComponents()) as $field) {
      $definition = $definitions[$field];
      if ($definition instanceof FieldConfigInterface) {
        $items = $account ? $profile
          ->get($field) : NULL;
        $options[$field] = [
          'label' => $definition
            ->label(),
          'access' => $handler
            ->fieldAccess('edit', $definition, $account, $items),
        ];
      }
    }
    return $options;
  }

}

Classes

Namesort descending Description
SocialProfilePrivacyHelper Defines the helper service.