commit
c143fdcd07
@ -0,0 +1,153 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
/** |
||||
* This tool allows platform admins to upload a massive amount of PDFs to be |
||||
* uploaded in each course |
||||
* @package chamilo.admin |
||||
*/ |
||||
/** |
||||
* Initialization |
||||
*/ |
||||
$language_file = array('admin', 'document'); |
||||
$cidReset = true; |
||||
require '../inc/global.inc.php'; |
||||
$this_section = SECTION_PLATFORM_ADMIN; |
||||
api_protect_admin_script(); |
||||
// temporary configuration of in which folder to upload the file in each course. Should default to '', and start with a '/' and end without it, if defined |
||||
$subDir = ''; |
||||
|
||||
//require_once api_get_path(LIBRARY_PATH).'fileManage.lib.php'; |
||||
//require_once api_get_path(LIBRARY_PATH).'import.lib.php'; |
||||
require_once api_get_path(LIBRARY_PATH).'fileUpload.lib.php'; |
||||
|
||||
$tool_name = get_lang('ImportPDFIntroToCourses'); |
||||
|
||||
$interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin')); |
||||
|
||||
set_time_limit(0); |
||||
Display :: display_header($tool_name); |
||||
|
||||
if ($_POST['formSent']) { |
||||
if (empty($_FILES['import_file']['tmp_name'])) { |
||||
$error_message = get_lang('UplUploadFailed'); |
||||
Display :: display_error_message($error_message, false); |
||||
} else { |
||||
$allowed_file_mimetype = array('zip'); |
||||
|
||||
$ext_import_file = substr($_FILES['import_file']['name'], (strrpos($_FILES['import_file']['name'], '.') + 1)); |
||||
|
||||
if (!in_array($ext_import_file, $allowed_file_mimetype)) { |
||||
Display :: display_error_message(get_lang('YouMustImportAZipFile')); |
||||
} else { |
||||
$errors = import_pdfs($courses, $subDir); |
||||
if (count($errors) == 0) { |
||||
save_data($courses); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
if (count($errors) != 0) { |
||||
$error_message = '<ul>'; |
||||
foreach ($errors as $index => $error_course) { |
||||
$error_message .= '<li>'.get_lang('Course').': '.$error_course['Title'].' ('.$error_course['Code'].')</li>'; |
||||
} |
||||
$error_message .= '</ul>'; |
||||
Display :: display_normal_message($error_message, false); |
||||
} |
||||
?> |
||||
<form method="post" action="<?php echo api_get_self(); ?>" enctype="multipart/form-data" style="margin: 0px;">
|
||||
<legend><?php echo $tool_name; ?></legend>
|
||||
<div class="control-group"> |
||||
<label><?php echo get_lang('ImportZipFileLocation'); ?></label>
|
||||
<div class="control"> |
||||
<input type="file" name="import_file"/> |
||||
</div> |
||||
</div> |
||||
<div class="control-group"> |
||||
<div class="control"> |
||||
<button type="submit" class="save" value="<?php echo get_lang('Import'); ?>"><?php echo get_lang('Import'); ?></button>
|
||||
</div> |
||||
</div> |
||||
<input type="hidden" name="formSent" value="1"/> |
||||
</form> |
||||
<div style="clear: both;"></div> |
||||
<p><?php echo get_lang('PDFsMustLookLike'); ?> :</p>
|
||||
|
||||
<blockquote> |
||||
<pre> |
||||
<strong>CourseCode</strong>_<strong>NameOfDocument</strong>_<strong>CourseName</strong>.pdf |
||||
e.g. |
||||
MAT101_Introduction_Mathematics-101.pdf |
||||
MAT102_Introduction_Mathematics-102.pdf |
||||
ENG101_Introduction_English-101.pdf |
||||
</pre> |
||||
</blockquote> |
||||
|
||||
<?php |
||||
Display :: display_footer(); |
||||
|
||||
/** |
||||
* Import PDFs |
||||
* @param string Filename |
||||
* @param string The subdirectory in which to put the files in each course |
||||
*/ |
||||
function import_pdfs($file, $subDir = '/') { |
||||
global $_configuration; |
||||
$baseDir = api_get_path(SYS_ARCHIVE_PATH); |
||||
$uploadPath = 'pdfimport/'; |
||||
$errors = array (); |
||||
if (!is_dir($baseDir.$uploadPath)) { |
||||
@mkdir($baseDir.$uploadPath); |
||||
} |
||||
if (!unzip_uploaded_file($_FILES['import_file'], $uploadPath, $baseDir, 1024*1024*1024)) { |
||||
error_log('Could not unzip uploaded file in '.__FILE__.', line '.__LINE__); |
||||
return $errors; |
||||
} |
||||
require_once api_get_path(LIBRARY_PATH).'course_description.lib.php'; |
||||
require_once api_get_path(LIBRARY_PATH).'app_view.php'; |
||||
require_once '../course_description/course_description_controller.php'; |
||||
$list = scandir($baseDir.$uploadPath); |
||||
foreach ($list as $file) { |
||||
if (substr($file,0,1) == '.' or !is_file($baseDir.$uploadPath.$file)) { |
||||
continue; |
||||
} |
||||
$parts = preg_split('/_/',$file); |
||||
$course = api_get_course_info($parts[0]); |
||||
if (count($course) > 0) { |
||||
// Build file info because handle_uploaded_document() needs it (name, type, size, tmp_name) |
||||
$fileSize = filesize($baseDir.$uploadPath.$file); |
||||
$docId = add_document($course, $subDir.'/'.$file, 'file', $fileSize, $parts[1].' '.substr($parts[2],0,-4)); |
||||
if ($docId > 0) { |
||||
if (!is_file($baseDir.$uploadPath.$file)) { |
||||
error_log($baseDir.$uploadPath.$file.' does not exists in '.__FILE__); |
||||
} |
||||
if (is_file(api_get_path(SYS_COURSE_PATH).$course['path'].'/document'.$subDir.'/'.$file)) { |
||||
error_log(api_get_path(SYS_COURSE_PATH).$course['path'].'/document'.$subDir.'/'.$file.' exists at destination in '.__FILE__); |
||||
} |
||||
if (!is_writeable(api_get_path(SYS_COURSE_PATH).$course['path'].'/document'.$subDir)) { |
||||
error_log('Destination '.api_get_path(SYS_COURSE_PATH).$course['path'].'/document'.$subDir.' is NOT writeable in '.__FILE__); |
||||
} |
||||
// Place each file in its folder in each course |
||||
$move = rename($baseDir.$uploadPath.$file, api_get_path(SYS_COURSE_PATH).$course['path'].'/document'.$subDir.'/'.$file); |
||||
api_item_property_update($course, TOOL_DOCUMENT, $docId, 'DocumentAdded', api_get_user_id()); |
||||
// Redo visibility |
||||
api_set_default_visibility(TOOL_DOCUMENT, $docId); |
||||
$errors[] = array('Line' => 0, 'Code' => $course['code'], 'Title' => $course['title']); |
||||
// Now add a link to the file from the Course description tool |
||||
$link = '<p>Sílabo de la asignatura <a href="'.api_get_path(WEB_CODE_PATH).'document/document.php?cidReq='.$course['code'].'&id_session=0&gidReq=0&action=download&id='.$docId.'" target="_blank"><img src="'.api_get_path(WEB_IMG_PATH).'icons/32/pdf.png"></a></p>'; |
||||
$course_description = new CourseDescription(); |
||||
$session_id = api_get_session_id(); |
||||
$course_description->set_course_id($course['real_id']); |
||||
$course_description->set_session_id($session_id); |
||||
$course_description->set_title('Presentación de la asignatura'); |
||||
$course_description->set_content($link); |
||||
$course_description->set_description_type(1); |
||||
$course_description->insert(); |
||||
} |
||||
} else { |
||||
error_log($parts[0].' is not a course, apparently'); |
||||
} |
||||
} |
||||
return $errors; |
||||
} |
Before Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 2.1 KiB |
Loading…
Reference in new issue