api_get_path(WEB_CODE_PATH).'work/work.php?'.api_get_cidreq(), 'name' => get_lang('StudentPublications'), ); $interbreadcrumb[] = array( 'url' => api_get_path(WEB_CODE_PATH).'work/work_list.php?'.api_get_cidreq().'&id='.$workId, 'name' => $workInfo['title'], ); $interbreadcrumb[] = array('url' => '#', 'name' => get_lang('UploadCorrections')); $downloadLink = api_get_path(WEB_CODE_PATH).'work/downloadfolder.inc.php?id='.$workId.'&'.api_get_cidreq(); $form = new FormValidator( 'form', 'POST', api_get_self()."?".api_get_cidreq()."&id=".$workId, '', array('enctype' => "multipart/form-data") ); $form->addElement('header', get_lang('UploadCorrections')); $form->addHtml(Display::return_message( sprintf( get_lang('UploadCorrectionsExplanationWithDownloadLinkX'), $downloadLink ), 'normal', false )); $form->addElement('file', 'file', get_lang('UploadADocument')); $form->addProgress(); $form->addRule('file', get_lang('ThisFieldIsRequired'), 'required'); $form->addElement('hidden', 'id', $workId); $form->addButtonUpload(get_lang('Upload')); $succeed = false; if ($form->validate()) { $values = $form->getSubmitValues(); $upload = process_uploaded_file($_FILES['file'], false); if ($upload) { $zip = new PclZip($_FILES['file']['tmp_name']); // Check the zip content (real size and file extension) $zipFileList = (array) $zip->listContent(); $realSize = 0; foreach ($zipFileList as & $this_content) { $realSize += $this_content['size']; } $maxSpace = DocumentManager::get_course_quota(); if (!DocumentManager::enough_space($realSize, $maxSpace)) { Display::addFlash( Display::return_message( get_lang('UplNotEnoughSpace'), 'warning' ) ); } $folder = api_get_unique_id(); $destinationDir = api_get_path(SYS_ARCHIVE_PATH).$folder; mkdir($destinationDir, api_get_permissions_for_new_directories(), true); /* Uncompress zip file*/ // We extract using a callback function that "cleans" the path $result = $zip->extract( PCLZIP_OPT_PATH, $destinationDir, PCLZIP_CB_PRE_EXTRACT, 'clean_up_files_in_zip', PCLZIP_OPT_REPLACE_NEWER ); $result = get_work_user_list(null, null, null, null, $workId); if (empty($result)) { Display::addFlash( Display::return_message( get_lang('NoDataAvailable'), 'warning' ) ); } $finalResult = []; foreach ($result as $item) { $title = $item['title_clean']; $insert_date = str_replace(array(':', '-', ' '), '_', api_get_local_time($item['sent_date_from_db'])); $title = api_replace_dangerous_char($insert_date.'_'.$item['username'].'_'.$title); $finalResult[$title] = $item['id']; } $coursePath = api_get_path(SYS_COURSE_PATH).$courseInfo['path'].'/'; $workDir = api_get_path(SYS_COURSE_PATH).$courseInfo['path'].'/work/'; $workDir .= basename($workInfo['url']).'/'; $finder = new Finder(); $finder->files()->in($destinationDir); $table = Database::get_course_table(TABLE_STUDENT_PUBLICATION); //var_dump($finalResult); /** @var SplFileInfo $file */ foreach ($finder as $file) { $fileName = $file->getBasename(); if (isset($finalResult[$fileName])) { $workStudentId = $finalResult[$fileName]; $workStudent = get_work_data_by_id($workStudentId); if ($workStudent) { if (!empty($workStudent['url_correction'])) { $correctionFilePath = $coursePath.$workStudent['url_correction']; $correctionTitle = $workStudent['title_correction']; } else { if (!empty($workStudent['url'])) { $correctionFilePath = $coursePath.$workStudent['url'].'_correction'; $correctionTitle = $fileName; } } if (!empty($correctionFilePath)) { $result = copy( $file->getRealPath(), $correctionFilePath ); $correctionTitle = Database::escape_string( $correctionTitle ); $correctionFilePath = Database::escape_string( 'work/'.basename($workInfo['url']).'/'.basename($correctionFilePath) ); if ($result) { $sql = "UPDATE $table SET url_correction = '".$correctionFilePath."', title_correction = '".$correctionTitle."' WHERE iid = $workStudentId"; Database::query($sql); } } } } } Display::addFlash( Display::return_message( get_lang('Uploaded') ) ); } header('Location: '.api_get_path(WEB_CODE_PATH).'work/work_list_all.php?'.api_get_cidreq().'&id='.$workId); exit; } $htmlHeadXtra[] = to_javascript_work(); Display :: display_header(null); if (!empty($workId)) { echo $validationStatus['message']; if ($is_allowed_to_edit) { $form->display(); } else { api_not_allowed(); } } else { api_not_allowed(); } Display :: display_footer();