class MeetingScoreForm in Opigno Moxtra 3.x
Same name and namespace in other branches
- 8 src/Form/MeetingScoreForm.php \Drupal\opigno_moxtra\Form\MeetingScoreForm
 
Provides a form for scoring a opigno_moxtra_meeting entity.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, RedirectDestinationTrait, StringTranslationTrait
- class \Drupal\opigno_moxtra\Form\MeetingScoreForm
 
 
Expanded class hierarchy of MeetingScoreForm
1 string reference to 'MeetingScoreForm'
File
- src/
Form/ MeetingScoreForm.php, line 17  
Namespace
Drupal\opigno_moxtra\FormView source
class MeetingScoreForm extends FormBase {
  /**
   * Entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;
  /**
   * Moxtra service.
   *
   * @var \Drupal\opigno_moxtra\MoxtraServiceInterface
   */
  protected $moxtraService;
  /**
   * The keyvalue storage.
   *
   * @var \Drupal\Core\KeyValueStore\KeyValueFactory
   */
  protected $keyValueStorage;
  /**
   * Creates a WorkspaceForm object.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager, MoxtraServiceInterface $moxtra_service, KeyValueFactory $key_value) {
    $this->entityTypeManager = $entity_type_manager;
    $this->moxtraService = $moxtra_service;
    $this->keyValueStorage = $key_value
      ->get('opigno_moxtra');
  }
  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_type.manager'), $container
      ->get('opigno_moxtra.moxtra_api'), $container
      ->get('keyvalue'));
  }
  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'opigno_moxtra_score_meeting_form';
  }
  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    /** @var \Drupal\opigno_moxtra\MeetingInterface $entity */
    $entity = $this
      ->getRequest()
      ->get('opigno_moxtra_meeting');
    if (!isset($entity)) {
      throw new NotFoundHttpException();
    }
    $training = $entity
      ->getTraining();
    if (!isset($training)) {
      $message = $this
        ->t('The meeting should has related training to save the presences.');
      $this
        ->messenger()
        ->addError($message);
      return $form;
    }
    $owner_id = $entity
      ->getOwnerId();
    $session_key = $entity
      ->getSessionKey();
    $info = $this->moxtraService
      ->getMeetingInfo($owner_id, $session_key);
    $status = !empty($info['data']) ? $info['data']['status'] : FALSE;
    if ($status !== 'SESSION_ENDED') {
      $message = $this
        ->t('The meeting has to be ended in order to save the presences.');
      $this
        ->messenger()
        ->addError($message);
      return $form;
    }
    $form['submit_scores'] = [
      '#type' => 'table',
      '#title' => $this
        ->t('Participants for @training', [
        '@training' => $training
          ->label(),
      ]),
      '#header' => [
        $this
          ->t('Name'),
        $this
          ->t('Attendance'),
        $this
          ->t('Score'),
      ],
    ];
    $scores =& $form['submit_scores'];
    // Load the meeting members
    // or the related training members, if there is no member restriction.
    $users = $entity
      ->getMembers();
    if (empty($users)) {
      $members = $training
        ->getMembers();
      $users = array_map(function ($member) {
        /** @var \Drupal\group\GroupMembership $member */
        return $member
          ->getUser();
      }, $members);
    }
    uasort($users, function ($user1, $user2) {
      /** @var \Drupal\user\Entity\User $user1 */
      /** @var \Drupal\user\Entity\User $user2 */
      return strcasecmp($user1
        ->getDisplayName(), $user2
        ->getDisplayName());
    });
    // Load the existing meeting results.
    /** @var \Drupal\opigno_moxtra\MeetingResultInterface[] $results */
    $results = $this->entityTypeManager
      ->getStorage('opigno_moxtra_meeting_result')
      ->loadByProperties([
      'meeting' => $entity
        ->id(),
    ]);
    // Reindex results by the user ID.
    $results_by_user = [];
    array_walk($results, function ($result) use (&$results_by_user) {
      /** @var \Drupal\opigno_moxtra\MeetingResultInterface $result */
      $results_by_user[$result
        ->getUserId()] = $result;
    });
    // Get the user IDs of the actual participants of the meeting.
    $participants = !empty($info['data']) ? array_map(function ($participant) {
      $prefix = $this->keyValueStorage
        ->get('prefix');
      $prefix = empty($prefix) ? '' : $prefix;
      $replace_pattern = [
        'm_' . $prefix,
        $prefix . '_',
        $prefix,
        'm_',
      ];
      return empty($participant['unique_id']) ? 1 : str_replace($replace_pattern, '', $participant['unique_id']);
    }, $info['data']['participants']) : [];
    foreach ($users as $user) {
      $id = $user
        ->id();
      if (isset($results_by_user[$id])) {
        // If result for this meeting and user is exists, use it.
        /** @var \Drupal\opigno_moxtra\MeetingResultInterface $result */
        $result = $results_by_user[$id];
        $attendance = $result
          ->getStatus();
        $score = $result
          ->getScore();
      }
      else {
        // Else get the default values.
        if (in_array($id, $participants)) {
          $attendance = 1;
          $score = 100;
        }
        else {
          $attendance = 0;
          $score = 0;
        }
      }
      $scores[$id]['name'] = $user
        ->toLink()
        ->toRenderable();
      $scores[$id]['attendance'] = [
        '#type' => 'select',
        '#options' => [
          0 => $this
            ->t('Absent'),
          1 => $this
            ->t('Attended'),
        ],
        '#default_value' => $attendance,
      ];
      $scores[$id]['score'] = [
        '#type' => 'number',
        '#min' => 0,
        '#max' => 100,
        '#step' => 1,
        '#default_value' => $score,
      ];
    }
    $form['submit'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Save attendances'),
    ];
    return $form;
  }
  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    /** @var \Drupal\opigno_moxtra\MeetingInterface $entity */
    $entity = $this
      ->getRequest()
      ->get('opigno_moxtra_meeting');
    $scores = $form_state
      ->getValue('submit_scores');
    foreach ($scores as $user_id => $values) {
      $status = $values['attendance'];
      $score = $values['score'];
      // Try load existing result.
      /** @var \Drupal\opigno_moxtra\MeetingResultInterface[] $results */
      $results = $this->entityTypeManager
        ->getStorage('opigno_moxtra_meeting_result')
        ->loadByProperties([
        'meeting' => $entity
          ->id(),
        'user_id' => $user_id,
      ]);
      $result = current($results);
      if ($result === FALSE) {
        // Create new result.
        $result = MeetingResult::create();
        $result
          ->setMeeting($entity);
        $result
          ->setUserId($user_id);
      }
      // Update values.
      $result
        ->setStatus($status);
      $result
        ->setScore($score);
      $result
        ->save();
      // Update user achievements.
      $gid = $entity
        ->getTrainingId();
      if (isset($gid)) {
        $step = opigno_learning_path_get_meeting_step($gid, $user_id, $entity);
        opigno_learning_path_save_step_achievements($gid, $user_id, $step, 0);
        opigno_learning_path_save_achievements($gid, $user_id, TRUE);
      }
    }
  }
}Members
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            DependencySerializationTrait:: | 
                  protected | property | ||
