Some fixes in the document tool due the new single database see #3910

skala
Julio Montoya 13 years ago
parent e2cb70b266
commit e9e9aa14d7
  1. 54
      main/admin/settings.php
  2. 7
      main/document/document.php
  3. 138
      main/document/edit_document.php
  4. 10
      main/inc/lib/document.lib.php
  5. 10
      main/inc/lib/fckeditor/editor/plugins/ImageManager/Classes/ImageManager.php
  6. 3
      main/inc/lib/main_api.lib.php

@ -39,6 +39,14 @@ $_SESSION['this_section'] = $this_section;
// Access restrictions.
api_protect_admin_script();
// Settings to avoid
$settings_to_avoid = array(
'gradebook_enable' => 'false',
'use_document_title' => 'true',
'example_material_course_creation' => 'true' // ON by default - now we have this option when we create a course
);
// Submit stylesheets.
if (isset($_POST['submit_stylesheets'])) {
$message = store_stylesheets();
@ -88,7 +96,6 @@ if (isset($_GET['action']) && $_GET['action'] == 'delete_grading') {
api_delete_setting_option($id);
}
// Build the form.
if (!empty($_GET['category']) && !in_array($_GET['category'], array('Plugins', 'stylesheets', 'Search'))) {
$form = new FormValidator('settings', 'post', 'settings.php?category='.$_GET['category']);
@ -145,17 +152,6 @@ if (!empty($_GET['category']) && !in_array($_GET['category'], array('Plugins', '
}
}
//Settings to avoid
// Settings to avoid
$settings_to_avoid = array(
'gradebook_enable', //
'use_document_title', // ON by default
'example_material_course_creation', // ON by default - now we have this option when we create a course
);
$default_values = array();
foreach ($settings as $row) {
if (in_array($row['variable'], $settings_to_avoid)) { continue; }
@ -490,7 +486,7 @@ if (!empty($_GET['category']) && !in_array($_GET['category'], array('Plugins', '
if ($form->validate()) {
$values = $form->exportValues();
$pdf_export_watermark_path = $_FILES['pdf_export_watermark_path'];
if (isset($pdf_export_watermark_path) && !empty($pdf_export_watermark_path['name'])) {
$pdf_export_watermark_path_result = PDF::upload_watermark($pdf_export_watermark_path['name'], $pdf_export_watermark_path['tmp_name']);
if ($pdf_export_watermark_path_result) {
@ -501,21 +497,20 @@ if (!empty($_GET['category']) && !in_array($_GET['category'], array('Plugins', '
unset($update_values['pdf_export_watermark_path']);
}
// Set true for allow_message_tool variable if social tool is actived.
// Set true for allow_message_tool variable if social tool is actived
$values['dropbox_max_filesize'] = $values['dropbox_max_filesize']*1024*1024;
$values['dropbox_max_filesize'] = $values['dropbox_max_filesize']*1024*1024;
$values['message_max_upload_filesize'] = $values['message_max_upload_filesize']*1024*1024;
if ($values['allow_social_tool'] == 'true') {
$values['allow_message_tool'] = 'true';
}
// quick patch to avoid gradebook_enable's value to be blanked
/*
if ($my_category == 'Gradebook') {
$gb = 'false';
$gb = api_get_setting('gradebook_enable');
}
}*/
// The first step is to set all the variables that have type=checkbox of the category
// to false as the checkbox that is unchecked is not in the $_POST data and can
@ -525,14 +520,21 @@ if (!empty($_GET['category']) && !in_array($_GET['category'], array('Plugins', '
$r = api_set_settings_category($my_category, 'false', $_configuration['access_url'], array('checkbox', 'radio'));
// quick patch to avoid gradebook_enable's value to be blanked
if ($my_category == 'Gradebook') {
api_set_setting('gradebook_enable', $gb, null, $my_category, $_configuration['access_url']);
//api_set_setting('gradebook_enable', $gb, null, $my_category, $_configuration['access_url']);
}
//$sql = "UPDATE $table_settings_current SET selected_value='false' WHERE category='$my_category' AND type='checkbox'";
//$result = Database::query($sql);
foreach($settings_to_avoid as $key => $value) {
api_set_setting($key, $value, null, null, $_configuration['access_url']);
}
// Save the settings.
$keys = array();
//$gradebook_score_display_custom_values = array();
foreach ($values as $key => $value) {
foreach ($values as $key => $value) {
if (in_array($key, $settings_to_avoid)) { continue; }
// Treat gradebook values in separate function.
//if (strpos($key, 'gradebook_score_display_custom_values') === false) {
if (!is_array($value)) {
@ -603,7 +605,7 @@ if (!empty($_GET['category']) && !in_array($_GET['category'], array('Plugins', '
$keys[] = $key;
break;
}
}
}
foreach ($value as $subkey => $subvalue) {
$result = api_set_setting($key, 'true', $subkey, null, $_configuration['access_url']);
}
@ -615,11 +617,11 @@ if (!empty($_GET['category']) && !in_array($_GET['category'], array('Plugins', '
$user_id = api_get_user_id();
$category = $_GET['category'];
event_system(LOG_CONFIGURATION_SETTINGS_CHANGE, LOG_CONFIGURATION_SETTINGS_CATEGORY, $category, api_get_utc_datetime(), $user_id);
// Add event configuration settings variable to the system log.
if (is_array($keys) && count($keys) > 0) {
foreach ($keys as $variable) {
if (in_array($key, $settings_to_avoid)) { continue; }
event_system(LOG_CONFIGURATION_SETTINGS_CHANGE, LOG_CONFIGURATION_SETTINGS_VARIABLE, $variable, api_get_utc_datetime(), $user_id);
}
}

@ -57,6 +57,11 @@ unset($_SESSION['paint_dir']);
DocumentManager::create_directory_certificate_in_course(api_get_course_id());
$course_info = api_get_course_info();
if (empty($course_info)) {
api_not_allowed();
}
$course_dir = $course_info['path'].'/document';
$sys_course_path = api_get_path(SYS_COURSE_PATH);
$base_work_dir = $sys_course_path.$course_dir;
@ -944,7 +949,7 @@ if (isset($docs_and_folders) && is_array($docs_and_folders)) {
// Size (or total size of a directory)
$size = $document_data['filetype'] == 'folder' ? get_total_folder_size($document_data['path'], $is_allowed_to_edit) : $document_data['size'];
// Get the title or the basename depending on what we're using
// Get the title or the basename depending on what we're using
if ($use_document_title == 'true' && $document_data['title'] != '') {
$document_name = $document_data['title'];
} else {

@ -87,7 +87,7 @@ if (api_is_in_group()) {
}
if (isset($_GET['id'])) {
$document_data = DocumentManager::get_document_data_by_id($_GET['id'], api_get_course_id());
$document_data = DocumentManager::get_document_data_by_id($_GET['id'], api_get_course_id(), true);
$document_id = $document_data['id'];
$file = $document_data['path'];
$parent_id = DocumentManager::get_document_id(api_get_course_info(), dirname($file));
@ -96,12 +96,12 @@ if (isset($_GET['id'])) {
$doc = basename($file);
$my_cur_dir_path = Security::remove_XSS($_GET['curdirpath']);
$readonly = $document_data['readonly'];
}
if (empty($document_data)) {
api_not_allowed();
}
}
/*
//I'm in the certification module?
@ -153,31 +153,6 @@ $noPHP_SELF = true;
/* Other initialization code */
/* Please, do not modify this dirname formatting */
if (strstr($dir, '..')) {
$dir = '/';
}
if ($dir[0] == '.') {
$dir = substr($dir, 1);
}
if ($dir[0] != '/') {
$dir = '/'.$dir;
}
if ($dir[strlen($dir) - 1] != '/') {
$dir .= '/';
}
$filepath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document'.$dir;
if (!is_dir($filepath)) {
$filepath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document/';
$dir = '/';
}
$dbTable = Database::get_course_table(TABLE_DOCUMENT);
$course_id = api_get_course_int_id();
@ -193,6 +168,19 @@ if (!$is_certificate_mode)
else
$interbreadcrumb[]= array ( 'url' => '../gradebook/'.$_SESSION['gradebook_dest'], 'name' => get_lang('Gradebook'));
// Interbreadcrumb for the current directory root path
if (empty($document_data['parents'])) {
$interbreadcrumb[] = array('url' => '#', 'name' => $document_data['title']);
} else {
foreach($document_data['parents'] as $document_sub_data) {
if ($document_data['title'] == $document_sub_data['title']) {
continue;
}
$interbreadcrumb[] = array('url' => $document_sub_data['document_url'], 'name' => $document_sub_data['title']);
}
}
if (!is_allowed_to_edit) {
api_not_allowed(true);
}
@ -208,9 +196,7 @@ if (!is_allowed_to_edit()) {
/* MAIN TOOL CODE */
/* Code to change the comment
Step 2. React on POST data
(Step 1 see below) */
/* Code to change the comment */
if (isset($_POST['comment'])) {
// Fixing the path if it is wrong
@ -222,31 +208,16 @@ if (isset($_POST['comment'])) {
$info_message = get_lang('fileModified');
}
/* Code to change the name
Step 2. react on POST data - change the name
(Step 1 see below) */
/* Code to rename the file name */
//var_dump($_POST['renameTo']);
if (isset($_POST['renameTo'])) {
$info_message = change_name($baseWorkDir, $_GET['sourceFile'], $_POST['renameTo'], $dir, $doc);
}
/* Code to change the comment
Step 1. Create dialog box. */
/** TODO: Check whether this code is still used **/
/* Search the old comment */ // RH: metadata: added 'id,'
$result = Database::query("SELECT id, comment, title FROM $dbTable WHERE c_id = $course_id AND id = ".$document_id);
while ($row = Database::fetch_array($result, 'ASSOC')) {
$oldComment = $row['comment'];
$oldTitle = $row['title'];
$docId = $row['id']; // RH: metadata
$info_message = change_name($baseWorkDir, $_GET['sourceFile'], $_POST['renameTo'], $dir, $doc);
}
/* WYSIWYG HTML EDITOR - Program Logic */
if ($is_allowed_to_edit) {
if ($_POST['formSent'] == 1) {
if ($_POST['formSent'] == 1) {
if (isset($_POST['renameTo'])) {
$_POST['filename'] = disable_dangerous_file($_POST['renameTo']);
$extension = explode('.', $_POST['filename']);
@ -262,11 +233,7 @@ if ($is_allowed_to_edit) {
if (!strstr($content, '/css/frames.css')) {
$content=str_replace('</title></head>', '</title><link rel="stylesheet" href="../css/frames.css" type="text/css" /></head>', $content);
}
/*
if (!ctype_alnum($_POST['extension'])) {
header('Location: document.php?msg=WeirdExtensionDeniedInPost');
exit ();
}*/
$extension = $_POST['extension'];
$file = $dir.$filename.'.'.$extension;
$read_only_flag = $_POST['readonly'];
@ -277,16 +244,13 @@ if ($is_allowed_to_edit) {
if (empty($filename)) {
$msgError = get_lang('NoFileName');
} else {
if ($document_data['filetype'] == 'file') {
$file_size = filesize($filepath.$filename.'.'.$extension);
} else {
$file_size = filesize($filepath.$filename);
}
} else {
$file_size = filesize($document_data['absolute_path']);
if ($read_only_flag == 0) {
if (!empty($content)) {
if ($fp = @fopen($filepath.$filename.'.'.$extension, 'w')) {
$content = text_filter($content);
if ($fp = @fopen($document_data['absolute_path'], 'w')) {
// For flv player, change absolute paht temporarely to prevent from erasing it in the following lines
$content = str_replace(array('flv=h', 'flv=/'), array('flv=h|', 'flv=/|'), $content);
@ -300,7 +264,10 @@ if ($is_allowed_to_edit) {
fputs($fp, $content);
fclose($fp);
if (!is_dir($filepath.'css')) {
$filepath = $document_data['absolute_parent_path'];
if (!is_dir($filepath.'css')) {
mkdir($filepath.'css', api_get_permissions_for_new_directories());
$doc_id = add_document($_course, $dir.'css', 'folder', 0, 'css');
api_item_property_update($_course, TOOL_DOCUMENT, $doc_id, 'FolderCreated', api_get_user_id(), null, null, null, null, $current_session_id);
@ -328,9 +295,8 @@ if ($is_allowed_to_edit) {
//header('Location: document.php?id='.urlencode($dir));
$my_id = DocumentManager::get_document_id($_course, $dir_modified);
header('Location: document.php?id='.$my_id);
exit ();
header('Location: document.php?id='.$my_id);
exit;
} else {
//$msgError = get_lang('Impossible');
}
@ -352,25 +318,24 @@ if ($is_allowed_to_edit) {
}
// Replace relative paths by absolute web paths (e.g. './' => 'http://www.chamilo.org/courses/ABC/document/')
if (file_exists($filepath.$doc)) {
$extension = explode('.', $doc);
$extension = $extension[sizeof($extension) - 1];
$filename = str_replace('.'.$extension, '', $doc);
$extension = strtolower($extension);
if (file_exists($document_data['absolute_path'])) {
$path_info = pathinfo($document_data['absolute_path']);
$filename = $path_info['filename'];
$extension = $path_info['extension'];
if (in_array($extension, array('html', 'htm'))) {
$content = file($filepath.$doc);
$content = file($document_data['absolute_path']);
$content = implode('', $content);
$path_to_append = api_get_path(WEB_COURSE_PATH).$_course['path'].'/document'.$dir;
$content = str_replace('="./', '="'.$path_to_append, $content);
$content = str_replace('mp3player.swf?son=.%2F', 'mp3player.swf?son='.urlencode($path_to_append), $content);
// $content = str_replace('="./', '="'.$path_to_append, $content);
//$content = str_replace('mp3player.swf?son=.%2F', 'mp3player.swf?son='.urlencode($path_to_append), $content);
}
}
/* Display user interface */
// Display the header
$nameTools = get_lang('EditDocument') . ': '.Security::remove_XSS($oldTitle);
$nameTools = get_lang('EditDocument') . ': '.Security::remove_XSS($document_data['title']);
Display::display_header($nameTools, 'Doc');
@ -386,15 +351,8 @@ if (isset($info_message)) {
}
}
// Readonly
$sql = 'SELECT id, readonly FROM '.$dbTable.' WHERE path LIKE BINARY "'.$dir.$doc.'"';
$rs = Database::query($sql);
$readonly = Database::result($rs, 0, 'readonly');
$doc_id = Database::result($rs, 0, 'id');
// Owner
$document_info = api_get_item_property_info(api_get_course_int_id(),'document', $doc_id);
$document_info = api_get_item_property_info(api_get_course_int_id(),'document', $document_id);
$owner_id = $document_info['insert_user_id'];
$last_edit_date = $document_info['lastedit_date'];
@ -416,9 +374,10 @@ if ($owner_id == api_get_user_id() || api_is_platform_admin() || $is_allowed_to_
$form->addElement('hidden', 'origin');
$form->addElement('hidden', 'origin_opt');
if ($use_document_title) {
$form->add_textfield('title', get_lang('Title'));
$defaults['title'] = $oldTitle;
$form->add_textfield('title', get_lang('Title'));
if ($use_document_title) {
$defaults['title'] = $document_data['title'];
} else {
$form->addElement('hidden', 'renameTo');
}
@ -443,7 +402,7 @@ if ($owner_id == api_get_user_id() || api_is_platform_admin() || $is_allowed_to_
}
if (!$group_document && !is_my_shared_folder(api_get_user_id(), $my_cur_dir_path, $current_session_id)) {
$metadata_link = '<a href="../metadata/index.php?eid='.urlencode('Document.'.$docId).'">'.get_lang('AddMetadata').'</a>';
$metadata_link = '<a href="../metadata/index.php?eid='.urlencode('Document.'.$document_data['id']).'">'.get_lang('AddMetadata').'</a>';
//Updated on field
$last_edit_date = api_get_local_time($last_edit_date, null, date_default_timezone_get());
@ -474,7 +433,7 @@ if ($owner_id == api_get_user_id() || api_is_platform_admin() || $is_allowed_to_
$defaults['file_path'] = Security::remove_XSS($_GET['file']);
$defaults['commentPath'] = $file;
$defaults['renameTo'] = $file_name;
$defaults['comment'] = $oldComment;
$defaults['comment'] = $document_data['comment'];
$defaults['origin'] = Security::remove_XSS($_GET['origin']);
$defaults['origin_opt'] = Security::remove_XSS($_GET['origin_opt']);
@ -520,6 +479,7 @@ Display::display_footer();
It returns nothing.
*/
function change_name($base_work_dir, $source_file, $rename_to, $dir, $doc) {
var_dump($source_file, $rename_to);
$file_name_for_change = $base_work_dir.$dir.$source_file;
//api_display_debug_info("call my_rename: params $file_name_for_change, $rename_to");
$rename_to = disable_dangerous_file($rename_to); // Avoid renaming to .htaccess file

@ -1053,6 +1053,14 @@ return 'application/octet-stream';
$row['url'] = api_get_path(WEB_CODE_PATH).'document/showinframes.php?cidReq='.$course_code.'&id='.$id;
$row['document_url'] = api_get_path(WEB_CODE_PATH).'document/document.php?cidReq='.$course_code.'&id='.$id;
$row['absolute_path'] = api_get_path(SYS_COURSE_PATH).$course_info['path'].'/document'.$row['path'];
$pathinfo = pathinfo($row['path']);
$row['absolute_parent_path'] = api_get_path(SYS_COURSE_PATH).$course_info['path'].'/document'.$pathinfo['dirname'].'/';
$row['direct_url'] = $www.$path;
if (dirname($row['path']) == '.') {
@ -2192,7 +2200,7 @@ return 'application/octet-stream';
if (!empty($comment)) {
$params['comment'] = trim($comment);
}
Database::update($table_document, $params, array('id = ?' =>$docid));
Database::update($table_document, $params, array('id = ? AND c_id = ? ' => array($docid, $course_info['real_id'])));
}
// Showing message when sending zip files

@ -117,8 +117,7 @@ class ImageManager
}
$user_id = api_get_user_id();
while (false !== ($entry = $d->read()))
{
while (false !== ($entry = $d->read())) {
//If it is a directory, and it doesn't start with
// a dot, and if is it not the thumbnail directory
if(is_dir($base.$entry)
@ -133,15 +132,14 @@ class ImageManager
$relative = Files::fixPath($path.$entry);
$fullpath = Files::fixPath($base.$entry);
if ($in_group && strpos($fullpath, '_groupdocs') !== false && strpos($fullpath, $group_directory) === false)
{
if ($in_group && strpos($fullpath, '_groupdocs') !== false && strpos($fullpath, $group_directory) === false) {
continue;
}
global $_course;
if (isset($_course['dbName']) && $_course<>'-1') {
if (!empty($_course)) {
$base_dir = substr($fullpath, 0, strpos($fullpath,'/document/')+9); //
$new_dir = substr($fullpath, strlen($base_dir),-1); //
$doc_id = DocumentManager::get_document_id($_course, $new_dir );
$doc_id = DocumentManager::get_document_id($_course, $new_dir);
$visible_status= api_get_item_visibility($_course,TOOL_DOCUMENT,$doc_id);
}

@ -1152,7 +1152,8 @@ function api_get_course_info($course_code = null) {
}
return $_course;
}
global $_course;
global $_course;
if ($_course == '-1') $_course = array();
return $_course;
}

Loading…
Cancel
Save