123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Responses to AJAX calls for the document upload
- */
- //require_once '../global.inc.php';
- $action = $_REQUEST['a'];
- switch ($action) {
- case 'upload_file':
- api_protect_course_script(true);
- // User access same as upload.php
- $is_allowed_to_edit = api_is_allowed_to_edit(null, true);
- // This needs cleaning!
- if (api_get_group_id()) {
- $groupInfo = GroupManager::get_group_properties(api_get_group_id());
- // Only course admin or group members allowed
- if ($is_allowed_to_edit || GroupManager::is_user_in_group(api_get_user_id(), $groupInfo['iid'])) {
- } else {
- exit;
- }
- } elseif ($is_allowed_to_edit || DocumentManager::is_my_shared_folder(api_get_user_id(), $_POST['curdirpath'], api_get_session_id())) {
- // ??
- } else {
- // No course admin and no group member...
- exit;
- }
- $directoryParentId = isset($_POST['directory_parent_id']) ? $_POST['directory_parent_id'] : 0;
- $currentDirectory = '';
- if (empty($directoryParentId)) {
- $currentDirectory = isset($_REQUEST['curdirpath']) ? $_REQUEST['curdirpath'] : '';
- } else {
- $documentData = DocumentManager::get_document_data_by_id($directoryParentId, api_get_course_id());
- if ($documentData) {
- $currentDirectory = $documentData['path'];
- }
- }
- $ifExists = isset($_POST['if_exists']) ? $_POST['if_exists'] : '';
- $unzip = isset($_POST['unzip']) ? 1 : 0;
- if (empty($ifExists)) {
- $fileExistsOption = api_get_setting('document.if_file_exists_option');
- $defaultFileExistsOption = 'rename';
- if (!empty($fileExistsOption)) {
- $defaultFileExistsOption = $fileExistsOption;
- }
- } else {
- $defaultFileExistsOption = $ifExists;
- }
- if (!empty($_FILES)) {
- $files = $_FILES['files'];
- $fileList = [];
- foreach ($files as $name => $array) {
- $counter = 0;
- foreach ($array as $data) {
- $fileList[$counter][$name] = $data;
- $counter++;
- }
- }
- $resultList = [];
- foreach ($fileList as $file) {
- $globalFile = [];
- $globalFile['files'] = $file;
- $result = DocumentManager::upload_document(
- $globalFile,
- $currentDirectory,
- $file['name'],
- '', // comment
- $unzip,
- $defaultFileExistsOption,
- false,
- false,
- 'files'
- );
- $json = array();
- if (!empty($result) && is_array($result)) {
- $json['name'] = Display::url(
- api_htmlentities($result['title']),
- api_htmlentities($result['url']),
- array('target'=>'_blank')
- );
- $json['url'] = $result['url'];
- $json['size'] = format_file_size($file['size']);
- $json['type'] = api_htmlentities($file['type']);
- $json['result'] = Display::return_icon(
- 'accept.png',
- get_lang('Uploaded')
- );
- } else {
- $json['url'] = '';
- $json['error'] = get_lang('Error');
- }
- $resultList[] = $json;
- }
- echo json_encode(['files' => $resultList]);
- }
- exit;
- break;
- case 'document_preview':
- $course_info = api_get_course_info_by_id($_REQUEST['course_id']);
- if (!empty($course_info) && is_array($course_info)) {
- echo DocumentManager::get_document_preview(
- $course_info,
- false,
- '_blank',
- $_REQUEST['session_id']
- );
- }
- break;
- case 'document_destination':
- //obtained the bootstrap-select selected value via ajax
- $dirValue = isset($_POST['dirValue']) ? $_POST['dirValue'] : null;
- echo Security::remove_XSS($dirValue);
- break;
- }
- exit;
|