5 include_once
'./webservice/soap/classes/class.ilSoapAdministration.php';
32 self::PROGRESS_FILTER_ALL,
33 self::PROGRESS_FILTER_IN_PROGRESS,
34 self::PROGRESS_FILTER_COMPLETED,
35 self::PROGRESS_FILTER_FAILED,
36 self::PROGRESS_FILTER_NOT_ATTEMPTED
44 public function deleteProgress(
string $sid, array $ref_ids, array $usr_ids, array $type_filter, array $progress_filter)
49 if (!is_array($usr_ids)) {
50 $usr_ids = (array) $usr_ids;
52 if (!is_array($type_filter)) {
53 $type_filter = (array) $type_filter;
60 if (array_diff($type_filter, self::$DELETE_PROGRESS_FILTER_TYPES)) {
61 return $this->
raiseError(
'Invalid filter type given',
'Client');
64 include_once
'Services/User/classes/class.ilObjUser.php';
66 return $this->
raiseError(
'Invalid user ids given',
'Client');
69 $valid_refs = array();
77 $all_sub_objs = array();
78 foreach (($type_filter) as $type_filter_item) {
79 $sub_objs =
$GLOBALS[
'DIC'][
'tree']->getSubTree(
80 $GLOBALS[
'DIC'][
'tree']->getNodeData($ref_id),
84 $all_sub_objs = array_merge($all_sub_objs, $sub_objs);
87 foreach ($all_sub_objs as $child_ref) {
89 if (!
$GLOBALS[
'DIC'][
'ilAccess']->checkAccess(
'write',
'', $child_ref)) {
91 'Permission denied for : ' . $ref_id .
' -> type ' .
$type,
95 $valid_refs[] = $child_ref;
97 } elseif (in_array(
$type, $type_filter)) {
98 if (!
$GLOBALS[
'DIC'][
'ilAccess']->checkAccess(
'write',
'', $ref_id)) {
99 return $this->
raiseError(
'Permission denied for : ' . $ref_id .
' -> type ' .
$type,
'Client');
104 'Invalid object type given for : ' . $ref_id .
' -> type ' .
$type,
111 foreach ($valid_refs as $ref_id) {
112 include_once
'./Services/Object/classes/class.ilObjectFactory.php';
116 return $this->
raiseError(
'Invalid reference id given : ' . $ref_id .
' -> type ' .
$type,
'Client');
122 switch ($obj->getType()) {
124 include_once
'./Modules/ScormAicc/classes/class.ilObjSAHSLearningModule.php';
141 $obj->removeTestResultsFromSoapLpAdministration(array_values($valid_users));
146 include_once
'./Services/Tracking/classes/class.ilLPStatusWrapper.php';
157 public function getProgressInfo(
string $sid,
int $a_ref_id, array $a_progress_filter)
164 $ilAccess = $DIC->access();
169 'Error ' . self::SOAP_LP_ERROR_AUTHENTICATION .
':' . $this->
getMessage(),
170 self::SOAP_LP_ERROR_AUTHENTICATION
175 if (array_diff($a_progress_filter, self::$PROGRESS_INFO_TYPES)) {
177 'Error ' . self::SOAP_LP_ERROR_INVALID_FILTER .
': Invalid filter type given',
178 self::SOAP_LP_ERROR_INVALID_FILTER
182 include_once(
"Services/Tracking/classes/class.ilObjUserTracking.php");
185 'Error ' . self::SOAP_LP_ERROR_LP_NOT_ENABLED .
': Learning progress not enabled in ILIAS',
186 self::SOAP_LP_ERROR_LP_NOT_ENABLED
190 include_once
'./Services/Object/classes/class.ilObjectFactory.php';
194 'Error ' . self::SOAP_LP_ERROR_INVALID_REF_ID .
': Invalid reference id ' . $a_ref_id .
' given',
195 self::SOAP_LP_ERROR_INVALID_REF_ID
200 include_once
'./Services/Tracking/classes/class.ilLPObjSettings.php';
204 'Error ' . self::SOAP_LP_ERROR_LP_NOT_AVAILABLE .
': Learning progress not available for objects of type ' .
206 self::SOAP_LP_ERROR_LP_NOT_AVAILABLE
214 if (!$ilAccess->checkRbacOrPositionPermissionAccess(
215 'read_learning_progress',
216 'read_learning_progress',
220 'Error ' . self::SOAP_LP_ERROR_NO_PERMISSION .
': No Permission to access learning progress in this object',
221 self::SOAP_LP_ERROR_NO_PERMISSION
225 include_once
'./Services/Xml/classes/class.ilXmlWriter.php';
227 $writer->xmlStartTag(
228 'LearningProgressInfo',
230 'ref_id' => $obj->getRefId(),
231 'type' => $obj->getType()
235 $writer->xmlStartTag(
'LearningProgressSummary');
237 include_once
'./Services/Tracking/classes/class.ilLPStatusWrapper.php';
238 if (in_array(self::PROGRESS_FILTER_ALL, $a_progress_filter) || in_array(
239 self::PROGRESS_FILTER_COMPLETED,
243 $completed =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
244 'read_learning_progress',
249 $completed = count($completed);
254 'type' => self::PROGRESS_FILTER_COMPLETED,
259 if (in_array(self::PROGRESS_FILTER_ALL, $a_progress_filter) || in_array(
260 self::PROGRESS_FILTER_IN_PROGRESS,
264 $completed =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
265 'read_learning_progress',
270 $completed = count($completed);
275 'type' => self::PROGRESS_FILTER_IN_PROGRESS,
280 if (in_array(self::PROGRESS_FILTER_ALL, $a_progress_filter) || in_array(
281 self::PROGRESS_FILTER_FAILED,
285 $completed =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
286 'read_learning_progress',
291 $completed = count($completed);
296 'type' => self::PROGRESS_FILTER_FAILED,
301 if (in_array(self::PROGRESS_FILTER_ALL, $a_progress_filter) || in_array(
302 self::PROGRESS_FILTER_NOT_ATTEMPTED,
306 $completed =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
307 'read_learning_progress',
312 $completed = count($completed);
317 'type' => self::PROGRESS_FILTER_NOT_ATTEMPTED,
322 $writer->xmlEndTag(
'LearningProgressSummary');
323 $writer->xmlStartTag(
'UserProgress');
324 if (in_array(self::PROGRESS_FILTER_ALL, $a_progress_filter) || in_array(
325 self::PROGRESS_FILTER_COMPLETED,
329 $completed =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
330 'read_learning_progress',
336 $this->
addUserProgress($writer, $completed, self::PROGRESS_FILTER_COMPLETED);
338 if (in_array(self::PROGRESS_FILTER_ALL, $a_progress_filter) || in_array(
339 self::PROGRESS_FILTER_IN_PROGRESS,
343 $completed =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
344 'read_learning_progress',
349 $this->
addUserProgress($writer, $completed, self::PROGRESS_FILTER_IN_PROGRESS);
351 if (in_array(self::PROGRESS_FILTER_ALL, $a_progress_filter) || in_array(
352 self::PROGRESS_FILTER_FAILED,
356 $completed =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
357 'read_learning_progress',
362 $this->
addUserProgress($writer, $completed, self::PROGRESS_FILTER_FAILED);
364 if (in_array(self::PROGRESS_FILTER_ALL, $a_progress_filter) || in_array(
365 self::PROGRESS_FILTER_NOT_ATTEMPTED,
369 $completed =
$GLOBALS[
'DIC']->access()->filterUserIdsByRbacOrPositionOfCurrentUser(
370 'read_learning_progress',
376 $this->
addUserProgress($writer, $completed, self::PROGRESS_FILTER_NOT_ATTEMPTED);
378 $writer->xmlEndTag(
'UserProgress');
379 $writer->xmlEndTag(
'LearningProgressInfo');
381 return $writer->xmlDumpMem();
386 foreach ($users as $user_id) {
396 $writer->
xmlElement(
'Login', array(), (
string) $info[
'login']);
397 $writer->
xmlElement(
'Firstname', array(), (
string) $info[
'firstname']);
398 $writer->
xmlElement(
'Lastname', array(), (
string) $info[
'lastname']);
412 include_once
'./Services/Tracking/classes/class.ilLPStatusWrapper.php';
414 $all_users = array();
415 if (in_array(self::USER_FILTER_ALL, $usr_ids)) {
416 $all_users = array_unique(
424 $all_users = $usr_ids;
427 if (!$filter || in_array(self::PROGRESS_FILTER_ALL, $filter)) {
428 $GLOBALS[
'DIC'][
'log']->write(__METHOD__ .
': Deleting all progress data');
432 $filter_users = array();
433 if (in_array(self::PROGRESS_FILTER_IN_PROGRESS, $filter)) {
434 $GLOBALS[
'DIC'][
'log']->write(__METHOD__ .
': Filtering in progress.');
437 if (in_array(self::PROGRESS_FILTER_COMPLETED, $filter)) {
438 $GLOBALS[
'DIC'][
'log']->write(__METHOD__ .
': Filtering completed.');
441 if (in_array(self::PROGRESS_FILTER_FAILED, $filter)) {
442 $GLOBALS[
'DIC'][
'log']->write(__METHOD__ .
': Filtering failed.');
447 return array_intersect($all_users, $filter_users);
457 $ilDB = $DIC[
'ilDB'];
459 $query =
'DELETE FROM scorm_tracking ' .
460 'WHERE ' .
$ilDB->in(
'user_id', $a_usr_ids,
false,
'integer') .
' ' .
461 'AND obj_id = ' .
$ilDB->quote($a_obj_id,
'integer') .
' ';
473 $ilDB = $DIC[
'ilDB'];
475 $query =
'SELECT cp_node_id FROM cp_node ' .
476 'WHERE nodename = ' .
$ilDB->quote(
'item',
'text') .
' ' .
477 'AND cp_node.slm_id = ' .
$ilDB->quote($a_obj_id,
'integer');
482 $scos[] = $row->cp_node_id;
485 $query =
'DELETE FROM cmi_node ' .
486 'WHERE ' .
$ilDB->in(
'user_id', $a_usr_ids,
false,
'integer') .
' ' .
487 'AND ' .
$ilDB->in(
'cp_node_id', $scos,
false,
'integer');
505 $rbacsystem = $DIC[
'rbacsystem'];
506 $tree = $DIC[
'tree'];
507 $ilLog = $DIC[
'ilLog'];
511 if (is_array($type_filter)) {
512 $types = implode(
",", $type_filter);
517 include_once
'./Services/Tracking/classes/class.ilLPXmlWriter.php';
519 $writer->setTimestamp($timestamp);
520 $writer->setIncludeRefIds($include_ref_ids);
521 $writer->setTypeFilter($type_filter);
524 return $writer->xmlDumpMem(
true);
526 return $this->
raiseError($e->getMessage(),
'Client');
const PROGRESS_FILTER_IN_PROGRESS
getLearningProgressChanges(string $sid, string $timestamp, bool $include_ref_ids, array $type_filter)
This class handles all DB changes necessary for fraunhofer.
static _getCompleted(int $a_obj_id)
Static function to read the users who have the status 'completed'.
deleteScorm2004Tracking(int $a_obj_id, array $a_usr_ids)
Delete scorm 2004 tracking.
const SOAP_LP_ERROR_AUTHENTICATION
raiseError(string $a_message, $a_code)
static array $PROGRESS_INFO_TYPES
const PROGRESS_FILTER_FAILED
static _lookupName(int $a_user_id)
lookup user name
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const SOAP_LP_ERROR_INVALID_REF_ID
static array $DELETE_PROGRESS_FILTER_TYPES
const PROGRESS_FILTER_NOT_ATTEMPTED
const SOAP_LP_ERROR_NO_PERMISSION
static _resetInfoCaches($a_obj_id)
static _getInProgress(int $a_obj_id)
Static function to read users who have the status 'in_progress'.
const PROGRESS_FILTER_ALL
static _getNotAttempted(int $a_obj_id)
Static function to read the number of user who have the status 'not_attempted'.
static _lookupSubType(int $a_obj_id)
lookup subtype id (scorm, )
const SOAP_LP_ERROR_LP_NOT_AVAILABLE
static _lookupObjId(int $ref_id)
xmlEndTag(string $tag)
Writes an endtag.
const SOAP_LP_ERROR_INVALID_FILTER
static _enabledLearningProgress()
const OP_READ_LEARNING_PROGRESS
XML writer learning progress.
static _getFailed(int $a_obj_id)
Static function to read the users who have the status 'completed'.
checkSession(string $sid)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static _refreshStatus(int $a_obj_id, ?array $a_users=null)
addUserProgress(ilXmlWriter $writer, array $users, int $a_type)
static _lookupDBMode(int $a_obj_id)
static userExists(array $a_usr_ids=array())
foreach($mandatory_scripts as $file) $timestamp
applyProgressFilter(int $obj_id, array $usr_ids, array $filter)
Apply progress filter.
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
static _lookupType(int $id, bool $reference=false)
const SOAP_LP_ERROR_LP_NOT_ENABLED
deleteScormTracking(int $a_obj_id, array $a_usr_ids)
Delete SCORM Tracking.
const PROGRESS_FILTER_COMPLETED