View source
<?php
namespace Drupal\opigno_learning_path;
use Drupal\Core\Render\Markup;
use Drupal\Core\Session\AccountInterface;
use Drupal\opigno_learning_path\Entity\LPStatus;
use Symfony\Component\HttpFoundation\RequestStack;
use Drupal\group\Entity\Group;
use Drupal\user\Entity\User;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\Core\Link;
use Drupal\Core\Url;
use Drupal\Core\Datetime\DrupalDateTime;
class Progress {
use StringTranslationTrait;
protected $currentUser;
protected $database;
protected $request_stack;
public function __construct(AccountInterface $current_user, $database, RequestStack $request_stack) {
$this->currentUser = $current_user;
$this->database = $database;
$this->requestStack = $request_stack;
}
public function getProgress($group_id, $account_id, $latest_cert_date) {
$activities = opigno_learning_path_get_activities($group_id, $account_id, $latest_cert_date);
$total = count($activities);
$attempted = count(array_filter($activities, function ($activity) {
return $activity['answers'] > 0;
}));
return $total > 0 ? $attempted / $total : 0;
}
public function getProgressRound($group_id, $account_id, $latest_cert_date = '') {
$query = $this->database
->select('opigno_learning_path_achievements', 'a')
->fields('a', [
'score',
])
->condition('a.gid', $group_id)
->condition('a.uid', $account_id)
->condition('a.status', 'completed');
$achievements_data = $query
->execute()
->fetchAssoc();
if ($achievements_data) {
return $achievements_data['score'];
}
if (!$latest_cert_date) {
$group = Group::load($group_id);
$latest_cert_date = LPStatus::getTrainingStartDate($group, $account_id);
}
return round(100 * $this
->getProgress($group_id, $account_id, $latest_cert_date));
}
public function getProgressAjaxContainer($group_id, $account_id, $latest_cert_date = '', $class = 'basic') {
if (!$latest_cert_date) {
$group = Group::load($group_id);
$latest_cert_date = LPStatus::getTrainingStartDate($group, $account_id);
}
if (!$latest_cert_date) {
$latest_cert_date = 0;
}
$preload = $this->requestStack
->getCurrentRequest()->query
->get('preload-progress');
if ($preload) {
return $this
->getProgressBuild($group_id, $account_id, $latest_cert_date, $class);
}
return [
'#theme' => 'opigno_learning_path_progress_ajax_container',
'#group_id' => $group_id,
'#account_id' => $account_id,
'#latest_cert_date' => $latest_cert_date,
'#class' => $class,
'#attached' => [
'library' => [
'opigno_learning_path/progress',
],
],
];
}
public function getProgressBuild($group_id, $account_id, $latest_cert_date, $class) {
if ($latest_cert_date === 0) {
$latest_cert_date = '';
}
$group = Group::load($group_id);
$account = User::load($account_id);
$existing = $group
->getMember($account);
if ($existing === FALSE) {
$class = 'empty';
}
switch ($class) {
case 'group-page':
return $this
->getProgressBuildGroupPage($group_id, $account_id, $latest_cert_date);
case 'module-page':
return $this
->getProgressBuildModulePage($group_id, $account_id, $latest_cert_date);
case 'achievements-page':
return $this
->getProgressBuildAchievementsPage($group_id, $account_id, $latest_cert_date);
case 'full':
return [
'#theme' => 'opigno_learning_path_progress',
'#label' => $this
->t('Some title'),
'#class' => $class,
'#value' => $this
->getProgressRound($group_id, $account_id, $latest_cert_date),
];
case 'mini':
return [
'#theme' => 'opigno_learning_path_progress',
'#class' => $class,
'#value' => $this
->getProgressRound($group_id, $account_id, $latest_cert_date),
];
case 'empty':
return [
'#markup' => '',
];
default:
return $this
->getProgressRound($group_id, $account_id, $latest_cert_date);
}
}
public function getProgressBuildGroupPage($group_id, $account_id, $latest_cert_date) {
$group = Group::load($group_id);
$account = User::load($account_id);
$date_formatter = \Drupal::service('date.formatter');
$expiration_message = '';
$expiration_set = LPStatus::isCertificateExpireSet($group);
if ($expiration_set) {
if ($expiration_message = LPStatus::getCertificateExpireTimestamp($group
->id(), $account_id)) {
$expiration_message = ' ' . $date_formatter
->format($expiration_message, 'custom', 'F d, Y');
}
}
$query = $this->database
->select('opigno_learning_path_achievements', 'a')
->fields('a', [
'score',
'progress',
'time',
'completed',
])
->condition('a.gid', $group_id)
->condition('a.uid', $account_id)
->condition('a.status', 'completed');
$achievements_data = $query
->execute()
->fetchAssoc();
if ($achievements_data) {
$score = $achievements_data['score'];
$completed = $achievements_data['completed'];
if ($achievements_data['completed']) {
$format = 'Y-m-d H:i:s';
$completed = DrupalDateTime::createFromFormat($format, $achievements_data['completed']);
$completed = $completed
->format('F d, Y');
}
$state = $this
->t('Passed');
$progress = $achievements_data['progress'];
$is_passed = TRUE;
}
else {
$score = opigno_learning_path_get_score($group_id, $account_id);
$progress = $this
->getProgressRound($group_id, $account_id, $latest_cert_date);
$is_passed = opigno_learning_path_is_passed($group, $account_id);
$completed = opigno_learning_path_completed_on($group_id, $account_id);
$completed = $completed > 0 ? $date_formatter
->format($completed, 'custom', 'F d, Y') : '';
$state = $is_passed ? $this
->t('Passed') : $this
->t('Failed');
}
if ($is_passed || $progress == 100) {
if ($expiration_set) {
if ($expiration_message) {
$expiration_message = ' - ' . $this
->t('Valid until') . $expiration_message;
}
}
$summary = [
'#type' => 'container',
'#attributes' => [
'class' => [
'lp_progress_summary',
],
],
[
'#type' => 'html_tag',
'#tag' => 'h2',
'#value' => $this
->t('Progress status'),
'#attributes' => [
'class' => [
'sr-only',
],
],
],
[
'#type' => 'html_tag',
'#tag' => 'p',
'#attributes' => [
'class' => $is_passed ? [
'lp_progress_summary_passed',
] : [
'lp_progress_summary_failed',
],
],
'#value' => '',
],
[
'#type' => 'html_tag',
'#tag' => 'h3',
'#attributes' => [
'class' => [
'lp_progress_summary_title',
],
],
'#value' => $state . $expiration_message,
],
[
'#type' => 'html_tag',
'#tag' => 'p',
'#attributes' => [
'class' => [
'lp_progress_summary_score',
],
],
'#value' => $this
->t('Average score : @score%', [
'@score' => $score,
]),
],
!empty($completed) ? [
'#type' => 'html_tag',
'#tag' => 'p',
'#attributes' => [
'class' => [
'lp_progress_summary_date',
],
],
'#value' => $this
->t('Completed on @date', [
'@date' => $completed,
]),
] : [],
];
}
elseif ($expiration_set && LPStatus::isCertificateExpired($group, $account_id)) {
$summary = [
'#type' => 'container',
'#attributes' => [
'class' => [
'lp_progress_summary',
],
],
[
'#type' => 'html_tag',
'#tag' => 'h2',
'#value' => $this
->t('Progress status'),
'#attributes' => [
'class' => [
'sr-only',
],
],
],
[
'#type' => 'html_tag',
'#tag' => 'p',
'#attributes' => [
'class' => [
'lp_progress_summary_expired',
],
],
'#value' => '',
],
[
'#type' => 'html_tag',
'#tag' => 'h3',
'#attributes' => [
'class' => [
'lp_progress_summary_title',
],
],
'#value' => $this
->t('Expired on') . ' ' . $expiration_message,
],
[
'#type' => 'html_tag',
'#tag' => 'p',
'#attributes' => [
'class' => [
'lp_progress_summary_score',
],
],
'#value' => $this
->t('Please start this training again to get new certification'),
],
];
}
$content = [];
$content[] = [
'#type' => 'container',
'#attributes' => [
'class' => [
'col-sm-9',
'mb-3',
],
],
[
'#type' => 'container',
'#attributes' => [
'class' => [
'lp_progress',
],
],
[
'#type' => 'html_tag',
'#tag' => 'p',
'#attributes' => [
'class' => [
'lp_progress_label',
],
],
'#value' => $this
->t('Global Training Progress'),
],
[
'#type' => 'html_tag',
'#tag' => 'p',
'#attributes' => [
'class' => [
'lp_progress_value',
],
],
'#value' => $progress . '%',
],
[
'#type' => 'container',
'#attributes' => [
'class' => [
'lp_progress_bar',
],
],
[
'#type' => 'html_tag',
'#tag' => 'div',
'#attributes' => [
'class' => [
'lp_progress_bar_completed',
],
'style' => "width: {$progress}%",
],
'#value' => '',
],
],
],
isset($summary) ? $summary : [],
'#attached' => [
'library' => [
'opigno_learning_path/training_content',
'core/drupal.dialog.ajax',
],
],
];
$continue_route = 'opigno_learning_path.steps.start';
$edit_route = 'entity.group.edit_form';
$members_route = 'opigno_learning_path.membership.overview';
$route_args = [
'group' => $group
->id(),
];
$continue_url = Url::fromRoute($continue_route, $route_args);
$edit_url = Url::fromRoute($edit_route, $route_args);
$members_url = Url::fromRoute($members_route, $route_args);
$admin_continue_button = Link::fromTextAndUrl(Markup::create('<i class="icon-chevron-right1"></i><span class="sr-only">' . $this
->t('Continue training') . '</span>'), $continue_url)
->toRenderable();
$admin_continue_button['#attributes']['class'][] = 'lp_progress_admin_continue';
$admin_continue_button['#attributes']['class'][] = 'use-ajax';
$admin_continue_button['#attributes']['class'][] = 'lp_progress_control';
$edit_button = Link::fromTextAndUrl(Markup::create('<i class="icon-pencil"></i><span class="sr-only">' . $this
->t('Edit training') . '</span>'), $edit_url)
->toRenderable();
$edit_button['#attributes']['class'][] = 'lp_progress_admin_edit';
$edit_button['#attributes']['class'][] = 'lp_progress_control';
$members_button = Link::fromTextAndUrl(Markup::create('<i class="icon-pencil"></i><span class="sr-only">' . $this
->t('Member of training') . '</span>'), $members_url)
->toRenderable();
$members_button['#attributes']['class'][] = 'lp_progress_admin_edit';
$members_button['#attributes']['class'][] = 'lp_progress_control';
$continue_button_text = opigno_learning_path_started($group, \Drupal::currentUser()) ? $this
->t('Continue Training') : $this
->t('Start');
if (opigno_learning_path_is_passed($group, $account_id)) {
$continue_button_text = $this
->t('Passed');
}
$continue_button = Link::fromTextAndUrl($continue_button_text, $continue_url)
->toRenderable();
$continue_button['#attributes']['class'][] = 'lp_progress_continue';
$continue_button['#attributes']['class'][] = 'use-ajax';
$buttons = [];
if ($group
->access('update', $account)) {
$buttons[] = $admin_continue_button;
$buttons[] = $edit_button;
}
elseif ($group
->access('administer members', $account)) {
$buttons[] = $admin_continue_button;
$buttons[] = $members_button;
}
else {
$buttons[] = $continue_button;
}
$content[] = [
'#type' => 'container',
'#attributes' => [
'class' => [
'col-sm-3',
'mb-3',
'd-flex',
],
],
$buttons,
];
return $content;
}
public function getProgressBuildModulePage($group_id, $account_id, $latest_cert_date) {
$home_link = Link::createFromRoute(Markup::create($this
->t('home') . '<i class="icon-home-2"></i>'), 'entity.group.canonical', [
'group' => $group_id,
], [
'attributes' => [
'class' => [
'w-100',
],
],
])
->toRenderable();
$home_link = render($home_link);
$progress = $this
->getProgressRound($group_id, $account_id);
$build = [
'#theme' => 'block__opigno_module_learning_path_progress_block',
'content' => [
'home_link' => $home_link,
'progress' => $progress,
],
'#configuration' => [
'id' => 'opigno_module_learning_path_progress_block',
'label' => 'Learning path progress',
'provider' => 'opigno_module',
'label_display' => '0',
],
'#plugin_id' => 'opigno_module_learning_path_progress_block',
'#base_plugin_id' => 'opigno_module_learning_path_progress_block',
'#derivative_plugin_id' => NULL,
];
return $build;
}
public function getProgressBuildAchievementsPage($group_id, $account_id, $latest_cert_date) {
$group = Group::load($group_id);
$account = User::load($account_id);
$date_formatter = \Drupal::service('date.formatter');
$member = $group
->getMember($account)
->getGroupContent();
$registration = $member
->getCreatedTime();
$registration = $date_formatter
->format($registration, 'custom', 'F d, Y');
$query = $this->database
->select('opigno_learning_path_achievements', 'a')
->fields('a', [
'score',
'progress',
'time',
'completed',
])
->condition('a.gid', $group_id)
->condition('a.uid', $account_id)
->condition('a.status', 'completed');
$achievements_data = $query
->execute()
->fetchAssoc();
if ($achievements_data) {
if ($achievements_data['completed']) {
$format = 'Y-m-d H:i:s';
$completed = DrupalDateTime::createFromFormat($format, $achievements_data['completed']);
$validation = $completed
->format('F d, Y');
}
if ($achievements_data['score']) {
$score = $achievements_data['score'];
}
if ($achievements_data['progress']) {
$progress = $achievements_data['progress'];
}
if ($achievements_data['time']) {
$time_spent = $date_formatter
->formatInterval($achievements_data['time']);
}
}
else {
$validation = opigno_learning_path_completed_on($group_id, $account_id, TRUE);
$validation = $validation > 0 ? $date_formatter
->format($validation, 'custom', 'F d, Y') : '';
$time_spent = opigno_learning_path_get_time_spent($group_id, $account_id);
$time_spent = $date_formatter
->formatInterval($time_spent);
$score = round(opigno_learning_path_get_score($group_id, $account_id, FALSE, $latest_cert_date));
$progress = $this
->getProgressRound($group_id, $account_id, $latest_cert_date);
}
$expiration_message = '';
$expiration_set = LPStatus::isCertificateExpireSet($group);
$expired = FALSE;
if ($expiration_set) {
if ($expiration_timestamp = LPStatus::getCertificateExpireTimestamp($group
->id(), $account_id)) {
if (!LPStatus::isCertificateExpired($group, $account_id)) {
$expiration_message = $this
->t('Valid until');
}
else {
$expired = TRUE;
$expiration_message = $this
->t('Expired on');
}
$expiration_message = $expiration_message . ' ' . $date_formatter
->format($expiration_timestamp, 'custom', 'F d, Y');
}
}
if ($achievements_data) {
$is_attempted = TRUE;
$is_passed = TRUE;
}
else {
$is_attempted = opigno_learning_path_is_attempted($group, $account_id);
$is_passed = opigno_learning_path_is_passed($group, $account_id);
}
if ($is_passed) {
$state_class = 'lp_summary_step_state_passed';
}
elseif ($progress == 100 && !opigno_learning_path_is_passed($group, $account_id)) {
$state_class = 'lp_summary_step_state_failed';
}
elseif ($is_attempted) {
$state_class = 'lp_summary_step_state_in_progress';
}
elseif ($expired) {
$state_class = 'lp_summary_step_state_expired';
}
else {
$state_class = 'lp_summary_step_state_not_started';
}
$validation_message = !empty($validation) ? t('Validation date: @date<br />', [
'@date' => $validation,
]) : '';
$has_certificate = !$group
->get('field_certificate')
->isEmpty();
return [
'#theme' => 'opigno_learning_path_training_summary',
'#progress' => $progress,
'#score' => $score,
'#group_id' => $group_id,
'#has_certificate' => $has_certificate,
'#is_passed' => $is_passed,
'#state_class' => $state_class,
'#registration_date' => $registration,
'#validation_message' => $validation_message . $expiration_message,
'#time_spend' => $time_spent,
'#certificate_url' => $has_certificate && $is_passed ? Url::fromUri('internal:/certificate/group/' . $group_id . '/pdf') : FALSE,
];
}
}