| 
            DependencySerializationTrait:: | 
                  protected | property | ||
| 
            DependencySerializationTrait:: | 
                  public | function | 2 | |
| 
            DependencySerializationTrait:: | 
                  public | function | 2 | |
| 
            FormBase:: | 
                  protected | property | The config factory. | 3 | 
| 
            FormBase:: | 
                  protected | property | The request stack. | 1 | 
| 
            FormBase:: | 
                  protected | property | The route match. | |
| 
            FormBase:: | 
                  protected | function | Retrieves a configuration object. | |
| 
            FormBase:: | 
                  protected | function | Gets the config factory for this form. | 3 | 
| 
            FormBase:: | 
                  private | function | Returns the service container. | |
| 
            FormBase:: | 
                  protected | function | Gets the current user. | |
| 
            FormBase:: | 
                  protected | function | Gets the request object. | |
| 
            FormBase:: | 
                  protected | function | Gets the route match. | |
| 
            FormBase:: | 
                  protected | function | Gets the logger for a specific channel. | |
| 
            FormBase:: | 
                  protected | function | Returns a redirect response object for the specified route. | |
| 
            FormBase:: | 
                  public | function | Resets the configuration factory. | |
| 
            FormBase:: | 
                  public | function | Sets the config factory for this form. | |
| 
            FormBase:: | 
                  public | function | Sets the request stack object to use. | |
| 
            FormBase:: | 
                  public | function | 
            Form validation handler. Overrides FormInterface:: | 
                  72 | 
| 
            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. | |
| 
            MeetingScoreForm:: | 
                  protected | property | Entity type manager. | |
| 
            MeetingScoreForm:: | 
                  protected | property | The keyvalue storage. | |
| 
            MeetingScoreForm:: | 
                  protected | property | Moxtra service. | |
| 
            MeetingScoreForm:: | 
                  public | function | 
            Form constructor. Overrides FormInterface:: | 
                  |
| 
            MeetingScoreForm:: | 
                  public static | function | 
            Instantiates a new instance of this class. Overrides FormBase:: | 
                  |
| 
            MeetingScoreForm:: | 
                  public | function | 
            Returns a unique string identifying the form. Overrides FormInterface:: | 
                  |
| 
            MeetingScoreForm:: | 
                  public | function | 
            Form submission handler. Overrides FormInterface:: | 
                  |
| 
            MeetingScoreForm:: | 
                  public | function | Creates a WorkspaceForm object. | |
| 
            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. |