You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							338 lines
						
					
					
						
							12 KiB
						
					
					
				
			
		
		
	
	
							338 lines
						
					
					
						
							12 KiB
						
					
					
				<?php
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
 | 
						|
/**
 | 
						|
 * Main script for the documents tool
 | 
						|
 *
 | 
						|
 * This script allows the user to manage files and directories on a remote http server.
 | 
						|
 *
 | 
						|
 * The user can : - navigate through files and directories.
 | 
						|
 *                 - upload a file
 | 
						|
 *                 - delete, copy a file or a directory
 | 
						|
 *                 - edit properties & content (name, comments, html content)
 | 
						|
 *
 | 
						|
 * The script is organised in four sections.
 | 
						|
 *
 | 
						|
 * 1) Execute the command called by the user
 | 
						|
 *                Note: somme commands of this section are organised in two steps.
 | 
						|
 *                The script always begins with the second step,
 | 
						|
 *                so it allows to return more easily to the first step.
 | 
						|
 *
 | 
						|
 *                Note (March 2004) some editing functions (renaming, commenting)
 | 
						|
 *                are moved to a separate page, edit_document.php. This is also
 | 
						|
 *                where xml and other stuff should be added.
 | 
						|
 *
 | 
						|
 * 2) Define the directory to display
 | 
						|
 *
 | 
						|
 * 3) Read files and directories from the directory defined in part 2
 | 
						|
 * 4) Display all of that on an HTML page
 | 
						|
 *
 | 
						|
 * @todo eliminate code duplication between
 | 
						|
 * document/document.php, scormdocument.php
 | 
						|
 *
 | 
						|
 * @package chamilo.document
 | 
						|
 */
 | 
						|
 | 
						|
// Name of the language file that needs to be included
 | 
						|
$language_file = array('document','gradebook');
 | 
						|
 | 
						|
// Including the global initialization file
 | 
						|
require_once '../inc/global.inc.php';
 | 
						|
 | 
						|
// Including additional libraries
 | 
						|
require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
 | 
						|
 | 
						|
// Adding extra javascript to the form
 | 
						|
$htmlHeadXtra[] = api_get_jquery_libraries_js(array('jquery-ui', 'jquery-upload'));
 | 
						|
$htmlHeadXtra[] = '<script>
 | 
						|
 | 
						|
