|
|
|
@ -10,7 +10,7 @@ use Chamilo\UserBundle\Entity\User; |
|
|
|
|
require_once '../inc/global.inc.php'; |
|
|
|
|
$libpath = api_get_path(LIBRARY_PATH); |
|
|
|
|
|
|
|
|
|
$debug = false; |
|
|
|
|
$debug = true; |
|
|
|
|
|
|
|
|
|
define('WS_ERROR_SECRET_KEY', 1); |
|
|
|
|
define('WS_ERROR_NOT_FOUND_RESULT', 2); |
|
|
|
@ -133,7 +133,8 @@ $server->wsdl->addComplexType( |
|
|
|
|
'', |
|
|
|
|
'SOAP-ENC:Array', |
|
|
|
|
array(), |
|
|
|
|
array(array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType' => 'tns:extras[]')),'tns:extras' |
|
|
|
|
array(array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType' => 'tns:extras[]')), |
|
|
|
|
'tns:extras' |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
@ -165,7 +166,8 @@ $server->wsdl->addComplexType( |
|
|
|
|
'', |
|
|
|
|
'SOAP-ENC:Array', |
|
|
|
|
array(), |
|
|
|
|
array(array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType' => 'tns:usersParams[]')),'tns:usersParams' |
|
|
|
|
array(array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType' => 'tns:usersParams[]')), |
|
|
|
|
'tns:usersParams' |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
@ -973,22 +975,85 @@ function WSCreateUsersPasswordCrypted($params) |
|
|
|
|
// |
|
|
|
|
// Prepare Input params for Subscribe Teacher to SC |
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'SubscribeTeacherToSessionCourse', |
|
|
|
|
'TeacherToSessionCourse', |
|
|
|
|
'complexType', |
|
|
|
|
'struct', |
|
|
|
|
'all', |
|
|
|
|
'', |
|
|
|
|
array( |
|
|
|
|
'userId' => array('name' => 'course', 'type' => 'xsd:string'), // Chamilo user Id |
|
|
|
|
'sessionId' => array('name' => 'user_id', 'type' => 'xsd:string'), // Current Session course ID |
|
|
|
|
'courseId' =>array('name' => 'courseId', 'type' => 'xsd:string'), // Course Real Id |
|
|
|
|
'secret_key' => array('name' => 'secret_key', 'type' => 'xsd:string') |
|
|
|
|
'user_id' => array('name' => 'course', 'type' => 'xsd:string'), // Chamilo user Id |
|
|
|
|
'session_id' => array('name' => 'user_id', 'type' => 'xsd:string'), // Current Session course ID |
|
|
|
|
'course_id' =>array('name' => 'courseId', 'type' => 'xsd:string'), // Course Real Id |
|
|
|
|
'secret_key' => array('name' => 'secret_key', 'type' => 'xsd:string'), |
|
|
|
|
|
|
|
|
|
// optional |
|
|
|
|
'original_user_id_name' => array('name' => 'original_user_id_name', 'type' => 'xsd:string'), |
|
|
|
|
'original_user_id_value' => array('name' => 'original_user_id_value', 'type' => 'xsd:string'), |
|
|
|
|
'original_course_id_name' => array('name' => 'original_course_id_name', 'type' => 'xsd:string'), |
|
|
|
|
'original_course_id_value' => array('name' => 'original_course_id_value', 'type' => 'xsd:string'), |
|
|
|
|
'original_session_id_name' => array('name' => 'original_session_id_name', 'type' => 'xsd:string'), |
|
|
|
|
'original_session_id_value' => array('name' => 'original_session_id_value', 'type' => 'xsd:string') |
|
|
|
|
) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
function parseCourseSessionUserParams($params) |
|
|
|
|
{ |
|
|
|
|
global $debug; |
|
|
|
|
|
|
|
|
|
$userId = isset($params['user_id']) ? $params['user_id'] : 0; // Chamilo user Id |
|
|
|
|
$sessionId = isset($params['session_id']) ? $params['session_id'] : 0; // Current Session course ID |
|
|
|
|
$courseId = isset($params['course_id']) ? $params['course_id'] : 0; // Course Real Id |
|
|
|
|
|
|
|
|
|
if (empty($userId) && empty($sessionId) && empty($courseId)) { |
|
|
|
|
// try original values |
|
|
|
|
|
|
|
|
|
if ($debug) error_log('try original values'); |
|
|
|
|
|
|
|
|
|
$userIdName = isset($params['original_user_id_name']) ? $params['original_user_id_name'] : 0; |
|
|
|
|
$userIdValue = isset($params['original_user_id_value']) ? $params['original_user_id_value'] : 0; |
|
|
|
|
$courseIdName = isset($params['original_course_id_name']) ? $params['original_course_id_name'] : 0; |
|
|
|
|
$courseIdValue = isset($params['original_course_id_value']) ? $params['original_course_id_value'] : 0; |
|
|
|
|
$sessionIdName = isset($params['original_session_id_name']) ? $params['original_session_id_name'] : 0; |
|
|
|
|
$sessionIdValue = isset($params['original_session_id_value']) ? $params['original_session_id_value'] : 0; |
|
|
|
|
|
|
|
|
|
// Check if exits x_user_id into user_field_values table. |
|
|
|
|
$userId = UserManager::get_user_id_from_original_id( |
|
|
|
|
$userIdValue, |
|
|
|
|
$userIdName |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// Check whether exits $x_course_code into user_field_values table. |
|
|
|
|
$courseInfo = CourseManager::getCourseInfoFromOriginalId( |
|
|
|
|
$courseIdValue, |
|
|
|
|
$courseIdName |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$courseId = 0; |
|
|
|
|
if ($courseInfo) { |
|
|
|
|
$courseId = $courseInfo['real_id']; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sessionId = SessionManager::getSessionIdFromOriginalId( |
|
|
|
|
$sessionIdValue, |
|
|
|
|
$sessionIdName |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ($debug) error_log('$userId found: '. $userId); |
|
|
|
|
if ($debug) error_log('$courseId found: '. $courseId); |
|
|
|
|
if ($debug) error_log('$sessionId found: '. $sessionId); |
|
|
|
|
|
|
|
|
|
return [ |
|
|
|
|
'user_id' => $userId, |
|
|
|
|
'course_id' => $courseId, |
|
|
|
|
'session_id' => $sessionId, |
|
|
|
|
]; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$server->register( |
|
|
|
|
'WSSubscribeTeacherToSessionCourse', |
|
|
|
|
array('SubscribeTeacherToSessionCourse' => 'tns:SubscribeTeacherToSessionCourse'), |
|
|
|
|
array('SubscribeTeacherToSessionCourse' => 'tns:TeacherToSessionCourse'), |
|
|
|
|
array('return' => 'xsd:string'), |
|
|
|
|
'urn:WSRegistration', |
|
|
|
|
'urn:WSRegistration#WSSubscribeTeacherToSessionCourse', |
|
|
|
@ -997,32 +1062,6 @@ $server->register( |
|
|
|
|
'This webservice subscribe a teacher to a session course' |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// Prepare Input params for Unsubscribe Teacher from SC |
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'UnsubscribeTeacherFromSessionCourse', |
|
|
|
|
'complexType', |
|
|
|
|
'struct', |
|
|
|
|
'all', |
|
|
|
|
'', |
|
|
|
|
array( |
|
|
|
|
'userId' => array('name' => 'course', 'type' => 'xsd:string'), // Chamilo user Id |
|
|
|
|
'sessionId' => array('name' => 'user_id', 'type' => 'xsd:string'), // Current Session course ID |
|
|
|
|
'courseId' =>array('name' => 'courseId', 'type' => 'xsd:string'), // Course Real Id |
|
|
|
|
'secret_key' => array('name' => 'secret_key', 'type' => 'xsd:string') |
|
|
|
|
) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$server->register( |
|
|
|
|
'WSUnsubscribeTeacherFromSessionCourse', |
|
|
|
|
array('UnsubscribeTeacherFromSessionCourse' => 'tns:UnsubscribeTeacherFromSessionCourse'), |
|
|
|
|
array('return' => 'xsd:string'), |
|
|
|
|
'urn:WSRegistration', |
|
|
|
|
'urn:WSRegistration#WSUnsubscribeTeacherFromSessionCourse', |
|
|
|
|
'rpc', |
|
|
|
|
'encoded', |
|
|
|
|
'This webservice unsubscribe a teacher from a session course' |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Subscribe teacher to a session course |
|
|
|
|
* |
|
|
|
@ -1040,13 +1079,26 @@ function WSSubscribeTeacherToSessionCourse($params) |
|
|
|
|
return return_error(WS_ERROR_SECRET_KEY); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$userId = $params['userId']; // Chamilo user Id |
|
|
|
|
$sessionId = $params['sessionId']; // Current Session course ID |
|
|
|
|
$courseId = $params['courseId']; // Course Real Id |
|
|
|
|
$params = parseCourseSessionUserParams($params); |
|
|
|
|
|
|
|
|
|
$userId = $params['user_id']; |
|
|
|
|
$courseId = $params['course_id']; |
|
|
|
|
$sessionId = $params['session_id']; |
|
|
|
|
|
|
|
|
|
return (SessionManager::set_coach_to_course_session($userId, $sessionId, $courseId)); |
|
|
|
|
return intval(SessionManager::set_coach_to_course_session($userId, $sessionId, $courseId)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$server->register( |
|
|
|
|
'WSUnsubscribeTeacherFromSessionCourse', |
|
|
|
|
array('UnsubscribeTeacherFromSessionCourse' => 'tns:TeacherToSessionCourse'), |
|
|
|
|
array('return' => 'xsd:string'), |
|
|
|
|
'urn:WSRegistration', |
|
|
|
|
'urn:WSRegistration#WSUnsubscribeTeacherFromSessionCourse', |
|
|
|
|
'rpc', |
|
|
|
|
'encoded', |
|
|
|
|
'This webservice unsubscribe a teacher from a session course' |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Subscribe teacher to a session course |
|
|
|
|
* |
|
|
|
@ -1064,15 +1116,15 @@ function WSUnsubscribeTeacherFromSessionCourse($params) |
|
|
|
|
return return_error(WS_ERROR_SECRET_KEY); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$userId = $params['userId']; // Chamilo user Id |
|
|
|
|
$sessionId = $params['sessionId']; // Current Session course ID |
|
|
|
|
$courseId = $params['courseId']; // Course Real Id |
|
|
|
|
$params = parseCourseSessionUserParams($params); |
|
|
|
|
|
|
|
|
|
return (SessionManager::removeUsersFromCourseSession($userId, $sessionId, $courseId)); |
|
|
|
|
$userId = $params['user_id']; |
|
|
|
|
$courseId = $params['course_id']; |
|
|
|
|
$sessionId = $params['session_id']; |
|
|
|
|
|
|
|
|
|
return intval(SessionManager::removeUsersFromCourseSession($userId, $sessionId, $courseId)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Register WSCreateUserPasswordCrypted function */ |
|
|
|
|
// Register the data structures used by the service |
|
|
|
|
|
|
|
|
@ -3320,15 +3372,11 @@ $server->register('WSCourseDescription', // method name |
|
|
|
|
// Define the method WSCourseDescription |
|
|
|
|
function WSCourseDescription($params) |
|
|
|
|
{ |
|
|
|
|
global $_course; |
|
|
|
|
if (!WSHelperVerifyKey($params)) { |
|
|
|
|
return return_error(WS_ERROR_SECRET_KEY); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$course_table = Database::get_main_table(TABLE_MAIN_COURSE); |
|
|
|
|
|
|
|
|
|
$array_course_desc_id = array(); |
|
|
|
|
$array_course__desc_default_title = array(); |
|
|
|
|
$array_course_desc_title = array(); |
|
|
|
|
$array_course_desc_content = array(); |
|
|
|
|
|
|
|
|
@ -3704,7 +3752,7 @@ $server->wsdl->addComplexType( |
|
|
|
|
'SOAP-ENC:Array', |
|
|
|
|
array(), |
|
|
|
|
array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:createSessionParam[]')), |
|
|
|
|
'tns:createSessionParam' |
|
|
|
|
'tns:createSessionParamList' |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// Register the data structures used by the service |
|
|
|
@ -3759,14 +3807,15 @@ $server->register('WSCreateSession', // method name |
|
|
|
|
// define the method WSCreateSession |
|
|
|
|
function WSCreateSession($params) |
|
|
|
|
{ |
|
|
|
|
global $_user; |
|
|
|
|
global $debug; |
|
|
|
|
$sessionAdminId = 1; |
|
|
|
|
|
|
|
|
|
if (!WSHelperVerifyKey($params)) { |
|
|
|
|
return return_error(WS_ERROR_SECRET_KEY); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$tbl_user = Database::get_main_table(TABLE_MAIN_USER); |
|
|
|
|
$tbl_session = Database::get_main_table(TABLE_MAIN_SESSION); |
|
|
|
|
error_log(print_r($params, 1)); |
|
|
|
|
|
|
|
|
|
$sessions_params = $params['sessions']; |
|
|
|
|
$results = array(); |
|
|
|
@ -3788,19 +3837,22 @@ function WSCreateSession($params) |
|
|
|
|
$original_session_id_name = $session_param['original_session_id_name']; |
|
|
|
|
$original_session_id_value = $session_param['original_session_id_value']; |
|
|
|
|
$orig_session_id_value[] = $session_param['original_session_id_value']; |
|
|
|
|
$extra_list = $session_param['extra']; |
|
|
|
|
$extra_list = isset($session_param['extra']) ? $session_param['extra'] : ''; |
|
|
|
|
|
|
|
|
|
$sessionId = SessionManager::getSessionIdFromOriginalId( |
|
|
|
|
$original_session_id_value, |
|
|
|
|
$original_session_id_name |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
if (empty($sessionId)) { |
|
|
|
|
if (!empty($sessionId)) { |
|
|
|
|
if ($debug) { |
|
|
|
|
error_log("session with external session id '$original_session_id_value' with '$name' exists"); |
|
|
|
|
} |
|
|
|
|
$results[] = 0; |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (empty($nolimit)){ |
|
|
|
|
if (empty($nolimit)) { |
|
|
|
|
$date_start = "$year_start-".(($month_start < 10)?"0$month_start":$month_start)."-".(($day_start < 10)?"0$day_start":$day_start) . ' 00:00:00'; |
|
|
|
|
$date_end = "$year_end-".(($month_end < 10)?"0$month_end":$month_end)."-".(($day_end < 10)?"0$day_end":$day_end) . ' 23:59:59'; |
|
|
|
|
} else { |
|
|
|
@ -3809,38 +3861,60 @@ function WSCreateSession($params) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (empty($name)) { |
|
|
|
|
if ($debug) { |
|
|
|
|
error_log("session has no name"); |
|
|
|
|
} |
|
|
|
|
$results[] = 0; |
|
|
|
|
continue; |
|
|
|
|
} elseif (empty($nolimit) && (!$month_start || !$day_start || !$year_start || !checkdate($month_start, $day_start, $year_start))) { |
|
|
|
|
if ($debug) { |
|
|
|
|
error_log("There's an error with the start date: $month_start - $day_start - $year_start"); |
|
|
|
|
} |
|
|
|
|
$results[] = 0; |
|
|
|
|
continue; |
|
|
|
|
} elseif (empty($nolimit) && (!$month_end || !$day_end || !$year_end || !checkdate($month_end,$day_end,$year_end))) { |
|
|
|
|
} elseif (empty($nolimit) && (!$month_end || !$day_end || !$year_end || !checkdate($month_end, $day_end, $year_end))) { |
|
|
|
|
$results[] = 0; |
|
|
|
|
if ($debug) { |
|
|
|
|
error_log("There's an error with the end date: $month_end - $day_end - $year_end"); |
|
|
|
|
} |
|
|
|
|
continue; |
|
|
|
|
} elseif (empty($nolimit) && $date_start >= $date_end) { |
|
|
|
|
$results[] = 0; |
|
|
|
|
if ($debug) { |
|
|
|
|
error_log("There's an error with the start and end date"); |
|
|
|
|
} |
|
|
|
|
continue; |
|
|
|
|
} else { |
|
|
|
|
$rs = Database::query("SELECT 1 FROM $tbl_session WHERE name='".addslashes($name)."'"); |
|
|
|
|
if (Database::num_rows($rs)) { |
|
|
|
|
if ($debug) { |
|
|
|
|
error_log("Session with name '$name' already exists"); |
|
|
|
|
} |
|
|
|
|
$results[] = 0; |
|
|
|
|
continue; |
|
|
|
|
} else { |
|
|
|
|
$startDate = new DateTime($date_start); |
|
|
|
|
$endDate = new DateTime($date_end); |
|
|
|
|
$diffStart = new DateInterval($nb_days_access_before); |
|
|
|
|
$diffEnd = new DateInterval($nb_days_access_after); |
|
|
|
|
$coachStartDate = $startDate->sub($diffStart); |
|
|
|
|
$coachEndDate = $endDate->add($diffEnd); |
|
|
|
|
|
|
|
|
|
$coachStartDate = ''; |
|
|
|
|
if ($date_start) { |
|
|
|
|
$startDate = new DateTime($date_start); |
|
|
|
|
$diffStart = new DateInterval("P".$nb_days_access_before."D"); |
|
|
|
|
$coachStartDate = $startDate->sub($diffStart); |
|
|
|
|
$coachStartDate = $coachStartDate->format('Y-m-d H:i:s'); |
|
|
|
|
} |
|
|
|
|
$coachEndDate = ''; |
|
|
|
|
if ($date_end) { |
|
|
|
|
$endDate = new DateTime($date_end); |
|
|
|
|
$diffEnd = new DateInterval("P".$nb_days_access_after."D"); |
|
|
|
|
$coachEndDate = $endDate->add($diffEnd); |
|
|
|
|
$coachEndDate = $coachEndDate->format('Y-m-d H:i:s'); |
|
|
|
|
} |
|
|
|
|
$id_session = SessionManager::create_session( |
|
|
|
|
$name, |
|
|
|
|
$date_start, |
|
|
|
|
$date_end, |
|
|
|
|
$date_start, |
|
|
|
|
$date_end, |
|
|
|
|
$coachStartDate->format('Y-m-d H:i:s'), |
|
|
|
|
$coachEndDate->format('Y-m-d H:i:s'), |
|
|
|
|
$coachStartDate, |
|
|
|
|
$coachEndDate, |
|
|
|
|
$id_coach, |
|
|
|
|
0, |
|
|
|
|
0, |
|
|
|
@ -3849,43 +3923,52 @@ function WSCreateSession($params) |
|
|
|
|
null, |
|
|
|
|
0, |
|
|
|
|
array(), |
|
|
|
|
$_user['user_id'] |
|
|
|
|
$sessionAdminId |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// Save new fieldlabel into course_field table. |
|
|
|
|
$field_id = SessionManager::create_session_extra_field( |
|
|
|
|
$original_session_id_name, |
|
|
|
|
1, |
|
|
|
|
$original_session_id_name |
|
|
|
|
); |
|
|
|
|
if ($id_session) { |
|
|
|
|
|
|
|
|
|
// Save the external system's id into user_field_value table. |
|
|
|
|
$res = SessionManager::update_session_extra_field_value( |
|
|
|
|
$id_session, |
|
|
|
|
$original_session_id_name, |
|
|
|
|
$original_session_id_value |
|
|
|
|
); |
|
|
|
|
if ($debug) { |
|
|
|
|
error_log("Session created '$id_session' "); |
|
|
|
|
} |
|
|
|
|
// Save new fieldlabel into course_field table. |
|
|
|
|
SessionManager::create_session_extra_field( |
|
|
|
|
$original_session_id_name, |
|
|
|
|
1, |
|
|
|
|
$original_session_id_name |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
if (is_array($extra_list) && count($extra_list) > 0) { |
|
|
|
|
foreach ($extra_list as $extra) { |
|
|
|
|
$extra_field_name = $extra['field_name']; |
|
|
|
|
$extra_field_value = $extra['field_value']; |
|
|
|
|
// Save new fieldlabel into course_field table. |
|
|
|
|
$field_id = SessionManager::create_session_extra_field( |
|
|
|
|
$extra_field_name, |
|
|
|
|
1, |
|
|
|
|
$extra_field_name |
|
|
|
|
); |
|
|
|
|
// Save the external system's id into course_field_value table. |
|
|
|
|
$res = SessionManager::update_session_extra_field_value( |
|
|
|
|
$id_session, |
|
|
|
|
$extra_field_name, |
|
|
|
|
$extra_field_value |
|
|
|
|
); |
|
|
|
|
// Save the external system's id into user_field_value table. |
|
|
|
|
SessionManager::update_session_extra_field_value( |
|
|
|
|
$id_session, |
|
|
|
|
$original_session_id_name, |
|
|
|
|
$original_session_id_value |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
if (is_array($extra_list) && count($extra_list) > 0) { |
|
|
|
|
foreach ($extra_list as $extra) { |
|
|
|
|
$extra_field_name = $extra['field_name']; |
|
|
|
|
$extra_field_value = $extra['field_value']; |
|
|
|
|
// Save new fieldlabel into course_field table. |
|
|
|
|
SessionManager::create_session_extra_field( |
|
|
|
|
$extra_field_name, |
|
|
|
|
1, |
|
|
|
|
$extra_field_name |
|
|
|
|
); |
|
|
|
|
// Save the external system's id into course_field_value table. |
|
|
|
|
SessionManager::update_session_extra_field_value( |
|
|
|
|
$id_session, |
|
|
|
|
$extra_field_name, |
|
|
|
|
$extra_field_value |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$results[] = $id_session; |
|
|
|
|
} else { |
|
|
|
|
if ($debug) { |
|
|
|
|
error_log("There was an error when trying to save session with name $name"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$results[] = $id_session; |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} // end principal foreach |
|
|
|
@ -4052,13 +4135,20 @@ function WSEditSession($params) |
|
|
|
|
$results[] = 0; //StartDateShouldBeBeforeEndDate |
|
|
|
|
continue; |
|
|
|
|
} else { |
|
|
|
|
$startDate = new DateTime($date_start); |
|
|
|
|
$endDate = new DateTime($date_end); |
|
|
|
|
$diffStart = new DateInterval($nb_days_access_before); |
|
|
|
|
$diffEnd = new DateInterval($nb_days_access_after); |
|
|
|
|
$coachStartDate = $startDate->sub($diffStart); |
|
|
|
|
$coachEndDate = $endDate->add($diffEnd); |
|
|
|
|
|
|
|
|
|
$coachStartDate = ''; |
|
|
|
|
if ($date_start) { |
|
|
|
|
$startDate = new DateTime($date_start); |
|
|
|
|
$diffStart = new DateInterval("P".$nb_days_access_before."D"); |
|
|
|
|
$coachStartDate = $startDate->sub($diffStart); |
|
|
|
|
$coachStartDate = $coachStartDate->format('Y-m-d H:i:s'); |
|
|
|
|
} |
|
|
|
|
$coachEndDate = ''; |
|
|
|
|
if ($date_end) { |
|
|
|
|
$endDate = new DateTime($date_end); |
|
|
|
|
$diffEnd = new DateInterval("P".$nb_days_access_after."D"); |
|
|
|
|
$coachEndDate = $endDate->add($diffEnd); |
|
|
|
|
$coachEndDate = $coachEndDate->format('Y-m-d H:i:s'); |
|
|
|
|
} |
|
|
|
|
$sessionInfo = api_get_session_info($id); |
|
|
|
|
|
|
|
|
|
SessionManager::edit_session( |
|
|
|
@ -4068,8 +4158,8 @@ function WSEditSession($params) |
|
|
|
|
$date_end, |
|
|
|
|
$date_start, |
|
|
|
|
$date_end, |
|
|
|
|
$coachStartDate->format('Y-m-d H:i:s'), |
|
|
|
|
$coachEndDate->format('Y-m-d H:i:s'), |
|
|
|
|
$coachStartDate, |
|
|
|
|
$coachEndDate, |
|
|
|
|
$id_coach, |
|
|
|
|
$sessionInfo['session_category_id'], |
|
|
|
|
$sessionInfo['visibility'], |
|
|
|
@ -4085,7 +4175,7 @@ function WSEditSession($params) |
|
|
|
|
$extra_field_name = $extra['field_name']; |
|
|
|
|
$extra_field_value = $extra['field_value']; |
|
|
|
|
// Save the external system's id into session_field_value table. |
|
|
|
|
$res = SessionManager::update_session_extra_field_value( |
|
|
|
|
SessionManager::update_session_extra_field_value( |
|
|
|
|
$id, |
|
|
|
|
$extra_field_name, |
|
|
|
|
$extra_field_value |
|
|
|
@ -4112,32 +4202,6 @@ function WSEditSession($params) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Register WSSubscribeUserToCourse function */ |
|
|
|
|
// Register the data structures used by the service |
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'originalUsersList', |
|
|
|
|
'complexType', |
|
|
|
|
'array', |
|
|
|
|
'', |
|
|
|
|
'SOAP-ENC:Array', |
|
|
|
|
array(), |
|
|
|
|
array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:deleteSessionParams[]')), |
|
|
|
|
'tns:originalUsersList' |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'subscribeUserToCourseParams', |
|
|
|
|
'complexType', |
|
|
|
|
'struct', |
|
|
|
|
'all', |
|
|
|
|
'', |
|
|
|
|
array( |
|
|
|
|
'original_user_id_values' => array('name' => 'original_user_id_values', 'type' => 'tns:originalUsersList'), |
|
|
|
|
'original_user_id_name' => array('name' => 'original_user_id_name', 'type' => 'xsd:string'), |
|
|
|
|
'original_course_id_value' => array('name' => 'original_course_id_value', 'type' => 'xsd:string'), |
|
|
|
|
'original_course_id_name' => array('name' => 'original_course_id_value', 'type' => 'xsd:string') |
|
|
|
|
) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
/* Register WSDeleteSession function */ |
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
@ -4388,11 +4452,13 @@ function WSSubscribeUserToCourse($params) { |
|
|
|
|
$resultValue = 0; |
|
|
|
|
} else { |
|
|
|
|
// User was found |
|
|
|
|
$courseCode = CourseManager::get_course_id_from_original_id( |
|
|
|
|
$courseInfo = CourseManager::getCourseInfoFromOriginalId( |
|
|
|
|
$original_course_id['original_course_id_value'], |
|
|
|
|
$original_course_id['original_course_id_name'] |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$courseCode = $courseInfo['code']; |
|
|
|
|
|
|
|
|
|
if (empty($courseCode)) { |
|
|
|
|
// Course was not found |
|
|
|
|
$resultValue = 0; |
|
|
|
@ -4841,11 +4907,13 @@ function WSUnSubscribeUserFromCourseSimple($params) |
|
|
|
|
error_log("Course $original_course_id_value, $original_course_id_name found"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$courseCode = CourseManager::get_course_id_from_original_id( |
|
|
|
|
$courseInfo = CourseManager::getCourseInfoFromOriginalId( |
|
|
|
|
$original_course_id_value, |
|
|
|
|
$original_course_id_name |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$courseCode = $courseInfo['code']; |
|
|
|
|
|
|
|
|
|
if (empty($courseCode)) { |
|
|
|
|
// Course was not found |
|
|
|
|
if ($debug) { |
|
|
|
@ -4867,70 +4935,113 @@ function WSUnSubscribeUserFromCourseSimple($params) |
|
|
|
|
return $result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* Register WSSuscribeUsersToSession function */ |
|
|
|
|
// Register the data structures used by the service |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'subscribeUsersToSessionParams', |
|
|
|
|
'subscribeUserToCourseParams', |
|
|
|
|
'complexType', |
|
|
|
|
'struct', |
|
|
|
|
'all', |
|
|
|
|
'', |
|
|
|
|
array( |
|
|
|
|
'original_user_id_values' => array('name' => 'original_user_id_values', 'type' => 'tns:originalUsersList'), |
|
|
|
|
'original_user_id_name' => array('name' => 'original_user_id_name', 'type' => 'xsd:string'), |
|
|
|
|
'original_user_id_values' => array('name' => 'original_user_id_values', 'type' => 'tns:originalUsersList'), |
|
|
|
|
'original_user_id_name' => array('name' => 'original_user_id_name', 'type' => 'xsd:string'), |
|
|
|
|
'original_course_id_value' => array('name' => 'original_course_id_value', 'type' => 'xsd:string'), |
|
|
|
|
'original_course_id_name' => array('name' => 'original_course_id_value', 'type' => 'xsd:string') |
|
|
|
|
) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Prepare output params, in this case will return an array. |
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'result_subscribeUsersToSession', |
|
|
|
|
'complexType', |
|
|
|
|
'struct', |
|
|
|
|
'all', |
|
|
|
|
'', |
|
|
|
|
array( |
|
|
|
|
'original_user_id_values' => array('name' => 'original_user_id_values', 'type' => 'xsd:string'), |
|
|
|
|
'original_session_id_value' => array('name' => 'original_session_id_value', 'type' => 'xsd:string'), |
|
|
|
|
'original_session_id_name' => array('name' => 'original_session_id_name', 'type' => 'xsd:string') |
|
|
|
|
'result' => array('name' => 'result', 'type' => 'xsd:string') |
|
|
|
|
) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'subscribeUsersToSessionParamsList', |
|
|
|
|
'results_subscribeUsersToSession', |
|
|
|
|
'complexType', |
|
|
|
|
'array', |
|
|
|
|
'', |
|
|
|
|
'SOAP-ENC:Array', |
|
|
|
|
array(), |
|
|
|
|
array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:subscribeUsersToSessionParams[]')), |
|
|
|
|
'tns:subscribeUsersToSessionParams' |
|
|
|
|
array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:result_subscribeUsersToSession[]')), |
|
|
|
|
'tns:result_subscribeUsersToSession' |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'subscribeUsersToSession', |
|
|
|
|
'originalUserItem', |
|
|
|
|
'complexType', |
|
|
|
|
'struct', |
|
|
|
|
'all', |
|
|
|
|
'', |
|
|
|
|
array( |
|
|
|
|
'userssessions' => array('name' => 'userssessions', 'type' => 'tns:subscribeUsersToSessionParamsList'), |
|
|
|
|
'secret_key' => array('name' => 'secret_key', 'type' => 'xsd:string') |
|
|
|
|
'original_user_id_value' => array('name' => 'original_user_id_value', 'type' => 'xsd:string') |
|
|
|
|
) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// Prepare output params, in this case will return an array. |
|
|
|
|
// Register the data structures used by the service |
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'result_subscribeUsersToSession', |
|
|
|
|
'originalUsersList', |
|
|
|
|
'complexType', |
|
|
|
|
'array', |
|
|
|
|
'', |
|
|
|
|
'SOAP-ENC:Array', |
|
|
|
|
array(), |
|
|
|
|
array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:originalUserItem[]')), |
|
|
|
|
'tns:originalUserItem' |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
/* Register WSSuscribeUsersToSession function */ |
|
|
|
|
// Register the data structures used by the service |
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'subscribeUsersToSessionParams', |
|
|
|
|
'complexType', |
|
|
|
|
'struct', |
|
|
|
|
'all', |
|
|
|
|
'', |
|
|
|
|
array( |
|
|
|
|
'original_user_id_values' => array('name' => 'original_user_id_values', 'type' => 'xsd:string'), |
|
|
|
|
'original_user_id_values' => array('name' => 'original_user_id_values', 'type' => 'tns:originalUsersList'), |
|
|
|
|
'original_user_id_name' => array('name' => 'original_user_id_name', 'type' => 'xsd:string'), |
|
|
|
|
'original_session_id_value' => array('name' => 'original_session_id_value', 'type' => 'xsd:string'), |
|
|
|
|
'result' => array('name' => 'result', 'type' => 'xsd:string') |
|
|
|
|
'original_session_id_name' => array('name' => 'original_session_id_name', 'type' => 'xsd:string') |
|
|
|
|
) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'results_subscribeUsersToSession', |
|
|
|
|
'subscribeUsersToSessionParamsList', |
|
|
|
|
'complexType', |
|
|
|
|
'array', |
|
|
|
|
'', |
|
|
|
|
'SOAP-ENC:Array', |
|
|
|
|
array(), |
|
|
|
|
array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:result_subscribeUsersToSession[]')), |
|
|
|
|
'tns:result_subscribeUsersToSession' |
|
|
|
|
array(array('ref' => 'SOAP-ENC:arrayType', 'wsdl:arrayType' => 'tns:subscribeUsersToSessionParams[]')), |
|
|
|
|
'tns:subscribeUsersToSessionParams' |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
$server->wsdl->addComplexType( |
|
|
|
|
'subscribeUsersToSession', |
|
|
|
|
'complexType', |
|
|
|
|
'struct', |
|
|
|
|
'all', |
|
|
|
|
'', |
|
|
|
|
array( |
|
|
|
|
'userssessions' => array('name' => 'userssessions', 'type' => 'tns:subscribeUsersToSessionParamsList'), |
|
|
|
|
'secret_key' => array('name' => 'secret_key', 'type' => 'xsd:string') |
|
|
|
|
) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Register the method to expose |
|
|
|
|
$server->register('WSSuscribeUsersToSession', // method name |
|
|
|
|
array('subscribeUsersToSession' => 'tns:subscribeUsersToSession'), // input parameters |
|
|
|
@ -4945,10 +5056,10 @@ $server->register('WSSuscribeUsersToSession', // method |
|
|
|
|
// define the method WSSuscribeUsersToSession |
|
|
|
|
function WSSuscribeUsersToSession($params) |
|
|
|
|
{ |
|
|
|
|
global $debug; |
|
|
|
|
if (!WSHelperVerifyKey($params)) { |
|
|
|
|
return return_error(WS_ERROR_SECRET_KEY); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$user_table = Database::get_main_table(TABLE_MAIN_USER); |
|
|
|
|
$tbl_session_rel_course = Database::get_main_table(TABLE_MAIN_SESSION_COURSE); |
|
|
|
|
$tbl_session_rel_course_rel_user = Database::get_main_table(TABLE_MAIN_SESSION_COURSE_USER); |
|
|
|
@ -4956,11 +5067,14 @@ function WSSuscribeUsersToSession($params) |
|
|
|
|
$tbl_session = Database::get_main_table(TABLE_MAIN_SESSION); |
|
|
|
|
|
|
|
|
|
$userssessions_params = $params['userssessions']; |
|
|
|
|
|
|
|
|
|
if ($debug) { |
|
|
|
|
error_log(print_r($params, 1)); |
|
|
|
|
} |
|
|
|
|
$results = array(); |
|
|
|
|
$orig_user_id_value = array(); |
|
|
|
|
$orig_session_id_value = array(); |
|
|
|
|
foreach ($userssessions_params as $usersession_params) { |
|
|
|
|
|
|
|
|
|
$original_session_id_value = $usersession_params['original_session_id_value']; |
|
|
|
|
$original_session_id_name = $usersession_params['original_session_id_name']; |
|
|
|
|
$original_user_id_name = $usersession_params['original_user_id_name']; |
|
|
|
@ -4980,9 +5094,14 @@ function WSSuscribeUsersToSession($params) |
|
|
|
|
$usersList = array(); |
|
|
|
|
foreach ($original_user_id_values as $key => $row_original_user_list) { |
|
|
|
|
$user_id = UserManager::get_user_id_from_original_id( |
|
|
|
|
$original_user_id_values[$key], |
|
|
|
|
$original_user_id_name[$key] |
|
|
|
|
$row_original_user_list['original_user_id_value'], |
|
|
|
|
$original_user_id_name |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($debug) { |
|
|
|
|
error_log(" User to subscribe: $user_id"); |
|
|
|
|
} |
|
|
|
|
if ($user_id == 0) { |
|
|
|
|
continue; // user_id doesn't exist. |
|
|
|
|
} else { |
|
|
|
@ -6035,9 +6154,9 @@ function WSUpdateUserApiKey($params) { |
|
|
|
|
$info = api_get_user_info_from_username($params['chamilo_username']); |
|
|
|
|
$user_id = $info['user_id']; |
|
|
|
|
// Save new fieldlabel into user_field table. |
|
|
|
|
$field_id = UserManager::create_extra_field($params['original_user_id_name'], 1, $params['original_user_id_name'], ''); |
|
|
|
|
UserManager::create_extra_field($params['original_user_id_name'], 1, $params['original_user_id_name'], ''); |
|
|
|
|
// Save the external system's id into user_field_value table. |
|
|
|
|
$res = UserManager::update_extra_field_value($user_id, $params['original_user_id_name'], $params['original_user_id_value']); |
|
|
|
|
UserManager::update_extra_field_value($user_id, $params['original_user_id_name'], $params['original_user_id_value']); |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
return 0; |
|
|
|
@ -6185,7 +6304,7 @@ $server->register('WSUserSubscribedInCourse', // meth |
|
|
|
|
* @param array $params Array of parameters (course and user_id) |
|
|
|
|
* @return bool|null|soap_fault A simple boolean (true if user is subscribed, false otherwise) |
|
|
|
|
*/ |
|
|
|
|
function WSUserSubscribedInCourse ($params) |
|
|
|
|
function WSUserSubscribedInCourse($params) |
|
|
|
|
{ |
|
|
|
|
global $debug; |
|
|
|
|
|
|
|
|
|