19 declare(strict_types=1);
46 string $filesystem_base_path
56 $existing_handler = $this->handler_factory->getHandlerForResource($resource);
57 $existing_path = $this->filesystem_base_path .
'/' . $existing_handler->getFullContainerPath(
61 $new_handler = $this->handler_factory->getHandlerForStorageId($to_handler_id);
62 $destination_path = $this->filesystem_base_path .
'/' . $new_handler->getFullContainerPath(
66 if (!file_exists($existing_path)) {
68 $this->resource_builder->remove($resource);
72 if (!is_dir(dirname($destination_path)) && !mkdir(dirname($destination_path), 0777,
true)) {
75 if (rename($existing_path, $destination_path)) {
76 $this->database->manipulateF(
77 "UPDATE il_resource SET storage_id = %s WHERE identification = %s LIMIT 1",
83 if ($this->clean_up) {
84 $existing_handler->cleanUpContainer($resource);
95 foreach (glob($path . DIRECTORY_SEPARATOR .
"*") as $file) {
98 return $empty && rmdir($path);
migrate(StorableResource $resource, string $to_handler_id)
Interface StorageResource.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ResourceBuilder $resource_builder
string $filesystem_base_path
StorageHandlerFactory $handler_factory
__construct(StorageHandlerFactory $handler_factory, ResourceBuilder $resource_builder, \ilDBInterface $database, string $filesystem_base_path)
Migrator constructor.
removeEmptySubFolders(string $path)
Class StorageHandlerFactory.