Skip to content

Commit 2a764ab

Browse files
committed
fixed migration. store status on success
1 parent 041ad9f commit 2a764ab

File tree

7 files changed

+33
-4
lines changed

7 files changed

+33
-4
lines changed

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@
139139
"Cv\\": "module/Cv/src",
140140
"Install\\": "module/Install/src",
141141
"Jobs\\": "module/Jobs/src",
142+
"Orders\\": "module/Orders/src",
142143
"Organizations\\": "module/Organizations/src",
143144
"Pdf\\": "module/Pdf/src",
144145
"Settings\\": "module/Settings/src",

config/modules.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
'Geo',
2020
'Organizations',
2121
'ReleaseTools',
22-
'Orders',
22+
//'Orders',
2323
'Yawik\\Migration'
2424
];

features/organization/insert.feature

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@organization
12
Feature: Add new organization
23
In order to post a job
34
As an admin

module/Migration/src/Controller/ConsoleController.php

+18-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
use Laminas\Mvc\Console\Controller\AbstractConsoleController;
99
use Psr\Container\ContainerInterface;
1010
use Yawik\Migration\Contracts\MigratorInterface;
11+
use Yawik\Migration\Handler\MigrationHandler;
1112
use Yawik\Migration\Migrator\Version36;
1213

1314
class ConsoleController extends AbstractConsoleController
@@ -16,31 +17,46 @@ class ConsoleController extends AbstractConsoleController
1617
* @var iterable|MigratorInterface[]
1718
*/
1819
private iterable $migrators;
20+
/**
21+
* @var MigrationHandler
22+
*/
23+
private MigrationHandler $handler;
1924

2025
/**
2126
* MigrationController constructor.
2227
*
28+
* @param MigrationHandler $handler
2329
* @param iterable $migrators
2430
*/
2531
public function __construct(
32+
MigrationHandler $handler,
2633
iterable $migrators
2734
)
2835
{
2936
$this->migrators = $migrators;
37+
$this->handler = $handler;
3038
}
3139

3240
public static function factory(ContainerInterface $container)
3341
{
42+
$handler = $container->get(MigrationHandler::class);
3443
$migrators = [];
3544
$migrators[] = $container->get(Version36::class);
3645

37-
return new self($migrators);
46+
return new self($handler, $migrators);
3847
}
3948

4049
public function migrateAction()
4150
{
51+
$handler = $this->handler;
4252
foreach($this->migrators as $migrator){
43-
$migrator->migrate();
53+
$status = $handler->findOrCreate($migrator, true);
54+
if(!$status->isMigrated()){
55+
$success = $migrator->migrate();
56+
if($success){
57+
$handler->migrated($migrator);
58+
}
59+
}
4460
}
4561
}
4662

module/Migration/src/Handler/MigrationHandler.php

+3
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,11 @@ public function migrated(MigratorInterface $migrator): Migration
6969
{
7070
$migration = $this->findOrCreate($migrator);
7171
if(!is_null($migration)){
72+
$dm = $this->dm;
7273
$migration->setMigrated(true);
7374
$migration->setMigratedAt(new \DateTime());
75+
$dm->persist($migration);
76+
$dm->flush();
7477
return $migration;
7578
}
7679
throw new InvalidArgumentException(sprintf(

module/Migration/src/Migrator/Version36/FileProcessor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function process(): bool
8383
$progressBar->finish();
8484
$this->output->writeln("");
8585
$this->output->writeln("");
86-
return false;
86+
return true;
8787
}
8888

8989
private function processFile(ObjectId $fileId)

module/Migration/src/Migrator/Version36/OrganizationProcessor.php

+8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
use MongoDB\Collection;
1111
use Organizations\Entity\Organization;
1212
use Organizations\Entity\OrganizationImage;
13+
use Symfony\Component\Console\Helper\ProgressBar;
1314
use Symfony\Component\Console\Output\OutputInterface;
1415
use Yawik\Migration\Contracts\ProcessorInterface;
1516
use Yawik\Migration\Util\MongoUtilTrait;
@@ -36,8 +37,14 @@ public function process(): bool
3637
{
3738
$col = $this->collection;
3839

40+
$count = $col->countDocuments();
41+
$progressBar = new ProgressBar($this->output, $count);
42+
$progressBar->setFormat('<info>processing document </info><comment>organizations</comment> [%current%/%max%]');
43+
$progressBar->start();
44+
3945
$status = true;
4046
foreach($col->find() as $current){
47+
$progressBar->advance();
4148
$val = $this->getNamespacedValue('images.images', $current);
4249
if(!is_null($val)){
4350
$col->updateOne(
@@ -51,6 +58,7 @@ public function process(): bool
5158
}
5259
}
5360

61+
$progressBar->finish();
5462
return $status;
5563
}
5664

0 commit comments

Comments
 (0)