ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilCloudPluginUploadGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/Form/classes/class.ilPropertyFormGUI.php");
5 include_once("./Services/JSON/classes/class.ilJsonUtil.php");
6 
18 {
19 
23  protected $form;
24 
25 
29  public function executeCommand()
30  {
31  global $DIC;
32  $ilCtrl = $DIC['ilCtrl'];
33 
34  $cmd = $ilCtrl->getCmd();
35 
36  switch ($cmd) {
37  default:
38  $this->$cmd();
39  break;
40  }
41  }
42 
43 
44  public function asyncUploadFile()
45  {
46  global $DIC;
47  $ilTabs = $DIC['ilTabs'];
48 
49  $ilTabs->activateTab("content");
50  $this->initUploadForm();
51  echo $this->form->getHTML();
52 
53  $options = new stdClass();
54  $options->dropZone = "#ilFileUploadDropZone_1";
55  $options->fileInput = "#ilFileUploadInput_1";
56  $options->submitButton = "uploadFiles";
57  $options->cancelButton = "cancelAll";
58  $options->dropArea = "#ilFileUploadDropArea_1";
59  $options->fileList = "#ilFileUploadList_1";
60  $options->fileSelectButton = "#ilFileUploadFileSelect_1";
61  echo "<script language='javascript' type='text/javascript'>var fileUpload1 = new ilFileUpload(1, " . ilJsonUtil::encode($options) . ");</script>";
62 
63  $_SESSION["cld_folder_id"] = $_POST["folder_id"];
64 
65  exit;
66  }
67 
68 
69  public function initUploadForm()
70  {
71  global $DIC;
72  $ilCtrl = $DIC['ilCtrl'];
73  $lng = $DIC['lng'];
74 
75  include_once("./Services/Form/classes/class.ilDragDropFileInputGUI.php");
76  include_once("./Services/jQuery/classes/class.iljQueryUtil.php");
77 
78  $this->form = new ilPropertyFormGUI();
79  $this->form->setId("upload");
80  $this->form->setMultipart(true);
81  $this->form->setHideLabels();
82 
83  $file = new ilDragDropFileInputGUI($lng->txt("cld_upload_files"), "upload_files");
84  $file->setRequired(true);
85  $this->form->addItem($file);
86 
87  $this->form->addCommandButton("uploadFiles", $lng->txt("upload"));
88  $this->form->addCommandButton("cancelAll", $lng->txt("cancel"));
89 
90  $this->form->setTableWidth("100%");
91  $this->form->setTitle($lng->txt("upload_files_title"));
92  // $this->form->setTitleIcon(ilUtil::getImagePath('icon_file.gif'), $lng->txt('obj_file'));
93  $this->form->setTitleIcon(ilUtil::getImagePath('icon_dcl_file.svg'), $lng->txt('obj_file'));
94 
95  $this->form->setTitle($lng->txt("upload_files"));
96  $this->form->setFormAction($ilCtrl->getFormAction($this, "uploadFiles"));
97  $this->form->setTarget("cld_blank_target");
98  }
99 
100 
101  public function cancelAll()
102  {
103  echo "<script language='javascript' type='text/javascript'>window.parent.il.CloudFileList.afterUpload('cancel');</script>";
104  exit;
105  }
106 
107 
112  public function uploadFiles()
113  {
114  $response = new stdClass();
115  $response->error = null;
116  $response->debug = null;
117 
118  $this->initUploadForm();
119  if ($this->form->checkInput()) {
120  try {
121  $fileresult = $this->handleFileUpload($this->form->getInput("upload_files"));
122  if ($fileresult) {
123  $response = (object) array_merge((array) $response, (array) $fileresult);
124  }
125  } catch (ilException $e) {
126  $response->error = $e->getMessage();
127  }
128  } else {
130  $response->error = $error->getMessage();
131  }
132 
133  // send response object (don't use 'application/json' as IE wants to download it!)
134  header('Vary: Accept');
135  header('Content-type: text/plain');
137  exit;
138  }
139 
140 
141  public function handleFileUpload($file_upload)
142  {
143  // create answer object
144  $response = new stdClass();
145  $response->fileName = $_POST["title"];
146  $response->fileSize = intval($file_upload["size"]);
147  $response->fileType = $file_upload["type"];
148  $response->fileUnzipped = $file_upload["extract"];
149  $response->error = null;
150 
152 
153  if ($file_upload["extract"]) {
154  $newdir = ilUtil::ilTempnam();
155  ilUtil::makeDir($newdir);
156 
157  include_once './Services/Utilities/classes/class.ilFileUtils.php';
158  try {
159  ilFileUtils::processZipFile($newdir, $file_upload["tmp_name"], $file_upload["keep_structure"]);
160  } catch (Exception $e) {
161  $response->error = $e->getMessage();
162  ilUtil::delDir($newdir);
163  exit;
164  }
165 
166  try {
167  $this->uploadDirectory($newdir, $_SESSION["cld_folder_id"], $file_tree, $file_upload["keep_structure"]);
168  } catch (Exception $e) {
169  $response->error = $e->getMessage();
170  ilUtil::delDir($newdir);
171  exit;
172  }
173 
174  ilUtil::delDir($newdir);
175 
176  return $response;
177  } else {
178  $file_tree->uploadFileToService($_SESSION["cld_folder_id"], $file_upload["tmp_name"], $_POST["title"]);
179 
180  return $response;
181  }
182  }
183 
184 
195  protected function uploadDirectory($dir, $parent_id, $file_tree, $keep_structure = true)
196  {
197  $dirlist = opendir($dir);
198 
199  while (false !== ($file = readdir($dirlist))) {
200  if (!is_file($dir . "/" . $file) && !is_dir($dir . "/" . $file)) {
201  global $DIC;
202  $lng = $DIC['lng'];
203  throw new ilCloudException($lng->txt("filenames_not_supported"), ilFileUtilsException::$BROKEN_FILE);
204  }
205  if ($file != '.' && $file != '..') {
206  $newpath = $dir . '/' . $file;
207  if (is_dir($newpath)) {
208  if ($keep_structure) {
209  $newnode = $file_tree->addFolderToService($parent_id, basename($newpath));
210  $this->uploadDirectory($newpath, $newnode->getId(), $file_tree);
211  } else {
212  $this->uploadDirectory($newpath, $parent_id, $file_tree, false);
213  }
214  } else {
215  $file_tree->uploadFileToService($parent_id, $newpath, basename($newpath));
216  }
217  }
218  }
219  closedir($dirlist);
220  }
221 }
exit
Definition: login.php:29
$_SESSION["AccountId"]
This class represents a property form user interface.
uploadDirectory($dir, $parent_id, $file_tree, $keep_structure=true)
Recursive Method to upload a directory.
static encode($mixed, $suppress_native=false)
$lng
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
global $DIC
Definition: goto.php:24
static processZipFile($a_directory, $a_file, $structure, $ref_id=null, $containerType=null, $tree=null, $access_handler=null)
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static ilTempnam($a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
Class ilCloudPluginUploadGUI.
Class ilCloudException.
$response
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
$_POST["username"]
setRequired($a_required)
Set Required.
This class represents a file input property where multiple files can be dopped in a property form...
Class ilCloudPluginGUI.