/**
  * Goes trough the directory path and removes empty directories, starting at
  * the leaf and deleting down until a non empty directory is reached.
  * If the path is not a directory, nothing will happen.
  *
  * @param string $path
  */
 public static function cleanupEmptyDirectories($path)
 {
     $dirpath = eZDir::dirpath($path);
     eZDebugSetting::writeDebug('kernel-clustering', "eZClusterFileHandler::cleanupEmptyDirectories( '{$dirpath}' )");
     if (is_dir($dirpath)) {
         eZDir::cleanupEmptyDirectories($dirpath);
     }
 }
 /**
  * Sets the contents of a resource.
  *
  * This method replaces the content of the resource identified by $path
  * with the submitted $content.
  *
  * @param string $path
  * @param string $content
  */
 protected function setResourceContents($path, $content)
 {
     // Attempt to get file/resource sent from client/browser.
     $tempFile = $this->storeUploadedFile($path, $content);
     eZWebDAVContentBackend::appendLogEntry('SetResourceContents:' . $path . ';' . $tempFile);
     // If there was an actual file:
     if (!$tempFile) {
         return false;
         // @as self::FAILED_FORBIDDEN;
     }
     // Attempt to do something with it (copy/whatever).
     $fullPath = $path;
     $target = $this->splitFirstPathElement($path, $currentSite);
     if (!$currentSite) {
         return false;
         // @as self::FAILED_FORBIDDEN;
     }
     $result = $this->putVirtualFolderData($currentSite, $target, $tempFile);
     unlink($tempFile);
     eZDir::cleanupEmptyDirectories(dirname($tempFile));
     return $result;
 }
        // Loop the image files and check if it is still used by a content object attribute. If not, delete it.
        foreach( $aImageFiles as $image )
        {
            $filePath = $image->attribute( 'filepath' );
            $dirpath = dirname( $filePath );
            $contentObjectAttributeID = $image->attribute( 'contentobject_attribute_id' );
            $dbResult = eZImageFile::fetchImageAttributesByFilepath( $filePath, $contentObjectAttributeID );
            if( count( $dbResult ) == 0 )
            {
                $file = eZClusterFileHandler::instance( $filePath );
                if ( $file->exists() ) // Delete the file physically
                {
                    $file->delete();
                    eZImageFile::removeFilepath( $contentObjectAttributeID, $filePath );
                    eZDir::cleanupEmptyDirectories( $dirpath );
                }

                // Delete the obsolete reference in the database
                $image->remove();
            }

            $progressBar->advance();
        }

        $progressBar->finish();
        $output->outputLine();
    }
    else
    {
        $output->outputText( 'No image file found !' );
Ejemplo n.º 4
0
 function processClientRequest()
 {
     $this->appendLogEntry("WebDAV server started...", 'processClientRequest');
     $this->XMLBodyRead = false;
     // Dump some custom header/info.
     $this->headers();
     // Clear file status cache (just in case).
     clearstatcache();
     // Convert the requested URI string to non-bogus format.
     $target = urldecode($_SERVER["REQUEST_URI"]);
     $target = $this->processURL($target);
     $this->appendLogEntry("----------------------------------------");
     $this->appendLogEntry("Client says: " . $_SERVER["REQUEST_METHOD"], 'processClientRequest');
     $this->appendLogEntry("Target: " . $_SERVER["REQUEST_URI"], 'processClientRequest');
     $this->appendLogEntry("----------------------------------------");
     $status = eZWebDAVServer::FAILED_NOT_FOUND;
     switch ($_SERVER["REQUEST_METHOD"]) {
         // OPTIONS  (Server ID reply.)
         case "OPTIONS":
             $this->appendLogEntry("OPTIONS was issued from client.", 'processClientRequest');
             $options = $this->options($target);
             $status = $this->outputOptions($options);
             break;
             // PROPFIND (Show dir/collection content.)
         // PROPFIND (Show dir/collection content.)
         case "PROPFIND":
             $this->appendLogEntry("PROPFIND was issued from client.", 'processClientRequest');
             $depth = $_SERVER['HTTP_DEPTH'];
             if ($depth != 0 and $depth != 1 and $depth != "infinity") {
                 $depth = "infinity";
             }
             $this->appendLogEntry("Depth: {$depth}.", 'processClientRequest');
             $xmlBody = $this->xmlBody();
             // Find which properties were requested
             // $this->appendLogEntry( $xmlBody, 'xmlbody' );
             $dom = new DOMDocument('1.0', 'utf-8');
             $dom->preserveWhiteSpace = false;
             $ok = $dom->loadXML($xmlBody);
             $requestedProperties = array();
             if ($ok) {
                 $propfindNode = $dom->documentElement;
                 $propNode = $propfindNode->getElementsByTagName('prop')->item(0);
                 if ($propNode) {
                     $propList = $propNode->childNodes;
                     foreach ($propList as $node) {
                         $name = $node->localName;
                         $requestedProperties[] = $name;
                     }
                 } else {
                     $allpropNode = $propfindNode->getElementsByTagName('allprop')->item(0);
                     if ($allpropNode) {
                         // The server must return all possible properties
                         $requestedProperties = true;
                     } else {
                         $propnameNode = $propfindNode->getElementsByTagName('propname')->item(0);
                         if ($propnameNode) {
                             // The server must return only the names of all properties
                             $requestedProperties = false;
                         }
                     }
                 }
             }
             $collection = $this->getCollectionContent($target, $depth, $requestedProperties);
             if (is_array($collection)) {
                 $status = $this->outputCollectionContent($collection, $requestedProperties);
             } else {
                 $status = $collection;
             }
             break;
             // HEAD (Check if file/resource exists.)
         // HEAD (Check if file/resource exists.)
         case "HEAD":
             $this->appendLogEntry("HEAD was issued from client.", 'processClientRequest');
             $data = $this->get($target);
             $status = $this->outputSendDataToClient($data, true);
             break;
             // GET (Download a file/resource from server to client.)
         // GET (Download a file/resource from server to client.)
         case "GET":
             $this->appendLogEntry("GET was issued from client.", 'processClientRequest');
             $data = $this->get($target);
             $status = $this->outputSendDataToClient($data);
             break;
             // PUT (Upload a file/resource from client to server.)
         // PUT (Upload a file/resource from client to server.)
         case "PUT":
             $this->appendLogEntry("PUT was issued from client.", 'processClientRequest');
             $status = eZWebDAVServer::OK_CREATED;
             // Attempt to get file/resource sent from client/browser.
             $tempFile = $this->storeUploadedFile($target);
             // If there was an actual file:
             if ($tempFile) {
                 // Attempt to do something with it (copy/whatever).
                 $status = $this->put($target, $tempFile);
                 unlink($tempFile);
                 eZDir::cleanupEmptyDirectories(dirname($tempFile));
             } else {
                 $status = eZWebDAVServer::FAILED_FORBIDDEN;
             }
             break;
             // MKCOL (Create a directory/collection.)
         // MKCOL (Create a directory/collection.)
         case "MKCOL":
             $this->appendLogEntry("MKCOL was issued from client.", 'processClientRequest');
             if (strlen($this->xmlBody()) > 0) {
                 $this->appendLogEntry("MKCOL body error.", 'processClientRequest');
                 $status = eZWebDAVServer::FAILED_FORBIDDEN;
             } else {
                 $status = $this->mkcol($target);
             }
             break;
             // COPY (Copy a resource/collection from one location to another.)
         // COPY (Copy a resource/collection from one location to another.)
         case "COPY":
             $this->appendLogEntry("COPY was issued from client.", 'processClientRequest');
             $source = $target;
             $url = parse_url($_SERVER["HTTP_DESTINATION"]);
             $destination = urldecode($url["path"]);
             $destination = $this->processURL($destination);
             $status = $this->copy($source, $destination);
             break;
             // MOVE (Move a resource/collection from one location to another.)
         // MOVE (Move a resource/collection from one location to another.)
         case "MOVE":
             $this->appendLogEntry("MOVE was issued from client.", 'processClientRequest');
             $source = $target;
             $url = parse_url($_SERVER["HTTP_DESTINATION"]);
             $destination = urldecode($url["path"]);
             $destination = $this->processURL($destination);
             $status = $this->move($source, $destination);
             break;
             // DELETE (Remove a resource/collection.)
         // DELETE (Remove a resource/collection.)
         case "DELETE":
             $this->appendLogEntry("DELETE was issued from client.", 'processClientRequest');
             $status = $this->delete($target);
             break;
             // Default case: unknown command from client.
         // Default case: unknown command from client.
         default:
             // __FIX_ME__
             break;
     }
     // Read the XML body if it is not used yet,
     // PHP should discard it but it's a bug in some PHP versions
     if (!$this->XMLBodyRead) {
         $this->flushXMLBody();
     }
     // Handle the returned status code (post necessary/matching headers, etc.).
     $this->handle($status);
 }
Ejemplo n.º 5
0
 function updateAliasPath($dirpath, $name)
 {
     if (!file_exists($dirpath)) {
         eZDir::mkdir($dirpath, false, true);
     }
     $aliasList = $this->aliasList();
     $this->resetImageSerialNumber();
     foreach ($aliasList as $aliasName => $alias) {
         if ($alias['dirpath'] != $dirpath) {
             $oldDirpath = $alias['url'];
             $oldURL = $alias['url'];
             $basename = $name;
             if ($aliasName != 'original') {
                 $basename .= '_' . $aliasName;
             }
             eZMimeType::changeFileData($alias, $dirpath, $basename);
             $alias['full_path'] = $alias['url'];
             if ($this->isImageOwner()) {
                 if ($oldURL == '') {
                     continue;
                 }
                 $fileHandler = eZClusterFileHandler::instance();
                 $fileHandler->fileMove($oldURL, $alias['url']);
                 eZDir::cleanupEmptyDirectories($oldDirpath);
                 eZImageFile::moveFilepath($this->ContentObjectAttributeData['id'], $oldURL, $alias['url']);
             } else {
                 $fileHandler = eZClusterFileHandler::instance();
                 $fileHandler->fileLinkCopy($oldURL, $alias['url'], false);
                 eZImageFile::appendFilepath($this->ContentObjectAttributeData['id'], $alias['url']);
             }
             $this->setAliasVariation($aliasName, $alias);
         }
     }
     $this->recreateDOMTree();
     $this->setStorageRequired();
 }
Ejemplo n.º 6
0
 /**
  * Attempt to remove content object 'image' attribute image variations by content object attribute
  *
  * @param object $contentClassImageAttribute object of objects of class eZContentObjectAttribute
  * @param array $class Array of object class identifiers to remove aliases for only these classes. Optional. Defaults to false
  * @param array $attributes Array of object image attribute identifiers to remove aliases from. Optional. Defaults to false
  * @param array $aliases Array of object image attribute image aliases to remove. Optional. Defaults to false
  *
  * @return bool true if successful, false otherwise
  * @static
  */
 static function removeByAttribute($contentObjectAttribute = false, $classes = false, $attributes = false, $aliases = false)
 {
     if (!is_object($contentObjectAttribute)) {
         return false;
     }
     // Test that content object class attribute identifier matches provided classes
     if ($classes != false && is_array($classes) && !in_array($contentObjectAttribute->attribute('object')->attribute('class_identifier'), $classes)) {
         return false;
     }
     // Test that content object class attribute identifier matches provided classes
     if ($attributes != false && is_array($attributes) && !in_array($contentObjectAttribute->attribute('contentclass_attribute_identifier'), $attributes)) {
         return false;
     }
     // Default datatypes to create image alias variations
     $imageDataTypeStrings = eZINI::instance('bcimagealias.ini')->variable('BCImageAliasSettings', 'ImageDataTypeStringList');
     // Check that content object attribute data type string matches allowed datatype settings
     if (!in_array($contentObjectAttribute->attribute('data_type_string'), $imageDataTypeStrings) || !$contentObjectAttribute->attribute('has_content')) {
         return false;
     }
     $filePaths = array();
     $results = array();
     $executionOptions = self::executionOptions();
     $messageCount = 0;
     $imageHandler = $contentObjectAttribute->attribute('content');
     $aliasList = $imageHandler->aliasList(false);
     // Do not process the orginal image alias
     unset($aliasList['original']);
     if (count($aliasList) == 0) {
         return false;
     }
     // Optional debug output
     if ($executionOptions['troubleshoot'] && $executionOptions['verboseLevel'] >= 2) {
         if ($executionOptions['verboseLevel'] >= 3) {
             self::displayMessage('All attribute image aliases stored in content data text field:', false);
             self::displayMessage($contentObjectAttribute->attribute('data_text'), "\n");
         }
         if ($executionOptions['verboseLevel'] >= 4) {
             self::displayMessage('All attribute image aliases stored in content alias list:', false);
             print_r($aliasList);
             self::displayMessage('', "\n\n");
         } elseif ($executionOptions['verboseLevel'] >= 3) {
             self::displayMessage('All attribute image aliases stored in content alias list:', false);
             print_r(array_keys($aliasList));
             self::displayMessage('', "\n");
         }
     }
     $contentObjectID = $contentObjectAttribute->attribute('contentobject_id');
     $contentObjectAttributeID = $contentObjectAttribute->attribute('id');
     $contentObjectAttributeVersion = $contentObjectAttribute->attribute('version');
     if ($contentObjectAttributeVersion === null) {
         $files = eZImageFile::fetchForContentObjectAttribute($contentObjectAttributeID, true);
         $dirs = array();
         $count = 0;
         // Iterate over files
         foreach ($files as $filepath) {
             // Test $filepath from $files is in contains one of the $aliases items
             if ($aliases != false && is_array($aliases)) {
                 foreach ($aliases as $alias) {
                     if (!stristr('_' . $alias, $filepath)) {
                         continue 1;
                     }
                 }
             }
             $file = eZClusterFileHandler::instance($filepath);
             if ($file->exists()) {
                 $filePaths[] = $filepath;
                 if (!$executionOptions['dry']) {
                     $file->fileDelete($filepath);
                     $dirs[] = eZDir::dirpath($filepath);
                 }
                 $count++;
             }
         }
         if (!$executionOptions['dry']) {
             $dirs = array_unique($dirs);
             foreach ($dirs as $dirpath) {
                 eZDir::cleanupEmptyDirectories($dirpath);
             }
             eZImageFile::removeForContentObjectAttribute($contentObjectAttributeID);
             $message = "Removed datatype " . $contentObjectAttribute->attribute('data_type_string') . "type image alias variation " . $filePaths[$messageCount] . "\n";
         } else {
             $message = "Dry run: Remove datatype " . $contentObjectAttribute->attribute('data_type_string') . "type image alias variation " . $filePaths[$messageCount] . "\n";
         }
         while ($messageCount < $count) {
             self::scriptIterate($message);
             $messageCount++;
             $result = true;
         }
     } else {
         // We loop over each image alias, and look up the file in ezcontentobject_attribute
         // Only images referenced by one version will be removed
         foreach ($aliasList as $aliasName => $aliasListAliasItem) {
             // Test $aliasListAliasItem from $aliasList is in $aliases array
             if ($aliases != false && is_array($aliases) && !in_array($aliasListAliasItem['name'], $aliases)) {
                 continue;
             }
             if ($aliasListAliasItem['is_valid'] && $aliasListAliasItem['name'] != 'original') {
                 $filepath = $aliasListAliasItem['url'];
                 // Calculate appropriate message to Alert user with
                 if (!$executionOptions['dry']) {
                     // Remove the alias variation image file from the attribute dom tree
                     $doc = $imageHandler->ContentObjectAttributeData['DataTypeCustom']['dom_tree'];
                     foreach ($doc->getElementsByTagName('alias') as $aliasNode) {
                         if ($aliasListAliasItem['name'] == $aliasNode->getAttribute('name')) {
                             // Optional debug output
                             if ($executionOptions['troubleshoot']) {
                                 self::displayMessage('Removing image alias image variation ' . "'" . $aliasNode->getAttribute('name') . "'" . ' from attribute dom document');
                             }
                             $aliasNode->parentNode->removeChild($aliasNode);
                         }
                     }
                     $imageHandler->ContentObjectAttributeData['DataTypeCustom']['dom_tree'] = $doc;
                     unset($imageHandler->ContentObjectAttributeData['DataTypeCustom']['alias_list']);
                     $imageHandler->storeDOMTree($doc, true, $contentObjectAttribute);
                 }
                 // Calculate appropriate message to Alert user with
                 if ($executionOptions['dry']) {
                     $message = "Dry run: Calculating removal of datatype " . $contentObjectAttribute->attribute('data_type_string') . "type image alias variation file " . $filepath;
                 } else {
                     $message = "Removed standard datatype " . $contentObjectAttribute->attribute('data_type_string') . "type image alias variation file " . $filepath;
                 }
                 if (!$executionOptions['dry']) {
                     $dirpath = $aliasListAliasItem['dirpath'];
                     $file = eZClusterFileHandler::instance($filepath);
                     if ($file->exists()) {
                         $file->purge();
                         eZImageFile::removeFilepath($contentObjectAttributeID, $filepath);
                         eZDir::cleanupEmptyDirectories($dirpath);
                         self::scriptIterate($message);
                         $results[] = true;
                     } else {
                         eZDebug::writeError("Image file {$filepath} for alias {$aliasName} does not exist, could not remove from disk", __METHOD__);
                         self::displayMessage("Image file {$filepath} for alias {$aliasName} does not exist, could not remove from disk: " . __METHOD__);
                     }
                     eZContentCacheManager::clearContentCacheIfNeeded($contentObjectID);
                 } else {
                     self::scriptIterate($message);
                     $results[] = true;
                 }
             }
         }
     }
     // Calculate return results based on execution options and results comparison
     if (in_array(true, $results) && count($aliasList) == count($results) && !$executionOptions['dry']) {
         return true;
     }
     return false;
 }
 public function tearDown()
 {
     eZUser::purgeUserCacheByUserId($this->userId);
     eZDir::cleanupEmptyDirectories(eZUser::getCacheDir($this->userId));
     parent::tearDown();
 }