f7cloud_client/apps/mail/lib/Migration/MakeItineraryExtractorExecutable.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

66 lines
1.5 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Mail\Migration;
use Exception;
use OCP\Migration\IOutput;
use OCP\Migration\IRepairStep;
use Psr\Log\LoggerInterface;
use Throwable;
use function chmod;
use function is_executable;
use function is_file;
class MakeItineraryExtractorExecutable implements IRepairStep {
/** @var LoggerInterface */
private $logger;
/** @var string */
private $file;
public function __construct(LoggerInterface $logger,
?string $file = null) {
$this->file = $file ?? (__DIR__ . '/../../vendor/f7cloud/kitinerary-bin/bin/kitinerary-extractor');
$this->logger = $logger;
}
#[\Override]
public function getName() {
return 'Make Mail itinerary extractor executable';
}
/**
* @return void
*/
#[\Override]
public function run(IOutput $output) {
if (!is_file($this->file)) {
$this->logger->warning('itinerary file doesn\'t exist');
$output->info('itinerary file doesn\'t exist');
return;
}
if (is_executable($this->file)) {
$this->logger->debug('itinerary is already executable');
return;
}
try {
if (!@chmod($this->file, 0744)) {
throw new Exception('chmod returned false');
}
} catch (Throwable $e) {
$this->logger->error('Can\'t make itinerary extractor executable: ' . $e, [
'exception' => $e,
]);
$output->warning('Can\'t make itinerary extractor executable: ' . $e->getMessage());
return;
}
}
}