Files
firefly-iii/app/Support/FinTS/MetadataParser.php

50 lines
1.5 KiB
PHP
Raw Normal View History

<?php
/**
* FinTS.php
* Copyright (c) 2018 https://github.com/bnw
*
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace FireflyIII\Support\FinTS;
2018-10-21 11:08:36 +02:00
use Fhp\Model\StatementOfAccount\Transaction as FinTSTransaction;
2018-10-21 11:08:36 +02:00
/**
*
* Class MetadataParser
*/
class MetadataParser
{
2018-10-21 11:08:36 +02:00
/**
* @param FinTSTransaction $transaction
*
* @return string
*/
public function getDescription(FinTSTransaction $transaction): string
{
//Given a description like 'EREF+AbcCRED+DE123SVWZ+DefABWA+Ghi' or 'EREF+AbcCRED+DE123SVWZ+Def' return 'Def'
$finTSDescription = $transaction->getDescription1();
2018-10-21 11:08:36 +02:00
$matches = [];
if (1 === preg_match('/SVWZ\+([^\+]*)([A-Z]{4}\+|$)/', $finTSDescription, $matches)) {
return $matches[1];
}
2018-10-21 11:08:36 +02:00
return $finTSDescription;
}
2018-12-31 07:48:23 +01:00
}