firefly-iii/app/Support/Import/Placeholder/ImportTransaction.php

336 lines
9.3 KiB
PHP
Raw Normal View History

2018-05-07 12:21:12 -05:00
<?php
/**
* Transaction.php
* Copyright (c) 2018 thegrumpydictator@gmail.com
*
* 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\Import\Placeholder;
use FireflyIII\Exceptions\FireflyException;
/**
* Class ImportTransaction
*/
class ImportTransaction
{
/** @var string */
private $accountBic;
/** @var string */
private $accountIban;
/** @var int */
private $accountId;
/** @var string */
private $accountName;
/** @var string */
2018-05-07 13:35:14 -05:00
private $accountNumber;
/** @var string */
2018-05-07 12:21:12 -05:00
private $amount;
/** @var string */
private $amountCredit;
/** @var string */
private $amountDebit;
/** @var int */
private $billId;
2018-05-07 13:35:14 -05:00
/** @var string */
private $billName;
2018-05-07 12:21:12 -05:00
/** @var int */
private $budgetId;
2018-05-07 13:35:14 -05:00
/** @var string */
private $budgetName;
2018-05-07 12:21:12 -05:00
/** @var int */
private $categoryId;
2018-05-07 13:35:14 -05:00
/** @var string */
private $categoryName;
/** @var string */
private $currencyCode;
2018-05-07 12:21:12 -05:00
/** @var int */
private $currencyId;
/** @var string */
2018-05-07 13:35:14 -05:00
private $currencyName;
/** @var string */
private $currencySymbol;
/** @var string */
2018-05-07 12:21:12 -05:00
private $date;
/** @var string */
private $description;
/** @var string */
private $externalId;
/** @var string */
private $foreignAmount;
2018-05-07 13:35:14 -05:00
/** @var string */
private $foreignCurrencyCode;
2018-05-07 12:21:12 -05:00
/** @var int */
private $foreignCurrencyId;
/** @var array */
private $meta;
/** @var array */
private $modifiers;
/** @var string */
private $note;
/** @var string */
private $opposingBic;
/** @var string */
private $opposingIban;
/** @var int */
private $opposingId;
/** @var string */
private $opposingName;
2018-05-07 13:35:14 -05:00
/** @var string */
private $opposingNumber;
2018-05-07 12:21:12 -05:00
/** @var array */
private $tags;
2018-05-07 13:35:14 -05:00
/**
* @return array
*/
public function getMeta(): array
{
return $this->meta;
}
/**
* @return string
*/
public function getNote(): string
{
return $this->note;
}
2018-05-07 12:21:12 -05:00
/**
* ImportTransaction constructor.
*/
public function __construct()
{
$this->tags = [];
$this->modifiers = [];
$this->meta = [];
$this->description = '';
$this->note = '';
2018-05-07 13:35:14 -05:00
// mappable items, set to 0:
$this->accountId = 0;
$this->budgetId = 0;
$this->billId = 0;
$this->currencyId = 0;
$this->categoryId = 0;
$this->foreignCurrencyId = 0;
$this->opposingId = 0;
}
/**
* @return string
*/
public function getDescription(): string
{
return $this->description;
}
/**
* @return int
*/
public function getBillId(): int
{
return $this->billId;
}
/**
* @return null|string
*/
public function getBillName(): ?string
{
return $this->billName;
2018-05-07 12:21:12 -05:00
}
2018-05-07 13:35:14 -05:00
2018-05-07 12:21:12 -05:00
/**
* @param ColumnValue $columnValue
*
* @throws FireflyException
*/
public function addColumnValue(ColumnValue $columnValue): void
{
switch ($columnValue->getRole()) {
default:
throw new FireflyException(
sprintf('ImportTransaction cannot handle role "%s" with value "%s"', $columnValue->getRole(), $columnValue->getValue())
);
case 'account-id':
// could be the result of a mapping?
$this->accountId = $this->getMappedValue($columnValue);
break;
2018-05-07 13:35:14 -05:00
case 'account-iban':
$this->accountIban = $columnValue->getValue();
break;
2018-05-07 12:21:12 -05:00
case 'account-name':
$this->accountName = $columnValue->getValue();
break;
2018-05-07 13:35:14 -05:00
case 'account-bic':
$this->accountBic = $columnValue->getValue();
break;
case 'account-number':
$this->accountNumber = $columnValue->getValue();
2018-05-07 12:21:12 -05:00
break;
case'amount_debit':
$this->amountDebit = $columnValue->getValue();
break;
case'amount_credit':
$this->amountCredit = $columnValue->getValue();
break;
case 'amount':
$this->amount = $columnValue->getValue();
break;
case 'amount_foreign':
$this->foreignAmount = $columnValue->getValue();
break;
case 'bill-id':
$this->billId = $this->getMappedValue($columnValue);
break;
2018-05-07 13:35:14 -05:00
case 'bill-name':
$this->billName = $columnValue->getValue();
break;
2018-05-07 12:21:12 -05:00
case 'budget-id':
$this->budgetId = $this->getMappedValue($columnValue);
break;
2018-05-07 13:35:14 -05:00
case 'budget-name':
$this->budgetName = $columnValue->getValue();
break;
2018-05-07 12:21:12 -05:00
case 'category-id':
$this->categoryId = $this->getMappedValue($columnValue);
break;
2018-05-07 13:35:14 -05:00
case 'category-name':
$this->categoryName = $columnValue->getValue();
break;
2018-05-07 12:21:12 -05:00
case 'currency-id':
$this->currencyId = $this->getMappedValue($columnValue);
break;
2018-05-07 13:35:14 -05:00
case 'currency-name':
$this->currencyName = $columnValue->getValue();
break;
case 'currency-code':
$this->currencyCode = $columnValue->getValue();
break;
case 'currency-symbol':
$this->currencySymbol = $columnValue->getValue();
break;
case 'external-id':
$this->externalId = $columnValue->getValue();
break;
case 'sepa-ct-id';
case 'sepa-ct-op';
case 'sepa-db';
case 'sepa-cc':
case 'sepa-country';
case 'sepa-ep';
case 'sepa-ci';
case 'internal-reference':
case 'date-interest':
case 'date-invoice':
case 'date-book':
case 'date-payment':
case 'date-process':
case 'date-due':
$this->meta[$columnValue->getRole()] = $columnValue->getValue();
break;
case 'foreign-currency-id':
$this->foreignCurrencyId = $this->getMappedValue($columnValue);
break;
case 'foreign-currency-code':
$this->foreignCurrencyCode = $columnValue->getValue();
break;
2018-05-07 12:21:12 -05:00
case 'date-transaction':
$this->date = $columnValue->getValue();
break;
case 'description':
$this->description .= $columnValue->getValue();
break;
case 'note':
$this->note .= $columnValue->getValue();
break;
2018-05-07 13:35:14 -05:00
2018-05-07 12:21:12 -05:00
case 'opposing-id':
$this->opposingId = $this->getMappedValue($columnValue);
break;
2018-05-07 13:35:14 -05:00
case 'opposing-iban':
$this->opposingIban = $columnValue->getValue();
break;
2018-05-07 12:21:12 -05:00
case 'opposing-name':
$this->opposingName = $columnValue->getValue();
break;
case 'opposing-bic':
$this->opposingBic = $columnValue->getValue();
break;
2018-05-07 13:35:14 -05:00
case 'opposing-number':
$this->opposingNumber = $columnValue->getValue();
break;
case 'rabo-debit-credit':
case 'ing-debit-credit':
$this->modifiers[$columnValue->getRole()] = $columnValue->getValue();
break;
2018-05-07 12:21:12 -05:00
case 'tags-comma':
// todo split using pre-processor.
$this->tags = $columnValue->getValue();
break;
case 'tags-space':
// todo split using pre-processor.
$this->tags = $columnValue->getValue();
break;
case '_ignore':
2018-05-07 13:35:14 -05:00
break;
2018-05-07 12:21:12 -05:00
}
}
2018-05-07 13:35:14 -05:00
/**
* @return string
*/
public function getDate(): string
{
return $this->date;
}
/**
* @return array
*/
public function getTags(): array
{
return $this->tags;
}
2018-05-07 12:21:12 -05:00
/**
* Returns the mapped value if it exists in the ColumnValue object.
*
* @param ColumnValue $columnValue
*
* @return int
*/
private function getMappedValue(ColumnValue $columnValue): int
{
return $columnValue->getMappedValue() > 0 ? $columnValue->getMappedValue() : (int)$columnValue->getValue();
}
}