feat: cli command to download travel xml data from buspro api

This commit is contained in:
Björn Fromme
2026-01-14 16:57:17 +01:00
parent 6cdede138e
commit 398eb448cb
2 changed files with 181 additions and 1 deletions
+71 -1
View File
@@ -401,6 +401,30 @@ class ApiClient
return $this->sendRequest(static::TYPE_PRODUCT_DATA, $data, ['hotelId' => $hotelId]);
}
/**
* Fetches raw XML travel data from the BusProNet API.
*
* Returns the unprocessed XML response for direct storage in the XML export directory.
* The response format matches the XML export structure from BusPro.
*
* @param int $travelId The travel product ID to fetch
*
* @return string The raw XML response
*
* @throws ApiClientException If the API request fails
*/
public function getTravelDataXml(int $travelId): string
{
$data = [
'user' => $this->config['bpn_username'],
'key' => $this->createKey($this->config['bpn_username'], $this->config['bpn_password'], static::TYPE_PRODUCT_DATA),
'satz' => ['@typ' => static::TYPE_PRODUCT_DATA],
'idprodukt' => $travelId,
];
return $this->sendRequestRaw($data);
}
/**
* @throws ApiClientException
*/
@@ -582,6 +606,14 @@ class ApiClient
return $this->executeWithRetry(fn () => $this->doSendRequest($type, $data, $additionalArgs, $debug), $type);
}
/**
* @throws ApiClientException
*/
private function sendRequestRaw(array $data): string
{
return $this->executeWithRetry(fn () => $this->doSendRequestRaw($data));
}
/**
* Executes an operation with automatic retry on immediate connection close.
*
@@ -680,6 +712,44 @@ class ApiClient
throw new ApiClientException('Unexpected response received from API');
}
/**
* @throws ApiClientException
* @throws ImmediateConnectionCloseException
*/
private function doSendRequestRaw(array $data): string
{
$requestId = $this->getRequestId();
$body = $this->serializer->serialize($data, 'xml', [
XmlEncoder::ROOT_NODE_NAME => 'anfrage',
XmlEncoder::ENCODING => 'UTF-8',
]);
if (true === $this->config['debug']) {
$this->dumpXmlToFile('request', $requestId, $body);
}
$socket = $this->connect();
$this->logger->info('Sending raw request to BPN API', [
'requestId' => $requestId,
'type' => $data['satz']['@typ'],
'port' => $this->selectedPort,
]);
$this->send($socket, $body);
$response = $this->receive($socket);
$this->disconnect($socket);
$xml = substr($response, 10);
if (true === $this->config['debug']) {
$this->dumpXmlToFile('response', $requestId, $xml);
}
return $xml;
}
private function dumpXmlToFile(string $type, string $requestId, string $body): void
{
try {
@@ -693,7 +763,7 @@ class ApiClient
$baseId = $this->requestStack->getMainRequest()?->attributes->get('request_id')
?? date(DATE_ATOM);
return $baseId . '_' . ++$this->requestCounter;
return $baseId.'_'.++$this->requestCounter;
}
private function createKey(string $username, string $password, string $type): string
+110
View File
@@ -0,0 +1,110 @@
<?php
declare(strict_types=1);
namespace App\Command;
use App\BusProNet\ApiClient;
use App\BusProNet\Exception\ApiClientException;
use League\Flysystem\FilesystemException;
use League\Flysystem\FilesystemOperator;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
use Symfony\Contracts\Cache\CacheInterface;
#[AsCommand(
name: 'app:bpn:fetch-travel',
description: 'Fetches travel data directly from the BusProNet API and saves it to the XML export directory'
)]
class BpnFetchTravelCommand extends Command
{
private const CACHE_KEYS_TO_INVALIDATE = [
'bpn_travels_mapping',
];
public function __construct(
private readonly ApiClient $apiClient,
private readonly FilesystemOperator $xmlExport,
private readonly CacheInterface $cache,
private readonly LoggerInterface $logger,
) {
parent::__construct();
}
protected function configure(): void
{
$this
->addArgument('travel-id', InputArgument::REQUIRED, 'The travel product ID to fetch')
->addOption('filename', 'f', InputOption::VALUE_REQUIRED, 'Output filename (default: Ziel_{travel-id}.xml)')
->addOption('dry-run', null, InputOption::VALUE_NONE, 'Fetch and display info without saving');
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$io = new SymfonyStyle($input, $output);
$travelId = (int) $input->getArgument('travel-id');
$filename = $input->getOption('filename') ?? sprintf('Ziel_%d.xml', $travelId);
$dryRun = $input->getOption('dry-run');
$io->text(sprintf('Fetching travel data for product ID %d...', $travelId));
try {
$xml = $this->apiClient->getTravelDataXml($travelId);
} catch (ApiClientException $e) {
$io->error(sprintf('API request failed: %s', $e->getMessage()));
$this->logger->error('Failed to fetch travel data from API', [
'travelId' => $travelId,
'error' => $e->getMessage(),
]);
return Command::FAILURE;
}
$io->text(sprintf('Received %d bytes of XML data', strlen($xml)));
if ($dryRun) {
$io->note('Dry-run mode: not saving to file');
$io->text($xml);
return Command::SUCCESS;
}
try {
$this->xmlExport->write($filename, $xml);
} catch (FilesystemException $e) {
$io->error(sprintf('Failed to write file: %s', $e->getMessage()));
$this->logger->error('Failed to write travel XML to file', [
'travelId' => $travelId,
'filename' => $filename,
'error' => $e->getMessage(),
]);
return Command::FAILURE;
}
$this->invalidateCaches();
$io->success(sprintf('Saved to %s and invalidated travel mapping cache', $filename));
$this->logger->info('Travel data fetched and saved', [
'travelId' => $travelId,
'filename' => $filename,
'bytes' => strlen($xml),
]);
return Command::SUCCESS;
}
private function invalidateCaches(): void
{
foreach (self::CACHE_KEYS_TO_INVALIDATE as $key) {
$this->cache->delete($key);
}
}
}