mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-09 15:43:19 -06:00
75 lines
1.5 KiB
PHP
75 lines
1.5 KiB
PHP
<?php
|
|
declare(strict_types = 1);
|
|
namespace FireflyIII\Helpers\Csv\Specifix;
|
|
|
|
use Log;
|
|
|
|
/**
|
|
* Class RabobankDescription
|
|
*
|
|
* @package FireflyIII\Helpers\Csv\Specifix
|
|
*/
|
|
class RabobankDescription extends Specifix implements SpecifixInterface
|
|
{
|
|
/** @var array */
|
|
protected $data;
|
|
|
|
/** @var array */
|
|
protected $row;
|
|
|
|
/**
|
|
* RabobankDescription constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->setProcessorType(self::POST_PROCESSOR);
|
|
}
|
|
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function fix()
|
|
{
|
|
$this->rabobankFixEmptyOpposing();
|
|
|
|
return $this->data;
|
|
|
|
}
|
|
|
|
/**
|
|
* @param array $data
|
|
*/
|
|
public function setData(array $data)
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
/**
|
|
* @param array $row
|
|
*/
|
|
public function setRow(array $row)
|
|
{
|
|
$this->row = $row;
|
|
}
|
|
|
|
/**
|
|
* Fixes Rabobank specific thing.
|
|
*/
|
|
protected function rabobankFixEmptyOpposing()
|
|
{
|
|
Log::debug('RaboSpecifix: Opposing account name is "******".');
|
|
if (is_string($this->data['opposing-account-name']) && strlen($this->data['opposing-account-name']) == 0) {
|
|
Log::debug('RaboSpecifix: opp-name is zero length, changed to: "******"');
|
|
$this->data['opposing-account-name'] = $this->row[10];
|
|
|
|
Log::debug('Description was: "******".');
|
|
$this->data['description'] = trim(str_replace($this->row[10], '', $this->data['description']));
|
|
Log::debug('Description is now: "******".');
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|