ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.IndAssStorageMigration.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
24 
25 class IndAssStorageMigration implements Setup\Migration
26 {
27  private const DEFAULT_AMOUNT_OF_STEPS = 200;
28  private ilDBInterface $db;
30 
34  private mixed $io;
35 
36  public function getLabel(): string
37  {
38  return "Migrate FSStorage to IRSS";
39  }
40 
42  {
43  return self::DEFAULT_AMOUNT_OF_STEPS;
44  }
45 
46  public function getPreconditions(Environment $environment): array
47  {
48  return array_merge(
50  [
52  ]
53  );
54  }
55 
56  public function prepare(Environment $environment): void
57  {
58  $this->db = $environment->getResource(Setup\Environment::RESOURCE_DATABASE);
59  $settings_factory = $environment->getResource(Setup\Environment::RESOURCE_SETTINGS_FACTORY);
60  $client_ini = $environment->getResource(Setup\Environment::RESOURCE_CLIENT_INI);
61 
62  $DIC = $GLOBALS["DIC"];
63  $GLOBALS["DIC"] = new ILIAS\DI\Container();
64  $GLOBALS["DIC"]["ilDB"] = $this->db;
65  $GLOBALS["DIC"]["ilSetting"] = $settings_factory->settingsFor();
66  $GLOBALS["DIC"]["ilClientIniFile"] = $client_ini;
67 
69  ilInitialisation::bootstrapFilesystems();
70 
71  $this->dic = $GLOBALS["DIC"];
72  $GLOBALS["DIC"] = $DIC;
73 
74  $stakeholder = new ilIndividualAssessmentGradingStakeholder();
75  $this->helper = new \ilResourceStorageMigrationHelper(
76  $stakeholder,
77  $environment
78  );
79  }
80 
84  public function step(Environment $environment): void
85  {
86  $GLOBALS["DIC"] = $this->dic;
87 
88  $query = "SELECT obj_id, usr_id, file_name FROM iass_members WHERE file_name LIKE '%.%' LIMIT 1;";
89  $result = $this->db->query($query);
90  $row = $this->db->fetchAssoc($result);
91 
92  $obj_id = (int)$row['obj_id'];
93  $usr_id = (int)$row['usr_id'];
95  $fs_storage->setUserId($usr_id);
96  $filepath = $fs_storage->getAbsolutePath() . '/' . $row['file_name'];
97 
98  $resource_id = $this->helper->movePathToStorage($filepath, 6);
99  if(! $resource_id) {
100  throw new \Exception('not stored:' . $filepath);
101  }
102 
103  $identifier = $resource_id->serialize();
104  $query = "UPDATE iass_members SET file_name = '$identifier' WHERE obj_id = $obj_id AND usr_id = $usr_id";
105  $this->db->manipulate($query);
106  }
107 
108  public function getRemainingAmountOfSteps(): int
109  {
110  $query = "SELECT COUNT(*) AS amount FROM iass_members WHERE file_name LIKE '%.%';";
111  $result = $this->db->query($query);
112  $row = $this->db->fetchAssoc($result);
113  return (int) $row['amount'];
114  }
115 }
static init(Container $c)
Definition: Init.php:41
$GLOBALS["DIC"]
Definition: wac.php:53
global $DIC
Definition: shib_login.php:22
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
getPreconditions(Environment $environment)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.
Definition: Environment.php:27
prepare(Environment $environment)
step(Environment $environment)