mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
147 lines
3.5 KiB
PHP
147 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace FireflyIII\Database\Transaction;
|
|
|
|
use FireflyIII\Database\CommonDatabaseCalls;
|
|
use FireflyIII\Database\CUD;
|
|
use FireflyIII\Database\SwitchUser;
|
|
use FireflyIII\Exception\FireflyException;
|
|
use FireflyIII\Exception\NotImplementedException;
|
|
use Illuminate\Database\Eloquent\Model as Eloquent;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\MessageBag;
|
|
|
|
/**
|
|
* Class Transaction
|
|
*
|
|
* @package FireflyIII\Database
|
|
*/
|
|
class Transaction implements CUD, CommonDatabaseCalls
|
|
{
|
|
use SwitchUser;
|
|
|
|
/**
|
|
* @param Eloquent $model
|
|
*
|
|
* @return bool
|
|
* @throws NotImplementedException
|
|
*/
|
|
public function destroy(Eloquent $model)
|
|
{
|
|
// TODO: Implement destroy() method.
|
|
throw new NotImplementedException;
|
|
}
|
|
|
|
/**
|
|
* @param array $data
|
|
*
|
|
* @return \Eloquent
|
|
* @throws FireflyException
|
|
*/
|
|
public function store(array $data)
|
|
{
|
|
$transaction = new \Transaction;
|
|
$transaction->account()->associate($data['account']);
|
|
$transaction->transactionJournal()->associate($data['transaction_journal']);
|
|
$transaction->amount = floatval($data['amount']);
|
|
if (isset($data['piggybank'])) {
|
|
$transaction->piggybank()->associate($data['piggybank']);
|
|
}
|
|
if (isset($data['description'])) {
|
|
$transaction->description = $data['description'];
|
|
}
|
|
if ($transaction->isValid()) {
|
|
$transaction->save();
|
|
} else {
|
|
throw new FireflyException($transaction->getErrors()->first());
|
|
}
|
|
|
|
return $transaction;
|
|
}
|
|
|
|
/**
|
|
* @param Eloquent $model
|
|
* @param array $data
|
|
*
|
|
* @return bool
|
|
* @throws NotImplementedException
|
|
*/
|
|
public function update(Eloquent $model, array $data)
|
|
{
|
|
// TODO: Implement update() method.
|
|
throw new NotImplementedException;
|
|
}
|
|
|
|
/**
|
|
* Validates an array. Returns an array containing MessageBags
|
|
* errors/warnings/successes.
|
|
*
|
|
* @param array $model
|
|
*
|
|
* @return MessageBag
|
|
*/
|
|
public function validate(array $model)
|
|
{
|
|
$errors = new MessageBag;
|
|
if (is_null($model['account'])) {
|
|
$errors->add('account', 'No account present');
|
|
}
|
|
if (is_null($model['transaction_journal'])) {
|
|
$errors->add('transaction_journal', 'No valid transaction journal present');
|
|
}
|
|
|
|
return $errors;
|
|
}
|
|
|
|
/**
|
|
* Returns an object with id $id.
|
|
*
|
|
* @param int $objectId
|
|
*
|
|
* @return \Eloquent
|
|
* @throws NotImplementedException
|
|
*/
|
|
public function find($objectId)
|
|
{
|
|
// TODO: Implement find() method.
|
|
throw new NotImplementedException;
|
|
}
|
|
|
|
/**
|
|
* Finds an account type using one of the "$what"'s: expense, asset, revenue, opening, etc.
|
|
*
|
|
* @param $what
|
|
*
|
|
* @return \AccountType|null
|
|
* @throws NotImplementedException
|
|
*/
|
|
public function findByWhat($what)
|
|
{
|
|
// TODO: Implement findByWhat() method.
|
|
throw new NotImplementedException;
|
|
}
|
|
|
|
/**
|
|
* Returns all objects.
|
|
*
|
|
* @return Collection
|
|
* @throws NotImplementedException
|
|
*/
|
|
public function get()
|
|
{
|
|
// TODO: Implement get() method.
|
|
throw new NotImplementedException;
|
|
}
|
|
|
|
/**
|
|
* @param array $ids
|
|
*
|
|
* @return Collection
|
|
* @throws NotImplementedException
|
|
*/
|
|
public function getByIds(array $ids)
|
|
{
|
|
// TODO: Implement getByIds() method.
|
|
throw new NotImplementedException;
|
|
}
|
|
} |