ILIAS  trunk Revision v11.0_alpha-1861-g09f3d197f78
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilHTLMMigration Class Reference
+ Inheritance diagram for ilHTLMMigration:
+ Collaboration diagram for ilHTLMMigration:

Public Member Functions

 getLabel ()
 
 getDefaultAmountOfStepsPerRun ()
 Tell the default amount of steps to be executed for one run of the migration. More...
 
 getPreconditions (Environment $environment)
 Objectives the migration depend on. More...
 
 prepare (Environment $environment)
 Prepare the migration by means of some environment. More...
 
 step (Environment $environment)
 Run one step of the migration. More...
 
 getRemainingAmountOfSteps ()
 Count up how many "things" need to be migrated. More...
 
 getFileNameCallback (string $pattern)
 
 getRevisionNameCallback ()
 

Protected Member Functions

 buildBasePath (int $object_id)
 

Protected Attributes

ilResourceStorageMigrationHelper $helper
 

Private Member Functions

 recursiveRmDir (string $path)
 

Additional Inherited Members

- Data Fields inherited from ILIAS\Setup\Migration
const INFINITE = -1
 

Detailed Description

Definition at line 25 of file class.ilHTLMMigration.php.

Member Function Documentation

◆ buildBasePath()

ilHTLMMigration::buildBasePath ( int  $object_id)
protected

Definition at line 106 of file class.ilHTLMMigration.php.

References CLIENT_WEB_DIR.

Referenced by step().

106  : string
107  {
108  return CLIENT_WEB_DIR . '/lm_data/lm_' . $object_id;
109  }
const CLIENT_WEB_DIR
Definition: constants.php:47
+ Here is the caller graph for this function:

◆ getDefaultAmountOfStepsPerRun()

ilHTLMMigration::getDefaultAmountOfStepsPerRun ( )

Tell the default amount of steps to be executed for one run of the migration.

Return Migration::INFINITE if all units should be migrated at once.

Implements ILIAS\Setup\Migration.

Definition at line 34 of file class.ilHTLMMigration.php.

34  : int
35  {
36  return 10000;
37  }

◆ getFileNameCallback()

ilHTLMMigration::getFileNameCallback ( string  $pattern)

Definition at line 111 of file class.ilHTLMMigration.php.

111  : Closure
112  {
113  return static function (string $file_name) use ($pattern): string {
114  if (preg_match($pattern, $file_name, $matches)) {
115  return $matches[1] ?? $file_name;
116  }
117  return $file_name;
118  };
119  }

◆ getLabel()

ilHTLMMigration::getLabel ( )
Returns
string - a meaningful and concise description for your migration.

Implements ILIAS\Setup\Migration.

Definition at line 29 of file class.ilHTLMMigration.php.

29  : string
30  {
31  return 'Migration of HTML Learning Modules to the Resource Storage Service.';
32  }

◆ getPreconditions()

ilHTLMMigration::getPreconditions ( Environment  $environment)

Objectives the migration depend on.

Exceptions
UnachievableExceptionif the objective is not achievable
Returns
Objective[]

Implements ILIAS\Setup\Migration.

Definition at line 39 of file class.ilHTLMMigration.php.

References ilResourceStorageMigrationHelper\getPreconditions().

+ Here is the call graph for this function:

◆ getRemainingAmountOfSteps()

ilHTLMMigration::getRemainingAmountOfSteps ( )

Count up how many "things" need to be migrated.

This helps the admin to decide how big he can create the steps and also how long a migration takes

Implements ILIAS\Setup\Migration.

Definition at line 96 of file class.ilHTLMMigration.php.

References Vendor\Package\$d, and $r.

96  : int
97  {
98  $r = $this->helper->getDatabase()->query(
99  "SELECT COUNT(id) AS amount FROM file_based_lm WHERE rid IS NULL OR rid = ''"
100  );
101  $d = $this->helper->getDatabase()->fetchObject($r) ?? new stdClass();
102 
103  return (int) ($d->amount ?? 0);
104  }
$r

◆ getRevisionNameCallback()

ilHTLMMigration::getRevisionNameCallback ( )

Definition at line 121 of file class.ilHTLMMigration.php.

121  : Closure
122  {
123  return static function (string $file_name): string {
124  return md5($file_name);
125  };
126  }

◆ prepare()

ilHTLMMigration::prepare ( Environment  $environment)

Prepare the migration by means of some environment.

This is not supposed to modify the environment, but will be run to prime the migration object to run step and getRemainingAmountOfSteps afterwards.

Implements ILIAS\Setup\Migration.

Definition at line 44 of file class.ilHTLMMigration.php.

44  : void
45  {
46  $this->helper = new ilResourceStorageMigrationHelper(
47  new ilHTLMStakeholder(),
48  $environment
49  );
50  }

◆ recursiveRmDir()

ilHTLMMigration::recursiveRmDir ( string  $path)
private

Definition at line 87 of file class.ilHTLMMigration.php.

Referenced by step().

87  : void
88  {
89  // recursively remove directory
90  $files = array_diff(scandir($path), ['.', '..']);
91  foreach ($files as $file) {
92  (is_dir("$path/$file")) ? $this->recursiveRmDir("$path/$file") : unlink("$path/$file");
93  }
94  }
$path
Definition: ltiservices.php:29
recursiveRmDir(string $path)
+ Here is the caller graph for this function:

◆ step()

ilHTLMMigration::step ( Environment  $environment)

Run one step of the migration.

Implements ILIAS\Setup\Migration.

Definition at line 52 of file class.ilHTLMMigration.php.

References Vendor\Package\$d, $r, buildBasePath(), ILIAS\Repository\int(), null, and recursiveRmDir().

52  : void
53  {
54  $r = $this->helper->getDatabase()->query(
55  "SELECT id FROM file_based_lm WHERE rid IS NULL OR rid = '' LIMIT 1;"
56  );
57 
58  $d = $this->helper->getDatabase()->fetchObject($r);
59  $object_id = (int) ($d->id ?? null);
60 
61  $resource_owner_id = (int) ($d->owner_id ?? 6); // TODO JOIN
62 
63  $lm_path = $this->buildBasePath($object_id);
64 
65  $rid = $this->helper->moveDirectoryToContainerResource(
66  $lm_path,
67  $resource_owner_id
68  );
69 
70  if ($rid !== null) {
71  $this->helper->getDatabase()->update(
72  'file_based_lm',
73  ['rid' => ['text', $rid->serialize()]],
74  ['id' => ['integer', $object_id],]
75  );
76 
77  $this->recursiveRmDir($lm_path);
78  } else {
79  $this->helper->getDatabase()->update(
80  'file_based_lm',
81  ['rid' => ['text', '-']],
82  ['id' => ['integer', $object_id],]
83  );
84  }
85  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
buildBasePath(int $object_id)
recursiveRmDir(string $path)
$r
+ Here is the call graph for this function:

Field Documentation

◆ $helper

ilResourceStorageMigrationHelper ilHTLMMigration::$helper
protected

Definition at line 27 of file class.ilHTLMMigration.php.


The documentation for this class was generated from the following file: