ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTestExportGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once 'Services/Export/classes/class.ilExportGUI.php';
5 
19 {
20  public function __construct($a_parent_gui, $a_main_obj = null)
21  {
22  global $ilPluginAdmin;
23 
24  parent::__construct($a_parent_gui, $a_main_obj);
25 
26  $this->addFormat('xml', $a_parent_gui->lng->txt('ass_create_export_file'), $this, 'createTestExport');
27  $this->addFormat('csv', $a_parent_gui->lng->txt('ass_create_export_test_results'), $this, 'createTestResultsExport');
28  if($a_parent_gui->object->getEnableArchiving() == true)
29  {
30  $this->addFormat( 'arc',
31  $a_parent_gui->lng->txt( 'ass_create_export_test_archive' ),
32  $this,
33  'createTestArchiveExport'
34  );
35  }
36  $pl_names = $ilPluginAdmin->getActivePluginsForSlot(IL_COMP_MODULE, 'Test', 'texp');
37  foreach($pl_names as $pl)
38  {
42  $plugin = ilPluginAdmin::getPluginObject(IL_COMP_MODULE, 'Test', 'texp', $pl);
43  $plugin->setTest($this->obj);
44  $this->addFormat(
45  $plugin->getFormat(),
46  $plugin->getFormatLabel(),
47  $plugin,
48  'export'
49  );
50  }
51  }
52 
56  public function createTestExport()
57  {
62  global $lng, $ilCtrl;
63 
64  require_once 'Modules/Test/classes/class.ilTestExport.php';
65  $test_exp = new ilTestExport($this->obj, 'xml');
66  $test_exp->buildExportFile();
67  ilUtil::sendSuccess($lng->txt('exp_file_created'), true);
68  $ilCtrl->redirectByClass('iltestexportgui');
69  }
70 
74  public function createTestResultsExport()
75  {
80  global $lng, $ilCtrl;
81 
82  require_once 'Modules/Test/classes/class.ilTestExport.php';
83  $test_exp = new ilTestExport($this->obj, 'results');
84  $test_exp->buildExportFile();
85  ilUtil::sendSuccess($lng->txt('exp_file_created'), true);
86  $ilCtrl->redirectByClass('iltestexportgui');
87  }
88 
90  {
91  global $ilAccess, $ilCtrl;
92 
93  if ($ilAccess->checkAccess("write", "", $this->obj->ref_id))
94  {
95  include_once("./Modules/Test/classes/class.ilTestArchiver.php");
96  $test_id = $this->obj->getId();
97  $archive_exp = new ilTestArchiver($test_id);
98 
99  require_once './Modules/Test/classes/class.ilTestScoring.php';
100  $scoring = new ilTestScoring($this->obj);
101  $best_solution = $scoring->calculateBestSolutionForTest();
102 
103  require_once './Modules/Test/classes/class.ilTestPDFGenerator.php';
104  $generator = new ilTestPDFGenerator();
105  $generator->generatePDF($best_solution, ilTestPDFGenerator::PDF_OUTPUT_FILE, 'Best_Solution.pdf');
106  $archive_exp->handInTestBestSolution($best_solution, 'Best_Solution.pdf');
107  unlink('Best_Solution.pdf');
108 
109  $archive_exp->updateTestArchive();
110  $archive_exp->compressTestArchive();
111  }
112  else
113  {
114  ilUtil::sendInfo("cannot_export_archive", TRUE);
115  }
116  $ilCtrl->redirectByClass('iltestexportgui');
117  }
118 
119  public function listExportFiles()
120  {
121  global $tpl, $ilToolbar, $ilCtrl, $lng;
122 
123  $ilToolbar->setFormAction($ilCtrl->getFormAction($this));
124 
125  if(count($this->getFormats()) > 1)
126  {
127  foreach($this->getFormats() as $f)
128  {
129  $options[$f["key"]] = $f["txt"];
130  }
131  include_once 'Services/Form/classes/class.ilSelectInputGUI.php';
132  $si = new ilSelectInputGUI($lng->txt("type"), "format");
133  $si->setOptions($options);
134  $ilToolbar->addInputItem($si, true);
135  $ilToolbar->addFormButton($lng->txt("exp_create_file"), "createExportFile");
136  }
137  else
138  {
139  $format = $this->getFormats();
140  $format = $format[0];
141  $ilToolbar->addFormButton($lng->txt("exp_create_file") . " (" . $format["txt"] . ")", "create_" . $format["key"]);
142  }
143 
144  require_once 'class.ilTestArchiver.php';
145  $archiver = new ilTestArchiver($this->getParentGUI()->object->getId());
146  $archive_dir = $archiver->getZipExportDirectory();
147  $archive_files = array();
148  if( file_exists($archive_dir) && is_dir($archive_dir) )
149  {
150  $archive_files = scandir($archive_dir);
151  }
152 
153  $export_dir = $this->obj->getExportDirectory();
154  $export_files = $this->obj->getExportFiles($export_dir);
155  $data = array();
156  if(count($export_files) > 0)
157  {
158  foreach($export_files as $exp_file)
159  {
160  $file_arr = explode("__", $exp_file);
161  array_push($data, array(
162  'file' => $exp_file,
163  'size' => filesize($export_dir . "/" . $exp_file),
164  'timestamp' => $file_arr[0]
165  ));
166  }
167  }
168 
169  if(count($archive_files) > 0)
170  {
171  foreach($archive_files as $exp_file)
172  {
173  if ($exp_file == '.' || $exp_file == '..')
174  {
175  continue;
176  }
177  $file_arr = explode("_", $exp_file);
178  array_push($data, array(
179  'file' => $exp_file,
180  'size' => filesize($archive_dir."/".$exp_file),
181  'timestamp' => $file_arr[4]
182  ));
183  }
184  }
185 
186  require_once 'Modules/Test/classes/tables/class.ilTestExportTableGUI.php';
187  $table = new ilTestExportTableGUI($this, 'listExportFiles', $this->obj);
188  $table->setSelectAllCheckbox("file");
189  foreach($this->getCustomColumns() as $c)
190  {
191  $table->addCustomColumn($c["txt"], $c["obj"], $c["func"]);
192  }
193 
194  foreach($this->getCustomMultiCommands() as $c)
195  {
196  $table->addCustomMultiCommand($c["txt"], "multi_".$c["func"]);
197  }
198 
199  $table->setData($data);
200  $tpl->setContent($table->getHTML());
201  }
202 
203  public function download()
204  {
209  global $lng, $ilCtrl;
210 
211  if(!isset($_POST['file']))
212  {
213  ilUtil::sendInfo($lng->txt('no_checkbox'), true);
214  $ilCtrl->redirect($this, 'listExportFiles');
215  }
216 
217  if(count($_POST['file']) > 1)
218  {
219  ilUtil::sendInfo($lng->txt('select_max_one_item'), true);
220  $ilCtrl->redirect($this, 'listExportFiles');
221  }
222 
223  require_once 'class.ilTestArchiver.php';
224  $archiver = new ilTestArchiver($this->getParentGUI()->object->getId());
225 
226  $filename = basename($_POST["file"][0]);
227  $exportFile = $this->obj->getExportDirectory().'/'.$filename;
228  $archiveFile = $archiver->getZipExportDirectory().'/'.$filename;
229 
230  if( file_exists($exportFile) )
231  {
232  ilUtil::deliverFile($exportFile, $filename);
233  }
234 
235  if( file_exists($archiveFile) )
236  {
237  ilUtil::deliverFile($archiveFile, $filename);
238  }
239 
240  $ilCtrl->redirect($this, 'listExportFiles');
241  }
242 
246  public function delete()
247  {
252  global $lng, $ilCtrl;
253 
254  require_once 'class.ilTestArchiver.php';
255  $archiver = new ilTestArchiver($this->getParentGUI()->object->getId());
256  $archiveDir = $archiver->getZipExportDirectory();
257 
258  $export_dir = $this->obj->getExportDirectory();
259  foreach($_POST['file'] as $file)
260  {
261  $file = basename($file);
262  $dir = substr($file, 0, strlen($file) - 4);
263 
264  if( !strlen($file) || !strlen($dir) )
265  {
266  continue;
267  }
268 
269  $exp_file = $export_dir.'/'.$file;
270  $arc_file = $archiveDir.'/'.$file;
271  $exp_dir = $export_dir.'/'.$dir;
272  if(@is_file($exp_file))
273  {
274  unlink($exp_file);
275  }
276  if(@is_file($arc_file))
277  {
278  unlink($arc_file);
279  }
280  if(@is_dir($exp_dir))
281  {
282  ilUtil::delDir($exp_dir);
283  }
284  }
285  ilUtil::sendSuccess($lng->txt('msg_deleted_export_files'), true);
286  $ilCtrl->redirect($this, 'listExportFiles');
287  }
288 }
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
print $file
$_POST['username']
Definition: cron.php:12
Export User Interface Class.
download()
Download file.
This class represents a selection list property in a property form.
Class ilTestPDFGenerator.
Export class for tests.
addFormat($a_key, $a_txt="", $a_call_obj=null, $a_call_func="")
Add formats.
global $ilCtrl
Definition: ilias.php:18
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
getCustomColumns()
Get custom columns.
Export User Interface Class.
if(!is_array($argv)) $options
getZipExportDirectory()
Return the export directory, where zips are placed.
const IL_COMP_MODULE
static getPluginObject($a_ctype, $a_cname, $a_slot_id, $a_pname)
Get Plugin Object.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
static deliverFile($a_file, $a_filename, $a_mime='', $isInline=false, $removeAfterDelivery=false, $a_exit_after=true)
deliver file for download via browser.
Class ilTestScoring.
getFormats()
Get formats.
$filename
Definition: buildRTE.php:89
getCustomMultiCommands()
Get custom multi commands.
Class ilTestArchiver.
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
global $lng
Definition: privfeed.php:40
__construct($a_parent_gui, $a_main_obj=null)
Constuctor.
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
getParentGUI()
get parent gui