You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
281 lines
14 KiB
281 lines
14 KiB
<?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['a'] = Security::remove_XSS($_REQUEST['a']);
|
|
$data['s'] = intval($_REQUEST['s']);
|
|
$data['current_user_id'] = intval($_REQUEST['current_user_id']);
|
|
$data['u'] = intval($_REQUEST['u']);
|
|
$data['q'] = intval($_REQUEST['q']);
|
|
$data['e'] = intval($_REQUEST['e']);
|
|
$data['is_connected'] = isset($_REQUEST['is_connected']) ? boolval($_REQUEST['is_connected']) : false;
|
|
$data['profile_completed'] = isset($_REQUEST['profile_completed']) ? floatval($_REQUEST['profile_completed']) : 0;
|
|
// Init result array
|
|
$result = array('error' => true, 'errorMessage' => get_lang('ThereWasAnError'));
|
|
// Check if data is valid or is for start subscription
|
|
$verified = $plugin->checkHash($data, $hash) || $data['a'] == 'subscribe';
|
|
if ($verified) {
|
|
switch($data['a']) {
|
|
case 'check': // Check minimum requirements
|
|
try {
|
|
$res = AdvancedSubscriptionPlugin::create()->isAllowedToDoRequest($data['u'], $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['u'], $data['s'], $data);
|
|
// Check if queue subscription was successful
|
|
if ($res === true) {
|
|
// Prepare data
|
|
// Get session data
|
|
// Assign variables
|
|
$fieldsArray = array('description', 'target', 'mode', 'publication_end_date', 'recommended_number_of_participants');
|
|
$sessionArray = api_get_session_info($data['s']);
|
|
$extraSession = new ExtraFieldValue('session');
|
|
$extraField = new ExtraField('session');
|
|
// Get session fields
|
|
$fieldList = $extraField->get_all(array(
|
|
'field_variable IN ( ?, ?, ?, ?, ?)' => $fieldsArray
|
|
));
|
|
// Index session fields
|
|
foreach ($fieldList as $field) {
|
|
$fields[$field['id']] = $field['field_variable'];
|
|
}
|
|
|
|
$mergedArray = array_merge(array($data['s']), array_keys($fields));
|
|
$sessionFieldValueList = $extraSession->get_all(array('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['field_value'];
|
|
// Assign session field value to session
|
|
$sessionArray[$var] = $val;
|
|
}
|
|
}
|
|
// Get student data
|
|
$studentArray = api_get_user_info($data['u']);
|
|
$studentArray['picture'] = UserManager::get_user_picture_path_by_id($studentArray['user_id'], 'web', false, true);
|
|
$studentArray['picture'] = UserManager::get_picture_user($studentArray['user_id'], $studentArray['picture']['file'], 22, USER_IMAGE_SIZE_MEDIUM);
|
|
// Get superior data if exist
|
|
$superiorId = UserManager::getStudentBoss($data['u']);
|
|
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['a'] = '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, ADV_SUB_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['s'];
|
|
// Send mails
|
|
$result['mailIds'] = $plugin->sendMail($data, ADV_SUB_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
|
|
$message = MessageManager::get_message_by_id($result['mailIds']['render']);
|
|
$message = str_replace(array('<br /><hr>', '<br />', '<br/>'), '', $message['content']);
|
|
echo $message;
|
|
exit;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
// Student boss does exist
|
|
// Get url to be accepted by boss
|
|
$data['e'] = ADV_SUB_QUEUE_STATUS_BOSS_APPROVED;
|
|
$data['student']['acceptUrl'] = $plugin->getQueueUrl($data);
|
|
// Get url to be rejected by boss
|
|
$data['e'] = ADV_SUB_QUEUE_STATUS_BOSS_DISAPPROVED;
|
|
$data['student']['rejectUrl'] = $plugin->getQueueUrl($data);
|
|
// Send mails
|
|
$result['mailIds'] = $plugin->sendMail($data, ADV_SUB_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
|
|
$message = MessageManager::get_message_by_id($result['mailIds']['render']);
|
|
$message = str_replace(array('<br /><hr>', '<br />', '<br/>'), '', $message['content']);
|
|
echo $message;
|
|
exit;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
if (is_string($res)) {
|
|
$result['errorMessage'] = $res;
|
|
} else {
|
|
$result['errorMessage'] = 'User can not be subscribed';
|
|
}
|
|
$result['pass'] = false;
|
|
}
|
|
|
|
break;
|
|
case 'confirm':
|
|
// Check if new status is set
|
|
if (isset($data['e'])) {
|
|
// Update queue status
|
|
$res = $plugin->updateQueueStatus($data, $data['e']);
|
|
if ($res === true) {
|
|
// Prepare data
|
|
// Prepare session data
|
|
$fieldsArray = array('description', 'target', 'mode', 'publication_end_date', 'recommended_number_of_participants');
|
|
$sessionArray = api_get_session_info($data['s']);
|
|
$extraSession = new ExtraFieldValue('session');
|
|
$extraField = new ExtraField('session');
|
|
// Get session fields
|
|
$fieldList = $extraField->get_all(array(
|
|
'field_variable IN ( ?, ?, ?, ?, ?)' => $fieldsArray
|
|
));
|
|
// Index session fields
|
|
foreach ($fieldList as $field) {
|
|
$fields[$field['id']] = $field['field_variable'];
|
|
}
|
|
|
|
$mergedArray = array_merge(array($data['s']), array_keys($fields));
|
|
$sessionFieldValueList = $extraSession->get_all(array('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['field_value'];
|
|
// Assign session field value to session
|
|
$sessionArray[$var] = $val;
|
|
}
|
|
}
|
|
// Prepare student data
|
|
$studentArray = api_get_user_info($data['u']);
|
|
$studentArray['picture'] = UserManager::get_user_picture_path_by_id($studentArray['user_id'], 'web', false, true);
|
|
$studentArray['picture'] = UserManager::get_picture_user($studentArray['user_id'], $studentArray['picture']['file'], 22, USER_IMAGE_SIZE_MEDIUM);
|
|
// Prepare superior data
|
|
$superiorId = UserManager::getStudentBoss($data['u']);
|
|
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['s'];
|
|
// Check if exist and action in data
|
|
if (empty($data['action'])) {
|
|
// set action in data by new status
|
|
switch ($data['e']) {
|
|
case ADV_SUB_QUEUE_STATUS_BOSS_APPROVED:
|
|
$data['action'] = ADV_SUB_ACTION_SUPERIOR_APPROVE;
|
|
break;
|
|
case ADV_SUB_QUEUE_STATUS_BOSS_DISAPPROVED:
|
|
$data['action'] = ADV_SUB_ACTION_SUPERIOR_DISAPPROVE;
|
|
break;
|
|
case ADV_SUB_QUEUE_STATUS_ADMIN_APPROVED:
|
|
$data['action'] = ADV_SUB_ACTION_ADMIN_APPROVE;
|
|
break;
|
|
case ADV_SUB_QUEUE_STATUS_ADMIN_DISAPPROVED:
|
|
$data['action'] = ADV_SUB_ACTION_ADMIN_DISAPPROVE;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Student Session inscription
|
|
if ($data['e'] == ADV_SUB_QUEUE_STATUS_ADMIN_APPROVED) {
|
|
SessionManager::suscribe_users_to_session($data['s'], array($data['u']), null, false);
|
|
}
|
|
|
|
// Send mails
|
|
$result['mailIds'] = $plugin->sendMail($data, $data['action']);
|
|
// 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
|
|
$message = MessageManager::get_message_by_id($result['mailIds']['render']);
|
|
$message = str_replace(array('<br /><hr>', '<br />', '<br/>'), '', $message['content']);
|
|
echo $message;
|
|
exit;
|
|
}
|
|
}
|
|
} else {
|
|
$result['errorMessage'] = 'User queue can not be updated';
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
$result['errorMessage'] = 'Action do not exist!';
|
|
}
|
|
}
|
|
|
|
// Echo result as json
|
|
echo json_encode($result);
|
|
|