Add logic to migrate users' credentials

Signed-off-by: Louis Chemineau <louis@chmn.me>
oc-wnd-migrate
Louis Chemineau 8 months ago
parent 30c7c47ce0
commit 4427fef384
No known key found for this signature in database

@ -104,17 +104,8 @@ class MigrateOc extends Base {
$output->writeln("Successfully migrated");
}
$passwords = $this->getV2StoragePasswords();
if (count($passwords)) {
$output->writeln("Found <info>" . count($passwords) . "</info> stored passwords that need re-encoding");
foreach ($passwords as $id => $password) {
$decoded = $this->decodePassword($password);
if (!$dryRun) {
$this->setStorageConfig($id, $this->encryptPassword($decoded));
}
}
}
$this->migrateV2StoragePasswords($dryRun, $output);
$this->migrateUserCredentials($dryRun, $output);
return 0;
}
@ -167,7 +158,21 @@ class MigrateOc extends Base {
return $configs;
}
private function setStorageConfig(int $id, string $value) {
private function migrateV2StoragePasswords(bool $dryRun, OutputInterface $output): void {
$passwords = $this->getV2StoragePasswords();
if (count($passwords)) {
$output->writeln("Found <info>" . count($passwords) . "</info> stored passwords that need re-encoding");
foreach ($passwords as $id => $password) {
$decoded = $this->decodePassword($password);
if (!$dryRun) {
$this->setStorageConfig($id, $this->encryptPassword($decoded));
}
}
}
}
private function setStorageConfig(int $id, string $value): void {
$query = $this->connection->getQueryBuilder();
$query->update('external_config')
->set('value', $query->createNamedParameter($value))
@ -175,6 +180,43 @@ class MigrateOc extends Base {
$query->executeStatement();
}
/**
* @return array<array<string, string>>
*/
private function getUserCredentials(): array {
$query = $this->connection->getQueryBuilder();
$query->select('user', 'identifier', 'credentials')
->from('credentials');
return $query->executeQuery()->fetchAll();
}
private function migrateUserCredentials(bool $dryRun, OutputInterface $output): void {
$passwords = $this->getUserCredentials();
if (count($passwords)) {
$output->writeln("Found <info>" . count($passwords) . "</info> stored user credentials that need re-encoding");
foreach ($passwords as $passwordRow) {
$decoded = $this->decodePassword($passwordRow["credentials"]);
if (!$dryRun) {
$this->setStorageCredentials($passwordRow, $this->encryptPassword($decoded));
}
}
}
}
private function setStorageCredentials(array $row, string $encryptedPassword): void {
$query = $this->connection->getQueryBuilder();
$query->insert('storages_credentials')
->values([
'user' => $query->createNamedParameter($row['user']),
'identifier' => $query->createNamedParameter($row['identifier']),
'credentials' => $query->createNamedParameter($encryptedPassword),
])
->executeStatement();
}
private function setStorageId(string $old, string $new): bool {
$query = $this->connection->getQueryBuilder();
$query->update('storages')

Loading…
Cancel
Save