ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilObjSAHSLearningModuleAccess.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5include_once("./Services/Object/classes/class.ilObjectAccess.php");
6include_once 'Services/AccessControl/interfaces/interface.ilConditionHandling.php';
7
18{
19
23 public static function getConditionOperators()
24 {
25 include_once './Services/AccessControl/classes/class.ilConditionHandler.php';
26 return array(
29 );
30 }
31
32
41 public static function checkCondition($a_trigger_obj_id, $a_operator, $a_value, $a_usr_id)
42 {
43 switch ($a_operator) {
44
46 include_once './Services/Tracking/classes/class.ilLPStatus.php';
47 return ilLPStatus::_lookupStatus($a_trigger_obj_id, $a_usr_id) == ilLPStatus::LP_STATUS_FAILED_NUM;
48 break;
49
51 default:
52 include_once './Services/Tracking/classes/class.ilLPStatus.php';
53 return ilLPStatus::_hasUserCompleted($a_trigger_obj_id, $a_usr_id);
54
55 }
56 return true;
57 }
58
59
60
73 public function _checkAccess($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id = "")
74 {
75 global $ilUser, $lng, $rbacsystem, $ilAccess;
76
77 if ($a_user_id == "") {
78 $a_user_id = $ilUser->getId();
79 }
80
81 switch ($a_cmd) {
82 case "view":
83
85 && !$rbacsystem->checkAccessOfUser($a_user_id, 'write', $a_ref_id)) {
86 $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
87 return false;
88 }
89 break;
90 }
91
92 switch ($a_permission) {
93 case "visible":
95 (!$rbacsystem->checkAccessOfUser($a_user_id, 'write', $a_ref_id))) {
96 $ilAccess->addInfoItem(IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
97 return false;
98 }
99 break;
100 }
101
102
103 return true;
104 }
105
118 public static function _getCommands($a_obj_id = null)
119 {
120 $commands = array(
121 array("permission" => "read", "cmd" => "view", "lang_var" => "show","default" => true),
122 array("permission" => "write", "cmd" => "editContent", "lang_var" => "edit_content"),
123 array("permission" => "write", "cmd" => "edit", "lang_var" => "settings")
124 );
125 // #14866
128 if ($offlineMode == false) {
129 $commands[]=array("permission" => "read", "cmd" => "offlineModeStart", "lang_var" => "offline_mode");
130 } else {
131 $commands[]=array("permission" => "read", "cmd" => "offlineModeStop", "lang_var" => "offline_mode");
132 $commands[0]=array("permission" => "read", "cmd" => "offlineModeView", "lang_var" => "show","default" => true);
133 }
134 }
135
136 return $commands;
137 }
138
139 //
140 // access relevant methods
141 //
142
146 public static function _lookupOnline($a_id)
147 {
148 global $ilDB;
149
150 $set = $ilDB->queryF(
151 'SELECT c_online FROM sahs_lm WHERE id = %s',
152 array('integer'),
153 array($a_id)
154 );
155 $rec = $ilDB->fetchAssoc($set);
156
157 return ilUtil::yn2tf($rec["c_online"]);
158 }
159
163 public static function _lookupEditable($a_obj_id)
164 {
165 global $ilDB;
166
167 $set = $ilDB->queryF(
168 'SELECT * FROM sahs_lm WHERE id = %s',
169 array('integer'),
170 array($a_obj_id)
171 );
172 $rec = $ilDB->fetchAssoc($set);
173
174 return $rec["editable"];
175 }
176
177
181 public static function _checkGoto($a_target)
182 {
183 global $ilAccess;
184
185 $t_arr = explode("_", $a_target);
186
187 if ($t_arr[0] != "sahs" || ((int) $t_arr[1]) <= 0) {
188 return false;
189 }
190
191 if ($ilAccess->checkAccess("visible", "", $t_arr[1]) || $ilAccess->checkAccess("read", "", $t_arr[1])) {
192 return true;
193 }
194 return false;
195 }
196
202 public static function _lookupDiskUsage($a_id)
203 {
204 $lm_data_dir = ilUtil::getWebspaceDir('filesystem') . "/lm_data";
205 $lm_dir = $lm_data_dir . DIRECTORY_SEPARATOR . "lm_" . $a_id;
206
207 return file_exists($lm_dir) ? ilUtil::dirsize($lm_dir) : 0;
208 }
209
216 public static function _lookupUserCertificate($obj_id, $usr_id = 0)
217 {
218 global $ilUser;
219 $uid = ($usr_id) ? $usr_id : $ilUser->getId();
220
221 $completed = false;
222 // check for certificates
223 include_once "./Services/Certificate/classes/class.ilCertificate.php";
225 $lpdata = false;
226 include_once "./Modules/ScormAicc/classes/class.ilObjSAHSLearningModule.php";
228 include_once("Services/Tracking/classes/class.ilObjUserTracking.php");
230 include_once "./Services/Tracking/classes/class.ilLPStatus.php";
231 $completed = ilLPStatus::_hasUserCompleted($obj_id, $uid);
232 $lpdata = true;
233 }
234 switch ($type) {
235 case "scorm":
236 if (!$lpdata) {
237 include_once "./Modules/ScormAicc/classes/class.ilObjSCORMLearningModule.php";
239 }
240 break;
241 case "scorm2004":
242 if (!$lpdata) {
243 include_once "./Modules/Scorm2004/classes/class.ilObjSCORM2004LearningModule.php";
245 }
246 break;
247 default:
248 break;
249 }
250 }
251 return $completed;
252 }
253
262 public static function _isOffline($a_obj_id)
263 {
264 return !self::_lookupOnline($a_obj_id);
265 }
266
270 public static function _lookupUserIsOfflineMode($a_obj_id)
271 {
272 global $ilDB,$ilUser;
273
274 $user_id = $ilUser->getId();
275
276 $set = $ilDB->queryF(
277 'SELECT offline_mode FROM sahs_user WHERE obj_id = %s AND user_id = %s',
278 array('integer','integer'),
279 array($a_obj_id, $user_id)
280 );
281 $rec = $ilDB->fetchAssoc($set);
282 if ($rec["offline_mode"] == "offline") {
283 return true;
284 }
285 return false;
286 }
287
291 public static function _lookupOfflineModeAvailable($a_id)
292 {
293 global $ilDB;
294
295 $set = $ilDB->queryF(
296 'SELECT offline_mode FROM sahs_lm WHERE id = %s',
297 array('integer'),
298 array($a_id)
299 );
300 $rec = $ilDB->fetchAssoc($set);
301
302 return ilUtil::yn2tf($rec["offline_mode"]);
303 }
304}
An exception for terminatinating execution or to throw for unit testing.
const IL_NO_OBJECT_ACCESS
static isObjectActive($a_obj_id)
static _lookupStatus($a_obj_id, $a_user_id, $a_create=true)
Lookup status.
static _hasUserCompleted($a_obj_id, $a_user_id)
Lookup user object completion.
const LP_STATUS_FAILED_NUM
static _getCommands($a_obj_id=null)
get commands
static _checkGoto($a_target)
check whether goto script will succeed
static checkCondition($a_trigger_obj_id, $a_operator, $a_value, $a_usr_id)
check condition
static _lookupEditable($a_obj_id)
Lookup editable.
static _isOffline($a_obj_id)
Type-specific implementation of general status.
static _lookupOnline($a_id)
check wether learning module is online
static _lookupUserIsOfflineMode($a_obj_id)
Checks offlineMode and returns false if.
static getConditionOperators()
Get possible conditions operaditors.
static _lookupOfflineModeAvailable($a_id)
check wether learning module is online
static _lookupUserCertificate($obj_id, $usr_id=0)
Checks whether a certificate exists for the active user or not.
_checkAccess($a_cmd, $a_permission, $a_ref_id, $a_obj_id, $a_user_id="")
checks wether a user may invoke a command or not (this method is called by ilAccessHandler::checkAcce...
static _lookupDiskUsage($a_id)
Returns the number of bytes used on the harddisk by the learning module with the specified object id.
static _lookupSubType($a_obj_id)
lookup subtype id (scorm, )
static _getCourseCompletionForUser($a_id, $a_user)
Get the completion of a SCORM module for a given user.
static _getCourseCompletionForUser($a_id, $a_user)
Get the completion of a SCORM module for a given user.
static _enabledLearningProgress()
check wether learing progress is enabled or not
Class ilObjectAccess.
static getWebspaceDir($mode="filesystem")
get webspace directory
static yn2tf($a_yn)
convert "y"/"n" to true/false
static dirsize($directory)
get size of a directory or a file.
Interface for condition handling.
global $lng
Definition: privfeed.php:17
$type
global $ilDB
$ilUser
Definition: imgupload.php:18