19 declare(strict_types=1);
38 return "Migrate FSStorage to IRSS";
43 return self::DEFAULT_AMOUNT_OF_STEPS;
59 $settings_factory = $environment->
getResource(
Setup\Environment::RESOURCE_SETTINGS_FACTORY);
60 $client_ini = $environment->
getResource(
Setup\Environment::RESOURCE_CLIENT_INI);
65 $GLOBALS[
"DIC"][
"ilSetting"] = $settings_factory->settingsFor();
66 $GLOBALS[
"DIC"][
"ilClientIniFile"] = $client_ini;
69 ilInitialisation::bootstrapFilesystems();
75 $this->helper = new \ilResourceStorageMigrationHelper(
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);
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'];
98 $resource_id = $this->helper->movePathToStorage($filepath, 6);
100 throw new \Exception(
'not stored:' . $filepath);
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);
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'];
const DEFAULT_AMOUNT_OF_STEPS
static getInstance(int $container_id=0)
static init(Container $c)
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...
getDefaultAmountOfStepsPerRun()
An environment holds resources to be used in the setup process.
prepare(Environment $environment)
getRemainingAmountOfSteps()
step(Environment $environment)
static getPreconditions()