memories/lib/Migration/Repair.php

53 lines
1.4 KiB
PHP
Raw Normal View History

2022-11-11 06:18:15 +00:00
<?php
declare(strict_types=1);
namespace OCA\Memories\Migration;
use OCA\Memories\Db\AddMissingIndices;
use OCA\Memories\Service\BinExt;
2022-11-11 06:18:15 +00:00
use OCP\IConfig;
use OCP\Migration\IOutput;
use OCP\Migration\IRepairStep;
2022-11-11 06:22:06 +00:00
class Repair implements IRepairStep
{
public function __construct(protected IConfig $config) {}
2022-11-11 06:22:06 +00:00
public function getName(): string
{
return 'Repair steps for Memories';
}
public function run(IOutput $output): void
{
// Add missing indices
AddMissingIndices::run($output);
// kill any instances of go-vod and exiftool
BinExt::pkill(BinExt::getName('go-vod'));
BinExt::pkill(BinExt::getName('exiftool'));
// detect exiftool
if ($path = BinExt::detectExiftool()) {
$output->info("exiftool binary is configured: {$path}");
} else {
$output->warning('exiftool binary could not be configured');
}
// detect go-vod
if ($path = BinExt::detectGoVod()) {
$output->info("go-vod binary is configured: {$path}");
} else {
$output->warning('go-vod binary could not be configured');
}
// detect ffmpeg
if ($path = BinExt::detectFFmpeg()) {
$output->info("ffmpeg binary is configured: {$path}");
} else {
$output->warning('ffmpeg binary could not be configured');
}
2022-11-11 06:22:06 +00:00
}
}