Example #1
0
 /**
  * upload
  * @author Thomas Schedler <*****@*****.**>
  * @version 1.0
  */
 protected function upload()
 {
     $this->core->logger->debug('massiveart.files.File->upload()');
     try {
         if ($this->objUpload != null && $this->objUpload instanceof Zend_File_Transfer_Adapter_Abstract) {
             /**
              * first check upload path
              */
             $this->checkUploadPath();
             $arrFileInfos = pathinfo($this->objUpload->getFileName($this->_FILE_NAME));
             $this->strExtension = strtolower($arrFileInfos['extension']);
             $this->strTitle = $arrFileInfos['filename'];
             $this->dblSize = $this->objUpload->getFileSize($this->_FILE_NAME);
             $this->strMimeType = $this->objUpload->getMimeType($this->_FILE_NAME);
             /**
              * receive file
              */
             $this->objUpload->addFilter('Rename', $this->getUploadPath() . $this->strFileId . '.' . $this->strExtension, $this->_FILE_NAME);
             $this->objUpload->receive($this->_FILE_NAME);
             /**
              * check public file path
              */
             $this->checkPublicFilePath();
             /**
              * public copy
              */
             //FIXME why ???
             copy($this->getUploadPath() . $this->strFileId . '.' . $this->strExtension, $this->getPublicFilePath() . $this->strFileId . '.' . $this->strExtension);
         }
     } catch (Exception $exc) {
         $this->core->logger->err($exc);
     }
 }
Example #2
0
 /**
  * upload
  * @author Thomas Schedler <*****@*****.**>
  */
 protected function upload($blnIsNewVersion = false)
 {
     $this->core->logger->debug('massiveart.files.File->upload()');
     try {
         if ($this->objUpload != null && $this->objUpload instanceof Zend_File_Transfer_Adapter_Abstract) {
             /**
              * first check upload path
              */
             $this->checkUploadPath();
             $arrFileInfos = pathinfo($this->objUpload->getFileName($this->_FILE_NAME));
             $this->strExtension = strtolower($arrFileInfos['extension']);
             $this->strTitle = $arrFileInfos['filename'];
             $this->dblSize = $this->objUpload->getFileSize($this->_FILE_NAME);
             $this->strMimeType = $this->objUpload->getMimeType($this->_FILE_NAME);
             if ($blnIsNewVersion == true && $this->objFileData instanceof Zend_Db_Table_Row_Abstract) {
                 $this->strFileId = $this->objFileData->fileId;
             } else {
                 /**
                  * make fileId conform
                  */
                 $this->strFileId = $this->makeFileIdConform($this->strTitle);
                 /**
                  * check uniqueness of fileId
                  */
                 $this->strFileId = $this->checkFileIdUniqueness($this->strFileId);
             }
             /**
              * receive file
              */
             $this->objUpload->addFilter('Rename', array('target' => $this->getUploadPath() . $this->strFileId . '.' . $this->strExtension, 'overwrite' => true), $this->_FILE_NAME);
             $this->objUpload->receive($this->_FILE_NAME);
         }
     } catch (Exception $exc) {
         $this->core->logger->err($exc);
     }
 }