27 public function addFile(
string $sid,
int $target_id,
string $file_xml)
37 $ilAccess = $DIC[
'ilAccess'];
40 return $this->
raiseError(
'No valid target given.',
'Client');
44 return $this->
raiseError(
"Parent with ID $target_id has been deleted.",
'CLIENT_TARGET_DELETED');
47 $allowed_types = array(
'cat',
'grp',
'crs',
'fold',
'root');
48 if (!in_array($target_obj->getType(), $allowed_types)) {
50 'No valid target type. Target must be reference id of "course, group, category or folder"',
55 if (!$ilAccess->checkAccess(
'create',
'', $target_id,
"file")) {
56 return $this->
raiseError(
'No permission to create Files in target ' . $target_id .
'!',
'Client');
65 if ($fileXMLParser->start()) {
68 $ilLog = $DIC[
'ilLog'];
70 $ilLog->write(__METHOD__ .
': File type: ' . $file->getFileType());
73 $file->createReference();
74 $file->putInTree($target_id);
75 $file->setPermissions($target_id);
78 $fileXMLParser->setFileContents();
81 return $file->getRefId();
84 return $this->
raiseError(
"Could not add file",
"Server");
87 $exception->getMessage(),
106 $rbacsystem = $DIC[
'rbacsystem'];
107 $tree = $DIC[
'tree'];
108 $ilLog = $DIC[
'ilLog'];
109 $ilAccess = $DIC[
'ilAccess'];
112 return $this->
raiseError(
'Cannot perform update since file has been deleted.',
'CLIENT_OBJECT_DELETED');
117 'No File found for id: ' . $requested_ref_id,
122 $permission_ok =
false;
124 if ($ilAccess->checkAccess(
'write',
'', $ref_id)) {
125 $permission_ok =
true;
130 if (!$permission_ok) {
132 'No permission to edit the File with id: ' . $requested_ref_id,
140 if (!is_object($file) || $file->getType() !==
"file") {
142 'Wrong obj id or type for File with id ' . $requested_ref_id,
150 if ($fileXMLParser->start()) {
151 $fileXMLParser->updateFileContents();
153 return $file->update();
157 $exception->getMessage(),
167 public function getFileXML(
string $sid,
int $requested_ref_id,
int $attachFileContentsMode)
176 if (!($requested_ref_id > 0)) {
178 'No ref id given. Aborting!',
185 $rbacsystem = $DIC[
'rbacsystem'];
186 $tree = $DIC[
'tree'];
187 $ilLog = $DIC[
'ilLog'];
188 $ilAccess = $DIC[
'ilAccess'];
192 'No File found for id: ' . $requested_ref_id,
198 return $this->
raiseError(
"Object with ID $requested_ref_id has been deleted.",
'Client');
201 $permission_ok =
false;
203 if ($ilAccess->checkAccess(
'read',
'', $ref_id)) {
204 $permission_ok =
true;
209 if (!$permission_ok) {
211 'No permission to edit the object with id: ' . $requested_ref_id,
219 if (!is_object($file) || $file->getType() !==
"file") {
221 'Wrong obj id or type for File with id ' . $requested_ref_id,
228 $xmlWriter->setFile($file);
229 $xmlWriter->setAttachFileContents($attachFileContentsMode);
232 return $xmlWriter->getXML();
static _getAllReferences(int $id)
get all reference ids for object ID
raiseError(string $a_message, $a_code)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkSession(string $sid)
static _isInTrash(int $ref_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
static _lookupObjectId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
addFile(string $sid, int $target_id, string $file_xml)