function check_unzip() {
 | 
						|
    if (document.upload.unzip.checked){
 | 
						|
        document.upload.if_exists[0].disabled=true;
 | 
						|
        document.upload.if_exists[1].checked=true;
 | 
						|
        document.upload.if_exists[2].disabled=true;
 | 
						|
    } else {
 | 
						|
        document.upload.if_exists[0].checked=true;
 | 
						|
        document.upload.if_exists[0].disabled=false;
 | 
						|
        document.upload.if_exists[2].disabled=false;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
function advanced_parameters() {
 | 
						|
    if (document.getElementById(\'options\').style.display == \'none\') {
 | 
						|
        document.getElementById(\'options\').style.display = \'block\';
 | 
						|
        document.getElementById(\'img_plus_and_minus\').innerHTML=\' <img style="vertical-align:middle;" src="../img/div_hide.gif" alt="" /> '.get_lang('AdvancedParameters').'\';
 | 
						|
    } else {
 | 
						|
        document.getElementById(\'options\').style.display = \'none\';
 | 
						|
        document.getElementById(\'img_plus_and_minus\').innerHTML=\' <img style="vertical-align:middle;" src="../img/div_show.gif" alt="" /> '.get_lang('AdvancedParameters').'\';
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
function setFocus(){
 | 
						|
    $("#title_file").focus();
 | 
						|
}
 | 
						|
</script>';
 | 
						|
 | 
						|
$htmlHeadXtra[] = "
 | 
						|
<script>
 | 
						|
$(function () {
 | 
						|
    setFocus();
 | 
						|
    $('#file_upload').fileUploadUI({
 | 
						|
        uploadTable:   $('.files'),
 | 
						|
        downloadTable: $('.files'),
 | 
						|
        buildUploadRow: function (files, index) {
 | 
						|
            $('.files').show();
 | 
						|
            return $('<tr><td>' + files[index].name + '<\/td>' +
 | 
						|
                    '<td class=\"file_upload_progress\"><div><\/div><\/td>' +
 | 
						|
                    '<td class=\"file_upload_cancel\">' +
 | 
						|
                    '<button class=\"ui-state-default ui-corner-all\" title=\"".get_lang('Cancel')."\">' + '<span class=\"ui-icon ui-icon-cancel\">".get_lang('Cancel')."<\/span>' +'<\/button>'+
 | 
						|
                    '<\/td><\/tr>');
 | 
						|
        },
 | 
						|
        buildDownloadRow: function (file) {
 | 
						|
            return $('<tr><td>' + file.name + '<\/td> <td> ' + file.size + ' <\/td>  <td> ' + file.result + ' <\/td> <\/tr>');
 | 
						|
        }
 | 
						|
    });
 | 
						|
    $('#tabs').tabs();
 | 
						|
});
 | 
						|
</script>";
 | 
						|
 | 
						|
// Variables
 | 
						|
 | 
						|
$is_allowed_to_edit = api_is_allowed_to_edit(null, true);
 | 
						|
$_course = api_get_course_info();
 | 
						|
$groupId = api_get_group_id();
 | 
						|
$courseDir = $_course['path'].'/document';
 | 
						|
$sys_course_path = api_get_path(SYS_COURSE_PATH);
 | 
						|
$base_work_dir = $sys_course_path.$courseDir;
 | 
						|
$sessionId = api_get_session_id();
 | 
						|
$selectcat = isset($_GET['selectcat']) ? Security::remove_XSS($_GET['selectcat']) : null;
 | 
						|
 | 
						|
$document_data = DocumentManager::get_document_data_by_id(
 | 
						|
    $_REQUEST['id'],
 | 
						|
    api_get_course_id(),
 | 
						|
    true,
 | 
						|
    $sessionId
 | 
						|
);
 | 
						|
 | 
						|
if ($sessionId != 0 && !$document_data) {
 | 
						|
    $document_data = DocumentManager::get_document_data_by_id(
 | 
						|
        $_REQUEST['id'],
 | 
						|
        api_get_course_id(),
 | 
						|
        true,
 | 
						|
        0
 | 
						|
    );
 | 
						|
}
 | 
						|
 | 
						|
if (empty($document_data)) {
 | 
						|
    $document_id  = $parent_id =  0;
 | 
						|
    $path = '/';
 | 
						|
} else {
 | 
						|
    $document_id = $document_data['id'];
 | 
						|
    $path = $document_data['path'];
 | 
						|
    $parent_id = DocumentManager::get_document_id(
 | 
						|
        api_get_course_info(),
 | 
						|
        dirname($path)
 | 
						|
    );
 | 
						|
}
 | 
						|
$group_properties = array();
 | 
						|
 | 
						|
// This needs cleaning!
 | 
						|
if (!empty($groupId)) {
 | 
						|
    // If the group id is set, check if the user has the right to be here
 | 
						|
    // Get group info
 | 
						|
    $group_properties = GroupManager::get_group_properties($groupId);
 | 
						|
 | 
						|
    // Only courseadmin or group members allowed
 | 
						|
    if ($is_allowed_to_edit || GroupManager::is_user_in_group(api_get_user_id(), $groupId)) {
 | 
						|
        $interbreadcrumb[] = array('url' => '../group/group_space.php?'.api_get_cidreq(), 'name' => get_lang('GroupSpace'));
 | 
						|
    } else {
 | 
						|
        api_not_allowed(true);
 | 
						|
    }
 | 
						|
} elseif ($is_allowed_to_edit ||
 | 
						|
    DocumentManager::is_my_shared_folder(api_get_user_id(), $path, api_get_session_id())) {
 | 
						|
 | 
						|
} else {
 | 
						|
    // No course admin and no group member...
 | 
						|
    api_not_allowed(true);
 | 
						|
}
 | 
						|
 | 
						|
// Group docs can only be uploaded in the group directory
 | 
						|
if ($groupId != 0 && $path == '/') {
 | 
						|
    $path = $group_properties['directory'];
 | 
						|
}
 | 
						|
 | 
						|
// I'm in the certification module?
 | 
						|
$is_certificate_mode = false;
 | 
						|
$is_certificate_array = explode('/', $path);
 | 
						|
array_shift($is_certificate_array);
 | 
						|
if ($is_certificate_array[0] == 'certificates') {
 | 
						|
    $is_certificate_mode = true;
 | 
						|
}
 | 
						|
 | 
						|
// Title of the tool
 | 
						|
$add_group_to_title = null;
 | 
						|
if ($groupId != 0) {
 | 
						|
    // Add group name after for group documents
 | 
						|
    $add_group_to_title = ' ('.$group_properties['name'].')';
 | 
						|
}
 | 
						|
if (isset($_REQUEST['certificate'])) {
 | 
						|
    $nameTools = get_lang('UploadCertificate').$add_group_to_title;
 | 
						|
} else {
 | 
						|
    $nameTools = get_lang('UplUploadDocument').$add_group_to_title;
 | 
						|
}
 | 
						|
 | 
						|
// Breadcrumbs
 | 
						|
if ($is_certificate_mode) {
 | 
						|
    $interbreadcrumb[] = array('url' => '../gradebook/'.$_SESSION['gradebook_dest'], 'name' => get_lang('Gradebook'));
 | 
						|
} else {
 | 
						|
    $interbreadcrumb[] = array('url' => './document.php?id='.$document_id.'&'.api_get_cidreq(), 'name'=> get_lang('Documents'));
 | 
						|
}
 | 
						|
 | 
						|
// 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) {
 | 
						|
        $interbreadcrumb[] = array('url' => $document_sub_data['document_url'], 'name' => $document_sub_data['title']);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
$this_section = SECTION_COURSES;
 | 
						|
 | 
						|
// Display the header
 | 
						|
Display::display_header($nameTools, 'Doc');
 | 
						|
 | 
						|
/*    Here we do all the work */
 | 
						|
 | 
						|
$unzip = isset($_POST['unzip']) ? $_POST['unzip'] : null;
 | 
						|
$index = isset($_POST['index_document']) ? $_POST['index_document'] : null;
 | 
						|
// User has submitted a file
 | 
						|
 | 
						|
if (!empty($_FILES)) {
 | 
						|
    DocumentManager::upload_document(
 | 
						|
        $_FILES,
 | 
						|
        $_POST['curdirpath'],
 | 
						|
        $_POST['title'],
 | 
						|
        $_POST['comment'],
 | 
						|
        $unzip,
 | 
						|
        $_POST['if_exists'],
 | 
						|
        $index,
 | 
						|
        true
 | 
						|
    );
 | 
						|
}
 | 
						|
 | 
						|
// Actions
 | 
						|
echo '<div class="actions">';
 | 
						|
// Link back to the documents overview
 | 
						|
if ($is_certificate_mode) {
 | 
						|
    echo '<a href="document.php?id='.$document_id.'&selectcat=' . $selectcat.'&'.api_get_cidreq().'">'.
 | 
						|
            Display::return_icon('back.png',get_lang('BackTo').' '.get_lang('CertificateOverview'),'',ICON_SIZE_MEDIUM).'</a>';
 | 
						|
} else {
 | 
						|
    echo '<a href="document.php?id='.$document_id.'&'.api_get_cidreq().'">'.
 | 
						|
            Display::return_icon('back.png',get_lang('BackTo').' '.get_lang('DocumentsOverview'),'',ICON_SIZE_MEDIUM).'</a>';
 | 
						|
}
 | 
						|
 | 
						|
// Link to create a folder
 | 
						|
echo '</div>';
 | 
						|
 | 
						|
// Form to select directory
 | 
						|
$folders = DocumentManager::get_all_document_folders($_course, $groupId, $is_allowed_to_edit);
 | 
						|
if (!$is_certificate_mode) {
 | 
						|
    echo DocumentManager::build_directory_selector(
 | 
						|
        $folders,
 | 
						|
        $document_id,
 | 
						|
        (isset($group_properties['directory']) ? $group_properties['directory'] : array())
 | 
						|
    );
 | 
						|
}
 | 
						|
 | 
						|
$action = api_get_self().'?'.api_get_cidreq().'&id='.$document_id;
 | 
						|
 | 
						|
$form = new FormValidator('upload', 'POST', $action.'#tabs-2', '', 'enctype="multipart/form-data"');
 | 
						|
$form->addElement('hidden', 'id', $document_id);
 | 
						|
$form->addElement('hidden', 'curdirpath', $path);
 | 
						|
 | 
						|
$course_quota = format_file_size(DocumentManager::get_course_quota() - DocumentManager::documents_total_space());
 | 
						|
$label = get_lang('MaxFileSize').': '.ini_get('upload_max_filesize').'<br/>'.get_lang('DocumentQuota').': '.$course_quota;
 | 
						|
 | 
						|
$form->addElement('file', 'file', array(get_lang('File'), $label), 'style="width: 250px" id="user_upload"');
 | 
						|
$form->addElement('text', 'title', get_lang('Title'), array('size' => '20', 'style' => 'width:300px', 'id' => 'title_file'));
 | 
						|
$form->addElement('textarea', 'comment', get_lang('Comment'), 'wrap="virtual" style="width:300px;"');
 | 
						|
 | 
						|
$advanced = '<a href="javascript://" onclick=" return advanced_parameters()"><span id="img_plus_and_minus"><div style="vertical-align:top;" ><img style="vertical-align:middle;" src="../img/div_show.gif" alt="" /> '.get_lang('AdvancedParameters').'</div></span></a>';
 | 
						|
// Advanced parameters
 | 
						|
$form->addElement('advanced_settings', $advanced);
 | 
						|
$form->addElement('html', '<div id="options" style="display:none">');
 | 
						|
 | 
						|
// Check box options
 | 
						|
$form->addElement('checkbox', 'unzip', get_lang('Options'), get_lang('Uncompress'), 'onclick="javascript: check_unzip();" value="1"');
 | 
						|
 | 
						|
if (api_get_setting('search_enabled') == 'true') {
 | 
						|
    //TODO: include language file
 | 
						|
    $supported_formats = get_lang('SupportedFormatsForIndex').': HTML, PDF, TXT, PDF, Postscript, MS Word, RTF, MS Power Point';
 | 
						|
    $form->addElement('checkbox', 'index_document', '', get_lang('SearchFeatureDoIndexDocument').'<div style="font-size: 80%" >'.$supported_formats.'</div>');
 | 
						|
    $form->addElement('html', '<br /><div class="sub-form">');
 | 
						|
    $form->addElement('html', '<div class="label">'.get_lang('SearchFeatureDocumentLanguage').'</div>');
 | 
						|
    $form->addElement('html', '<div>'.api_get_languages_combo(null,false).'</div>');
 | 
						|
    $form->addElement('html', '</div><div class="sub-form">');
 | 
						|
    $specific_fields = get_specific_field_list();
 | 
						|
    foreach ($specific_fields as $specific_field) {
 | 
						|
        $form->addElement('text', $specific_field['code'], $specific_field['name'].' : ');
 | 
						|
    }
 | 
						|
    $form->addElement('html', '</div>');
 | 
						|
}
 | 
						|
 | 
						|
$form->addElement('radio', 'if_exists', get_lang('UplWhatIfFileExists'), get_lang('UplDoNothing'), 'nothing');
 | 
						|
$form->addElement('radio', 'if_exists', '', get_lang('UplOverwriteLong'), 'overwrite');
 | 
						|
$form->addElement('radio', 'if_exists', '', get_lang('UplRenameLong'), 'rename');
 | 
						|
// Close the java script and avoid the footer up
 | 
						|
$form->addElement('html', '</div>');
 | 
						|
 | 
						|
// Button upload document
 | 
						|
$form->addButtonSend(get_lang('SendDocument'), 'submitDocument');
 | 
						|
$form->add_real_progress_bar('DocumentUpload', 'file');
 | 
						|
 | 
						|
$fileExistsOption = api_get_configuration_value('document_if_file_exists_option');
 | 
						|
 | 
						|
$defaultFileExistsOption = 'rename';
 | 
						|
if (!empty($fileExistsOption)) {
 | 
						|
    $defaultFileExistsOption = $fileExistsOption;
 | 
						|
}
 | 
						|
 | 
						|
$defaults = array(
 | 
						|
    'index_document' => 'checked="checked"',
 | 
						|
    'if_exists' => $defaultFileExistsOption
 | 
						|
);
 | 
						|
 | 
						|
$form->setDefaults($defaults);
 | 
						|
 | 
						|
$simple_form = $form->return_form();
 | 
						|
 | 
						|
$url = api_get_path(WEB_AJAX_PATH).'document.ajax.php?'.api_get_cidreq().'&a=upload_file';
 | 
						|
$multiple_form =  get_lang('ClickToSelectOrDragAndDropMultipleFilesOnTheUploadField').'<br />';
 | 
						|
$multiple_form .=  '
 | 
						|
    <div class="form-ajax">
 | 
						|
    <form id="file_upload" action="'.$url.'" method="POST" enctype="multipart/form-data">
 | 
						|
        <input type="hidden" name="curdirpath" value="'.$path.'" />
 | 
						|
        <input type="file" name="file" multiple>
 | 
						|
        <button type="submit">Upload</button>
 | 
						|
        <div class="button-load">
 | 
						|
        '.get_lang('UploadFiles').'
 | 
						|
        </div>
 | 
						|
    </form>
 | 
						|
    </div>
 | 
						|
    <table style="display:none; width:50%" class="files data_table">
 | 
						|
        <tr>
 | 
						|
            <th>'.get_lang('FileName').'</th>
 | 
						|
            <th>'.get_lang('Size').'</th>
 | 
						|
            <th>'.get_lang('Status').'</th>
 | 
						|
        </tr>
 | 
						|
    </table>';
 | 
						|
 | 
						|
$nav_info = api_get_navigator();
 | 
						|
if ($nav_info ['name'] == 'Internet Explorer') {
 | 
						|
    echo $simple_form;
 | 
						|
} else {
 | 
						|
    $headers = array(get_lang('Send') , get_lang('Send').' ('.get_lang('Simple').')');
 | 
						|
    echo Display::tabs($headers, array($multiple_form, $simple_form),'tabs');
 | 
						|
}
 | 
						|
Display::display_footer();
 | 
						|
 |