123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Script to receipt request to subscribe and confirmation action to queue.
- *
- * @author Daniel Alejandro Barreto Alva <daniel.barreto@beeznest.com>
- *
- * @package chamilo.plugin.advanced_subscription
- */
- /**
- * Init.
- */
- require_once __DIR__.'/../config.php';
- $plugin = AdvancedSubscriptionPlugin::create();
- // Get validation hash
- $hash = Security::remove_XSS($_REQUEST['v']);
- // Get data from request (GET or POST)
- $data['action'] = Security::remove_XSS($_REQUEST['a']);
- $data['sessionId'] = intval($_REQUEST['s']);
- $data['currentUserId'] = intval($_REQUEST['current_user_id']);
- $data['studentUserId'] = intval($_REQUEST['u']);
- $data['queueId'] = intval($_REQUEST['q']);
- $data['newStatus'] = intval($_REQUEST['e']);
- // Student always is connected
- // $data['is_connected'] = isset($_REQUEST['is_connected']) ? boolval($_REQUEST['is_connected']) : false;
- $data['is_connected'] = true;
- $data['profile_completed'] = isset($_REQUEST['profile_completed']) ? floatval($_REQUEST['profile_completed']) : 0;
- $data['accept_terms'] = isset($_REQUEST['accept_terms']) ? intval($_REQUEST['accept_terms']) : 0;
- $data['courseId'] = isset($_REQUEST['c']) ? intval($_REQUEST['c']) : 0;
- // Init result array
- $result = ['error' => true, 'errorMessage' => get_lang('ThereWasAnError')];
- $showJSON = true;
- // Check if data is valid or is for start subscription
- $verified = $plugin->checkHash($data, $hash) || $data['action'] == 'subscribe';
- if ($verified) {
- switch ($data['action']) {
- case 'check': // Check minimum requirements
- try {
- $res = AdvancedSubscriptionPlugin::create()->isAllowedToDoRequest($data['studentUserId'], $data);
- if ($res) {
- $result['error'] = false;
- $result['errorMessage'] = 'No error';
- $result['pass'] = true;
- } else {
- $result['errorMessage'] = 'User can not be subscribed';
- $result['pass'] = false;
- }
- } catch (\Exception $e) {
- $result['errorMessage'] = $e->getMessage();
- }
- break;
- case 'subscribe': // Subscription
- // Start subscription to queue
- $res = AdvancedSubscriptionPlugin::create()->startSubscription(
- $data['studentUserId'],
- $data['sessionId'],
- $data
- );
- // Check if queue subscription was successful
- if ($res === true) {
- $legalEnabled = api_get_plugin_setting('courselegal', 'tool_enable');
- if ($legalEnabled) {
- // Save terms confirmation
- CourseLegalPlugin::create()->saveUserLegal(
- $data['studentUserId'],
- $data['courseId'],
- $data['sessionId'],
- false
- );
- }
- // Prepare data
- // Get session data
- // Assign variables
- $fieldsArray = [
- 'description',
- 'target',
- 'mode',
- 'publication_end_date',
- 'recommended_number_of_participants',
- ];
- $sessionArray = api_get_session_info($data['sessionId']);
- $extraSession = new ExtraFieldValue('session');
- $extraField = new ExtraField('session');
- // Get session fields
- $fieldList = $extraField->get_all([
- 'variable IN ( ?, ?, ?, ?, ?)' => $fieldsArray,
- ]);
- // Index session fields
- foreach ($fieldList as $field) {
- $fields[$field['id']] = $field['variable'];
- }
- $mergedArray = array_merge([$data['sessionId']], array_keys($fields));
- $sessionFieldValueList = $extraSession->get_all(
- [
- 'item_id = ? field_id IN ( ?, ?, ?, ?, ?, ?, ? )' => $mergedArray,
- ]
- );
- foreach ($sessionFieldValueList as $sessionFieldValue) {
- // Check if session field value is set in session field list
- if (isset($fields[$sessionFieldValue['field_id']])) {
- $var = $fields[$sessionFieldValue['field_id']];
- $val = $sessionFieldValue['value'];
- // Assign session field value to session
- $sessionArray[$var] = $val;
- }
- }
- // Get student data
- $studentArray = api_get_user_info($data['studentUserId']);
- $studentArray['picture'] = $studentArray['avatar'];
- // Get superior data if exist
- $superiorId = UserManager::getFirstStudentBoss($data['studentUserId']);
- if (!empty($superiorId)) {
- $superiorArray = api_get_user_info($superiorId);
- } else {
- $superiorArray = null;
- }
- // Get admin data
- $adminsArray = UserManager::get_all_administrators();
- $isWesternNameOrder = api_is_western_name_order();
- foreach ($adminsArray as &$admin) {
- $admin['complete_name'] = $isWesternNameOrder ?
- $admin['firstname'].', '.$admin['lastname'] : $admin['lastname'].', '.$admin['firstname']
- ;
- }
- unset($admin);
- // Set data
- $data['action'] = 'confirm';
- $data['student'] = $studentArray;
- $data['superior'] = $superiorArray;
- $data['admins'] = $adminsArray;
- $data['session'] = $sessionArray;
- $data['signature'] = api_get_setting('Institution');
- // Check if student boss exists
- if (empty($superiorId)) {
- // Student boss does not exist
- // Update status to accepted by boss
- $res = $plugin->updateQueueStatus($data, ADVANCED_SUBSCRIPTION_QUEUE_STATUS_BOSS_APPROVED);
- if (!empty($res)) {
- // Prepare admin url
- $data['admin_view_url'] = api_get_path(WEB_PLUGIN_PATH).
- 'advanced_subscription/src/admin_view.php?s='.$data['sessionId'];
- // Send mails
- $result['mailIds'] = $plugin->sendMail(
- $data,
- ADVANCED_SUBSCRIPTION_ACTION_STUDENT_REQUEST_NO_BOSS
- );
- // Check if mails were sent
- if (!empty($result['mailIds'])) {
- $result['error'] = false;
- $result['errorMessage'] = 'No error';
- $result['pass'] = true;
- // Check if exist an email to render
- if (isset($result['mailIds']['render'])) {
- // Render mail
- $url = $plugin->getRenderMailUrl(['queueId' => $result['mailIds']['render']]);
- header('Location: '.$url);
- exit;
- }
- }
- }
- } else {
- // Student boss does exist
- // Get url to be accepted by boss
- $data['newStatus'] = ADVANCED_SUBSCRIPTION_QUEUE_STATUS_BOSS_APPROVED;
- $data['student']['acceptUrl'] = $plugin->getQueueUrl($data);
- // Get url to be rejected by boss
- $data['newStatus'] = ADVANCED_SUBSCRIPTION_QUEUE_STATUS_BOSS_DISAPPROVED;
- $data['student']['rejectUrl'] = $plugin->getQueueUrl($data);
- // Send mails
- $result['mailIds'] = $plugin->sendMail($data, ADVANCED_SUBSCRIPTION_ACTION_STUDENT_REQUEST);
- // Check if mails were sent
- if (!empty($result['mailIds'])) {
- $result['error'] = false;
- $result['errorMessage'] = 'No error';
- $result['pass'] = true;
- // Check if exist an email to render
- if (isset($result['mailIds']['render'])) {
- // Render mail
- $url = $plugin->getRenderMailUrl(['queueId' => $result['mailIds']['render']]);
- header('Location: '.$url);
- exit;
- }
- }
- }
- } else {
- $lastMessageId = $plugin->getLastMessageId($data['studentUserId'], $data['sessionId']);
- if ($lastMessageId !== false) {
- // Render mail
- $url = $plugin->getRenderMailUrl(['queueId' => $lastMessageId]);
- header('Location: '.$url);
- exit;
- } else {
- if (is_string($res)) {
- $result['errorMessage'] = $res;
- } else {
- $result['errorMessage'] = 'User can not be subscribed';
- }
- $result['pass'] = false;
- $url = $plugin->getTermsUrl($data, ADVANCED_SUBSCRIPTION_TERMS_MODE_FINAL);
- header('Location: '.$url);
- exit;
- }
- }
- break;
- case 'confirm':
- // Check if new status is set
- if (isset($data['newStatus'])) {
- if ($data['newStatus'] === ADVANCED_SUBSCRIPTION_QUEUE_STATUS_ADMIN_APPROVED) {
- try {
- $isAllowToDoRequest = $plugin->isAllowedToDoRequest($data['studentUserId'], $data);
- } catch (Exception $ex) {
- $messageTemplate = new Template(null, false, false);
- $messageTemplate->assign(
- 'content',
- Display::return_message($ex->getMessage(), 'error', false)
- );
- $messageTemplate->display_no_layout_template();
- $showJSON = false;
- break;
- }
- }
- // Update queue status
- $res = $plugin->updateQueueStatus($data, $data['newStatus']);
- if ($res === true) {
- // Prepare data
- // Prepare session data
- $fieldsArray = [
- 'description',
- 'target',
- 'mode',
- 'publication_end_date',
- 'recommended_number_of_participants',
- ];
- $sessionArray = api_get_session_info($data['sessionId']);
- $extraSession = new ExtraFieldValue('session');
- $extraField = new ExtraField('session');
- // Get session fields
- $fieldList = $extraField->get_all([
- 'variable IN ( ?, ?, ?, ?, ?)' => $fieldsArray,
- ]);
- // Index session fields
- foreach ($fieldList as $field) {
- $fields[$field['id']] = $field['variable'];
- }
- $mergedArray = array_merge([$data['sessionId']], array_keys($fields));
- $sessionFieldValueList = $extraSession->get_all(
- ['session_id = ? field_id IN ( ?, ?, ?, ?, ?, ?, ? )' => $mergedArray]
- );
- foreach ($sessionFieldValueList as $sessionFieldValue) {
- // Check if session field value is set in session field list
- if (isset($fields[$sessionFieldValue['field_id']])) {
- $var = $fields[$sessionFieldValue['field_id']];
- $val = $sessionFieldValue['value'];
- // Assign session field value to session
- $sessionArray[$var] = $val;
- }
- }
- // Prepare student data
- $studentArray = api_get_user_info($data['studentUserId']);
- $studentArray['picture'] = $studentArray['avatar'];
- // Prepare superior data
- $superiorId = UserManager::getFirstStudentBoss($data['studentUserId']);
- if (!empty($superiorId)) {
- $superiorArray = api_get_user_info($superiorId);
- } else {
- $superiorArray = null;
- }
- // Prepare admin data
- $adminsArray = UserManager::get_all_administrators();
- $isWesternNameOrder = api_is_western_name_order();
- foreach ($adminsArray as &$admin) {
- $admin['complete_name'] = $isWesternNameOrder ?
- $admin['firstname'].', '.$admin['lastname'] : $admin['lastname'].', '.$admin['firstname']
- ;
- }
- unset($admin);
- // Set data
- $data['student'] = $studentArray;
- $data['superior'] = $superiorArray;
- $data['admins'] = $adminsArray;
- $data['session'] = $sessionArray;
- $data['signature'] = api_get_setting('Institution');
- $data['admin_view_url'] = api_get_path(WEB_PLUGIN_PATH)
- .'advanced_subscription/src/admin_view.php?s='.$data['sessionId'];
- // Check if exist and action in data
- if (empty($data['mailAction'])) {
- // set action in data by new status
- switch ($data['newStatus']) {
- case ADVANCED_SUBSCRIPTION_QUEUE_STATUS_BOSS_APPROVED:
- $data['mailAction'] = ADVANCED_SUBSCRIPTION_ACTION_SUPERIOR_APPROVE;
- break;
- case ADVANCED_SUBSCRIPTION_QUEUE_STATUS_BOSS_DISAPPROVED:
- $data['mailAction'] = ADVANCED_SUBSCRIPTION_ACTION_SUPERIOR_DISAPPROVE;
- break;
- case ADVANCED_SUBSCRIPTION_QUEUE_STATUS_ADMIN_APPROVED:
- $data['mailAction'] = ADVANCED_SUBSCRIPTION_ACTION_ADMIN_APPROVE;
- break;
- case ADVANCED_SUBSCRIPTION_QUEUE_STATUS_ADMIN_DISAPPROVED:
- $data['mailAction'] = ADVANCED_SUBSCRIPTION_ACTION_ADMIN_DISAPPROVE;
- break;
- default:
- break;
- }
- }
- // Student Session inscription
- if ($data['newStatus'] == ADVANCED_SUBSCRIPTION_QUEUE_STATUS_ADMIN_APPROVED) {
- SessionManager::subscribeUsersToSession(
- $data['sessionId'],
- [$data['studentUserId']],
- null,
- false
- );
- }
- // Send mails
- $result['mailIds'] = $plugin->sendMail($data, $data['mailAction']);
- // Check if mails were sent
- if (!empty($result['mailIds'])) {
- $result['error'] = false;
- $result['errorMessage'] = 'User has been processed';
- // Check if exist mail to render
- if (isset($result['mailIds']['render'])) {
- // Render mail
- $url = $plugin->getRenderMailUrl(['queueId' => $result['mailIds']['render']]);
- header('Location: '.$url);
- exit;
- }
- }
- } else {
- $result['errorMessage'] = 'User queue can not be updated';
- }
- }
- break;
- default:
- $result['errorMessage'] = 'This action does not exist!';
- }
- }
- if ($showJSON) {
- // Echo result as json
- echo json_encode($result);
- }
|