27 $this->dav_container = $a_dav_container;
28 $this->repo_helper = $a_repo_helper;
29 $this->dav_helper = $a_dav_helper;
41 throw new Forbidden(
"The error info file is virtual and can therefore not be overwritten");
62 return self::PROBLEM_INFO_FILE_NAME;
110 throw new Exception\Forbidden(
"The error info file cannot be renamed");
121 $already_seen_titles = array();
124 $problem_infos = array(
125 self::PROBLEM_DUPLICATE_OBJECTNAME => array(),
126 self::PROBLEM_FORBIDDEN_CHARACTERS => array(),
127 self::PROBLEM_INFO_NAME_DUPLICATE =>
false 131 foreach ($this->repo_helper->getChildrenOfRefId($this->dav_container->getRefId()) as $ref_id) {
132 $type = $this->repo_helper->getObjectTypeFromRefId($ref_id);
133 if ($this->dav_helper->isDAVableObjType(
$type) && $this->repo_helper->checkAccess(
'read', $ref_id)) {
134 $title = $this->repo_helper->getObjectTitleFromRefId($ref_id);
135 if (!$this->dav_helper->hasInvalidPrefixInTitle($title)) {
137 if ($title == self::PROBLEM_INFO_FILE_NAME) {
138 $problem_infos[self::PROBLEM_INFO_NAME_DUPLICATE] =
true;
141 elseif ($this->dav_helper->hasTitleForbiddenChars($title)) {
142 $problem_infos[self::PROBLEM_FORBIDDEN_CHARACTERS][] = $title;
145 elseif (in_array($title, $already_seen_titles)) {
146 $problem_infos[self::PROBLEM_DUPLICATE_OBJECTNAME][] = $title;
148 $already_seen_titles[] = $title;
154 return $problem_infos;
167 $lng = $DIC->language();
168 $message_string =
"";
171 if ($problem_infos[self::PROBLEM_INFO_NAME_DUPLICATE]) {
172 $message_string .=
"# " .
$lng->txt(
'webdav_problem_info_duplicate') .
"\n\n";
176 $duplicates_list = $problem_infos[self::PROBLEM_DUPLICATE_OBJECTNAME];
177 if (count($duplicates_list) > 0) {
178 $message_string .=
"# " .
$lng->txt(
'webdav_duplicate_detected_title') .
"\n";
179 foreach ($duplicates_list as $duplicate_title) {
180 $message_string .= $duplicate_title .
"\n";
182 $message_string .=
"\n";
186 $forbidden_character_titles_list = $problem_infos[self::PROBLEM_FORBIDDEN_CHARACTERS];
187 if (count($forbidden_character_titles_list) > 0) {
188 $message_string .=
"# " .
$lng->txt(
'webdav_forbidden_chars_title') .
"\n";
189 foreach ($forbidden_character_titles_list as $forbidden_character_title) {
190 $message_string .= $forbidden_character_title .
"\n";
192 $message_string .=
"\n";
196 if (strlen($message_string) == 0) {
197 $message_string =
$lng->txt(
'webdav_problem_free_container');
200 return $message_string;
208 public function delete()
210 throw new \Sabre\DAV\Exception\Forbidden(
"It is not possible to delete this file since it is just virtual.");
getContentType()
Returns the mime-type for a file which is 'txt/plain'.
getName()
Returns the title of the problem info file.
analyseObjectsOfDAVContainer()
Analyses objects of the in the constructor given DAV container.
Class ilWebDAVRepositoryHelper.
createMessageStringFromProblemInfoArray(array $problem_infos)
Creates a message string out of the found problems in the DAV container.
getSize()
Returns the size of the node, in bytes.
put($data)
Since this is a virtual file, put is not possible.
Class ilWebDAVObjDAVHelper.
__construct(ilObjContainerDAV $a_dav_container, ilWebDAVRepositoryHelper $a_repo_helper, ilWebDAVObjDAVHelper $a_dav_helper)
getLastModified()
Returns the last modification time, as a unix timestamp.
const PROBLEM_FORBIDDEN_CHARACTERS
const PROBLEM_DUPLICATE_OBJECTNAME
getETag()
Returns the ETag for a file.
const PROBLEM_INFO_FILE_NAME
const PROBLEM_INFO_NAME_DUPLICATE