$(function() { $(".scrollbar-light").scrollbar(); expandColumnToogle("#hide_bar_template", { selector: "#template_col", width: 3 }, { selector: "#doc_form", width: 9 }); CKEDITOR.on("instanceReady", function (e) { showTemplates(); }); }); '; $this_section = SECTION_COURSES; $lib_path = api_get_path(LIBRARY_PATH); $course_info = api_get_course_info(); $group_id = api_get_group_id(); $sessionId = api_get_session_id(); $dir = '/'; $currentDirPath = isset($_GET['curdirpath']) ? Security::remove_XSS($_GET['curdirpath']) : null; $readonly = false; if (isset($_GET['id'])) { $document_data = DocumentManager::get_document_data_by_id( $_GET['id'], api_get_course_id(), true, 0 ); if (!empty($sessionId) && empty($document_data)) { $document_data = DocumentManager::get_document_data_by_id( $_REQUEST['id'], api_get_course_id(), true, $sessionId ); } $document_id = $document_data['id']; $file = $document_data['path']; $parent_id = DocumentManager::get_document_id($course_info, dirname($file)); $dir = dirname($document_data['path']); $dir_original = $dir; $doc = basename($file); $readonly = $document_data['readonly']; $file_type = $document_data['filetype']; } if (empty($document_data)) { api_not_allowed(true); } if (api_is_in_group()) { $group_properties = GroupManager::get_group_properties($group_id); } $is_certificate_mode = DocumentManager::is_certificate_mode($dir); $em = Database::getManager(); $documentRepository = Container::getDocumentRepository(); /** @var CDocument $document */ $document = $documentRepository->find($document_data['iid']); //Call from $call_from_tool = api_get_origin(); $slide_id = isset($_GET['origin_opt']) ? Security::remove_XSS($_GET['origin_opt']) : null; $file_name = $doc; $group_document = false; $_course = api_get_course_info(); $sessionId = api_get_session_id(); $user_id = api_get_user_id(); $doc_tree = explode('/', $file); $count_dir = count($doc_tree) - 2; // "2" because at the begin and end there are 2 "/" // Level correction for group documents. if (!empty($group_properties['directory'])) { $count_dir = $count_dir > 0 ? $count_dir - 1 : 0; } $relative_url = ''; for ($i = 0; $i < ($count_dir); $i++) { $relative_url .= '../'; } $editorConfig = [ 'ToolbarSet' => (api_is_allowed_to_edit(null, true) ? 'Documents' : 'DocumentsStudent'), 'Width' => '100%', 'Height' => '400', 'cols-size' => [2, 10, 0], 'FullPage' => true, 'InDocument' => true, 'CreateDocumentDir' => $relative_url, 'CreateDocumentWebDir' => (empty($group_properties['directory'])) ? api_get_path(WEB_COURSE_PATH).$_course['path'].'/document/' : api_get_path(WEB_COURSE_PATH).api_get_course_path().'/document'.$group_properties['directory'].'/', 'BaseHref' => api_get_path(WEB_COURSE_PATH).$_course['path'].'/document'.$dir, ]; if ($is_certificate_mode) { $editorConfig['CreateDocumentDir'] = api_get_path(WEB_COURSE_PATH).$_course['path'].'/document/'; $editorConfig['CreateDocumentWebDir'] = api_get_path(WEB_COURSE_PATH).$_course['path'].'/document/'; $editorConfig['BaseHref'] = api_get_path(WEB_COURSE_PATH).$_course['path'].'/document'.$dir; } $is_allowed_to_edit = api_is_allowed_to_edit(null, true) || $groupRights || DocumentManager::is_my_shared_folder(api_get_user_id(), $dir, $sessionId); $dbTable = Database::get_course_table(TABLE_DOCUMENT); $course_id = api_get_course_int_id(); if (!empty($group_id)) { $interbreadcrumb[] = [ 'url' => api_get_path(WEB_CODE_PATH).'group/group_space.php?'.api_get_cidreq(), 'name' => get_lang('Group area'), ]; $group_document = true; } if (!$is_certificate_mode) { $interbreadcrumb[] = [ "url" => api_get_path(WEB_CODE_PATH)."document/document.php?curdirpath=".urlencode($currentDirPath).'&'.api_get_cidreq(), "name" => get_lang('Documents'), ]; } else { $interbreadcrumb[] = [ 'url' => Category::getUrl(), 'name' => get_lang('Assessments'), ]; } if (empty($document_data['parents'])) { $interbreadcrumb[] = ['url' => '#', 'name' => $document_data['title']]; } else { foreach ($document_data['parents'] as $document_sub_data) { if ($document_data['title'] == $document_sub_data['title']) { continue; } $interbreadcrumb[] = ['url' => $document_sub_data['document_url'], 'name' => $document_sub_data['title']]; } } if (!($is_allowed_to_edit || $groupRights || DocumentManager::is_my_shared_folder($user_id, $dir, api_get_session_id())) ) { api_not_allowed(true); } Event::event_access_tool(TOOL_DOCUMENT); //TODO:check the below code and his funcionality if (!api_is_allowed_to_edit()) { if (DocumentManager::check_readonly($course_info, $user_id, $file)) { api_not_allowed(); } } /*$document_info = api_get_item_property_info( api_get_course_int_id(), 'document', $document_id, 0 ); // Try to find this document in the session if (!empty($sessionId)) { $document_info = api_get_item_property_info( api_get_course_int_id(), 'document', $document_id, $sessionId ); } if (api_is_in_group()) { $group_properties = GroupManager::get_group_properties($group_id); GroupManager::allowUploadEdit( api_get_user_id(), api_get_course_int_id(), $group_properties, $document_info, true ); }*/ /* MAIN TOOL CODE */ /* Code to change the comment */ if (isset($_POST['comment'])) { // Fixing the path if it is wrong $comment = trim($_POST['comment']); $title = trim($_POST['title']); // Just in case see BT#3525 if (empty($title)) { $title = $document_data['title']; } if (empty($title)) { $title = get_document_title($_POST['filename']); } if (!empty($document_id)) { $linkExists = false; if ($file_type == 'link') { $linkExists = DocumentManager::cloudLinkExists($course_info, $file, $_POST['comment']); } if (!$linkExists || $linkExists == $document_id) { $document ->setTitle($title) ->setComment($comment) ; $em->persist($document); $em->flush(); if ($file_type != 'link') { Display::addFlash(Display::return_message(get_lang('Update successful'))); } else { Display::addFlash(Display::return_message(get_lang('Cloud file link updated.'))); } } else { Display::addFlash(Display::return_message(get_lang('This URL already exists'), 'warning')); } } } if ($is_allowed_to_edit) { if (isset($_POST['formSent']) && $_POST['formSent'] == 1 && !empty($document_id)) { $content = isset($_POST['content']) ? trim(str_replace(["\r", "\n"], '', stripslashes($_POST['content']))) : null; $content = Security::remove_XSS($content, COURSEMANAGERLOWSECURITY); if ($dir == '/') { $dir = ''; } $read_only_flag = isset($_POST['readonly']) ? $_POST['readonly'] : null; $read_only_flag = empty($read_only_flag) ? 0 : 1; if ($read_only_flag == 0 && !empty($content)) { $documentRepository->updateDocumentContent($document, $content); } header('Location: document.php?id='.$document_data['parent_id'].'&'.api_get_cidreq().($is_certificate_mode ? '&curdirpath=/certificates&selectcat=1' : '')); exit; } } // Replace relative paths by absolute web paths (e.g. './' => 'http://www.chamilo.org/courses/ABC/document/') $content = null; $extension = null; $filename = null; $path_info = pathinfo($document_data['path']); $filename = $path_info['filename']; $extension = $path_info['extension'] ?? ''; $em = Database::getManager(); /** @var \Chamilo\CoreBundle\Entity\Resource\ResourceNode $node */ //$node = $em->getRepository('ChamiloCoreBundle:Resource\ResourceNode')->find($document_data['resource_node_id']); $node = $document->getResourceNode(); if (in_array($extension, ['html', 'htm'])) { $file = $document->getResourceNode()->getResourceFile(); if ($file) { $content = $documentRepository->getDocumentContent($document_data['id']); } } // Display the header $nameTools = get_lang('Edit').': '.Security::remove_XSS($document_data['title']); Display::display_header($nameTools, 'Doc'); $owner_id = $node->getCreator()->getId(); $last_edit_date = $node->getUpdatedAt(); $createdDate = $node->getCreatedAt(); $groupInfo = GroupManager::get_group_properties(api_get_group_id()); if ($owner_id == api_get_user_id() || api_is_platform_admin() || $is_allowed_to_edit || GroupManager:: is_user_in_group( api_get_user_id(), $groupInfo ) ) { $action = api_get_self().'?id='.$document_data['id'].'&'.api_get_cidreq(); if ($is_certificate_mode) { $action .= '&curdirpath=/certificates&selectcat=1'; } $form = new FormValidator( 'formEdit', 'post', $action, null, ['class' => 'form-vertical'] ); // Form title $form->addHeader($nameTools); $key_label_title = $file_type != 'link' ? 'Title' : 'LinkName'; $form->addText( 'title', get_lang($key_label_title), true, ['cols-size' => [2, 10, 0], 'autofocus'] ); $defaults['title'] = $document_data['title']; $read_only_flag = isset($_POST['readonly']) ? $_POST['readonly'] : null; // Desactivation of IE proprietary commenting tags inside the text before loading it on the online editor. // This fix has been proposed by Hubert Borderiou, see Bug #573, http://support.chamilo.org/issues/573 $defaults['content'] = str_replace('