mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-06 12:45:30 +00:00
Refactor code to traits.
This commit is contained in:
@@ -59,6 +59,48 @@ class ResetPasswordController extends Controller
|
|||||||
$this->middleware('guest');
|
$this->middleware('guest');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reset the given user's password.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Http\Request $request
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\JsonResponse
|
||||||
|
* @throws \Illuminate\Validation\ValidationException
|
||||||
|
*/
|
||||||
|
public function reset(Request $request)
|
||||||
|
{
|
||||||
|
$loginProvider = config('firefly.login_provider');
|
||||||
|
if ('eloquent' !== $loginProvider) {
|
||||||
|
$message = sprintf('Cannot reset password when authenticating over "%s".', $loginProvider);
|
||||||
|
|
||||||
|
return view('error', compact('message'));
|
||||||
|
}
|
||||||
|
|
||||||
|
$rules = [
|
||||||
|
'token' => 'required',
|
||||||
|
'email' => 'required|email',
|
||||||
|
'password' => 'required|confirmed|min:6|secure_password',
|
||||||
|
];
|
||||||
|
|
||||||
|
$this->validate($request, $rules, $this->validationErrorMessages());
|
||||||
|
|
||||||
|
// Here we will attempt to reset the user's password. If it is successful we
|
||||||
|
// will update the password on an actual user model and persist it to the
|
||||||
|
// database. Otherwise we will parse the error and return the response.
|
||||||
|
$response = $this->broker()->reset(
|
||||||
|
$this->credentials($request), function ($user, $password) {
|
||||||
|
$this->resetPassword($user, $password);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
// If the password was successfully reset, we will redirect the user back to
|
||||||
|
// the application's home authenticated view. If there is an error we can
|
||||||
|
// redirect them back to where they came from with their error message.
|
||||||
|
return $response === Password::PASSWORD_RESET
|
||||||
|
? $this->sendResetResponse($request, $response)
|
||||||
|
: $this->sendResetFailedResponse($request, $response);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display the password reset view for the given token.
|
* Display the password reset view for the given token.
|
||||||
*
|
*
|
||||||
@@ -89,57 +131,7 @@ class ResetPasswordController extends Controller
|
|||||||
|
|
||||||
/** @noinspection PhpUndefinedFieldInspection */
|
/** @noinspection PhpUndefinedFieldInspection */
|
||||||
return view('auth.passwords.reset')->with(
|
return view('auth.passwords.reset')->with(
|
||||||
['token' => $token, 'email' => $request->email, 'allowRegistration' => $allowRegistration,'pageTitle' => $pageTitle]
|
['token' => $token, 'email' => $request->email, 'allowRegistration' => $allowRegistration, 'pageTitle' => $pageTitle]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Reset the given user's password.
|
|
||||||
*
|
|
||||||
* @param \Illuminate\Http\Request $request
|
|
||||||
*
|
|
||||||
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\JsonResponse
|
|
||||||
* @throws \Illuminate\Validation\ValidationException
|
|
||||||
*/
|
|
||||||
public function reset(Request $request)
|
|
||||||
{
|
|
||||||
$loginProvider = config('firefly.login_provider');
|
|
||||||
if ('eloquent' !== $loginProvider) {
|
|
||||||
$message = sprintf('Cannot reset password when authenticating over "%s".', $loginProvider);
|
|
||||||
|
|
||||||
return view('error', compact('message'));
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->validate($request, $this->rules(), $this->validationErrorMessages());
|
|
||||||
|
|
||||||
// Here we will attempt to reset the user's password. If it is successful we
|
|
||||||
// will update the password on an actual user model and persist it to the
|
|
||||||
// database. Otherwise we will parse the error and return the response.
|
|
||||||
$response = $this->broker()->reset(
|
|
||||||
$this->credentials($request), function ($user, $password) {
|
|
||||||
$this->resetPassword($user, $password);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
// If the password was successfully reset, we will redirect the user back to
|
|
||||||
// the application's home authenticated view. If there is an error we can
|
|
||||||
// redirect them back to where they came from with their error message.
|
|
||||||
return $response === Password::PASSWORD_RESET
|
|
||||||
? $this->sendResetResponse($request, $response)
|
|
||||||
: $this->sendResetFailedResponse($request, $response);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the password reset validation rules.
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
protected function rules()
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'token' => 'required',
|
|
||||||
'email' => 'required|email',
|
|
||||||
'password' => 'required|confirmed|min:6|secure_password',
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -31,12 +31,10 @@ use FireflyIII\Http\Controllers\Controller;
|
|||||||
use FireflyIII\Models\Budget;
|
use FireflyIII\Models\Budget;
|
||||||
use FireflyIII\Models\BudgetLimit;
|
use FireflyIII\Models\BudgetLimit;
|
||||||
use FireflyIII\Models\TransactionType;
|
use FireflyIII\Models\TransactionType;
|
||||||
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
|
|
||||||
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||||||
use FireflyIII\Support\CacheProperties;
|
use FireflyIII\Support\Http\Controllers\AugumentData;
|
||||||
use FireflyIII\Support\Http\Controllers\PeriodOverview;
|
use FireflyIII\Support\Http\Controllers\PeriodOverview;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Collection;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@@ -44,10 +42,7 @@ use Illuminate\Support\Collection;
|
|||||||
*/
|
*/
|
||||||
class ShowController extends Controller
|
class ShowController extends Controller
|
||||||
{
|
{
|
||||||
use PeriodOverview;
|
use PeriodOverview, AugumentData;
|
||||||
|
|
||||||
/** @var BudgetRepositoryInterface The budget repository */
|
|
||||||
private $repository;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ShowController constructor.
|
* ShowController constructor.
|
||||||
@@ -62,7 +57,6 @@ class ShowController extends Controller
|
|||||||
function ($request, $next) {
|
function ($request, $next) {
|
||||||
app('view')->share('title', (string)trans('firefly.budgets'));
|
app('view')->share('title', (string)trans('firefly.budgets'));
|
||||||
app('view')->share('mainTitleIcon', 'fa-tasks');
|
app('view')->share('mainTitleIcon', 'fa-tasks');
|
||||||
$this->repository = app(BudgetRepositoryInterface::class);
|
|
||||||
|
|
||||||
return $next($request);
|
return $next($request);
|
||||||
}
|
}
|
||||||
@@ -203,39 +197,4 @@ class ShowController extends Controller
|
|||||||
|
|
||||||
return view('budgets.show', compact('limits', 'budget', 'budgetLimit', 'transactions', 'subTitle'));
|
return view('budgets.show', compact('limits', 'budget', 'budgetLimit', 'transactions', 'subTitle'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets all budget limits for a budget.
|
|
||||||
*
|
|
||||||
* @param Budget $budget
|
|
||||||
* @param Carbon $start
|
|
||||||
* @param Carbon $end
|
|
||||||
*
|
|
||||||
* @return Collection
|
|
||||||
*/
|
|
||||||
protected function getLimits(Budget $budget, Carbon $start, Carbon $end): Collection // get data + augment with info
|
|
||||||
{
|
|
||||||
// properties for cache
|
|
||||||
$cache = new CacheProperties;
|
|
||||||
$cache->addProperty($start);
|
|
||||||
$cache->addProperty($end);
|
|
||||||
$cache->addProperty($budget->id);
|
|
||||||
$cache->addProperty('get-limits');
|
|
||||||
|
|
||||||
if ($cache->has()) {
|
|
||||||
return $cache->get(); // @codeCoverageIgnore
|
|
||||||
}
|
|
||||||
|
|
||||||
$set = $this->repository->getBudgetLimits($budget, $start, $end);
|
|
||||||
$limits = new Collection();
|
|
||||||
|
|
||||||
/** @var BudgetLimit $entry */
|
|
||||||
foreach ($set as $entry) {
|
|
||||||
$entry->spent = $this->repository->spentInPeriod(new Collection([$budget]), new Collection(), $entry->start_date, $entry->end_date);
|
|
||||||
$limits->push($entry);
|
|
||||||
}
|
|
||||||
$cache->store($limits);
|
|
||||||
|
|
||||||
return $set;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -30,7 +30,7 @@ use FireflyIII\Helpers\Filter\InternalTransferFilter;
|
|||||||
use FireflyIII\Http\Controllers\Controller;
|
use FireflyIII\Http\Controllers\Controller;
|
||||||
use FireflyIII\Models\TransactionType;
|
use FireflyIII\Models\TransactionType;
|
||||||
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||||||
use FireflyIII\Support\CacheProperties;
|
use FireflyIII\Support\Http\Controllers\PeriodOverview;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
use Log;
|
use Log;
|
||||||
@@ -41,7 +41,7 @@ use Log;
|
|||||||
*/
|
*/
|
||||||
class NoCategoryController extends Controller
|
class NoCategoryController extends Controller
|
||||||
{
|
{
|
||||||
|
use PeriodOverview;
|
||||||
/** @var JournalRepositoryInterface Journals and transactions overview */
|
/** @var JournalRepositoryInterface Journals and transactions overview */
|
||||||
private $journalRepos;
|
private $journalRepos;
|
||||||
|
|
||||||
@@ -135,92 +135,4 @@ class NoCategoryController extends Controller
|
|||||||
|
|
||||||
return view('categories.no-category', compact('transactions', 'subTitle', 'periods', 'start', 'end'));
|
return view('categories.no-category', compact('transactions', 'subTitle', 'periods', 'start', 'end'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Show period overview for no category view.
|
|
||||||
*
|
|
||||||
* @param Carbon $theDate
|
|
||||||
*
|
|
||||||
* @return Collection
|
|
||||||
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
|
||||||
*/
|
|
||||||
protected function getNoCategoryPeriodOverview(Carbon $theDate): Collection // period overview method.
|
|
||||||
{
|
|
||||||
Log::debug(sprintf('Now in getNoCategoryPeriodOverview(%s)', $theDate->format('Y-m-d')));
|
|
||||||
$range = app('preferences')->get('viewRange', '1M')->data;
|
|
||||||
$first = $this->journalRepos->firstNull();
|
|
||||||
$start = null === $first ? new Carbon : $first->date;
|
|
||||||
$end = $theDate ?? new Carbon;
|
|
||||||
|
|
||||||
Log::debug(sprintf('Start for getNoCategoryPeriodOverview() is %s', $start->format('Y-m-d')));
|
|
||||||
Log::debug(sprintf('End for getNoCategoryPeriodOverview() is %s', $end->format('Y-m-d')));
|
|
||||||
|
|
||||||
// properties for cache
|
|
||||||
$cache = new CacheProperties;
|
|
||||||
$cache->addProperty($start);
|
|
||||||
$cache->addProperty($end);
|
|
||||||
$cache->addProperty('no-category-period-entries');
|
|
||||||
|
|
||||||
if ($cache->has()) {
|
|
||||||
return $cache->get(); // @codeCoverageIgnore
|
|
||||||
}
|
|
||||||
|
|
||||||
$dates = app('navigation')->blockPeriods($start, $end, $range);
|
|
||||||
$entries = new Collection;
|
|
||||||
|
|
||||||
foreach ($dates as $date) {
|
|
||||||
|
|
||||||
// count journals without category in this period:
|
|
||||||
/** @var TransactionCollectorInterface $collector */
|
|
||||||
$collector = app(TransactionCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()
|
|
||||||
->withOpposingAccount()->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::TRANSFER]);
|
|
||||||
$collector->removeFilter(InternalTransferFilter::class);
|
|
||||||
$count = $collector->getTransactions()->count();
|
|
||||||
|
|
||||||
// amount transferred
|
|
||||||
/** @var TransactionCollectorInterface $collector */
|
|
||||||
$collector = app(TransactionCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()
|
|
||||||
->withOpposingAccount()->setTypes([TransactionType::TRANSFER]);
|
|
||||||
$collector->removeFilter(InternalTransferFilter::class);
|
|
||||||
$transferred = app('steam')->positive((string)$collector->getTransactions()->sum('transaction_amount'));
|
|
||||||
|
|
||||||
// amount spent
|
|
||||||
/** @var TransactionCollectorInterface $collector */
|
|
||||||
$collector = app(TransactionCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()->withOpposingAccount()->setTypes(
|
|
||||||
[TransactionType::WITHDRAWAL]
|
|
||||||
);
|
|
||||||
$spent = $collector->getTransactions()->sum('transaction_amount');
|
|
||||||
|
|
||||||
// amount earned
|
|
||||||
/** @var TransactionCollectorInterface $collector */
|
|
||||||
$collector = app(TransactionCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()->withOpposingAccount()->setTypes(
|
|
||||||
[TransactionType::DEPOSIT]
|
|
||||||
);
|
|
||||||
$earned = $collector->getTransactions()->sum('transaction_amount');
|
|
||||||
/** @noinspection PhpUndefinedMethodInspection */
|
|
||||||
$dateStr = $date['end']->format('Y-m-d');
|
|
||||||
$dateName = app('navigation')->periodShow($date['end'], $date['period']);
|
|
||||||
$entries->push(
|
|
||||||
[
|
|
||||||
'string' => $dateStr,
|
|
||||||
'name' => $dateName,
|
|
||||||
'count' => $count,
|
|
||||||
'spent' => $spent,
|
|
||||||
'earned' => $earned,
|
|
||||||
'transferred' => $transferred,
|
|
||||||
'start' => clone $date['start'],
|
|
||||||
'end' => clone $date['end'],
|
|
||||||
]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Log::debug('End of loops');
|
|
||||||
$cache->store($entries);
|
|
||||||
|
|
||||||
return $entries;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -35,6 +35,7 @@ use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
|||||||
use FireflyIII\Repositories\Currency\CurrencyRepositoryInterface;
|
use FireflyIII\Repositories\Currency\CurrencyRepositoryInterface;
|
||||||
use FireflyIII\Support\CacheProperties;
|
use FireflyIII\Support\CacheProperties;
|
||||||
use FireflyIII\Support\Http\Controllers\AugumentData;
|
use FireflyIII\Support\Http\Controllers\AugumentData;
|
||||||
|
use FireflyIII\Support\Http\Controllers\ChartGeneration;
|
||||||
use FireflyIII\Support\Http\Controllers\DateCalculation;
|
use FireflyIII\Support\Http\Controllers\DateCalculation;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
@@ -49,7 +50,7 @@ use Log;
|
|||||||
*/
|
*/
|
||||||
class AccountController extends Controller
|
class AccountController extends Controller
|
||||||
{
|
{
|
||||||
use DateCalculation, AugumentData;
|
use DateCalculation, AugumentData, ChartGeneration;
|
||||||
|
|
||||||
/** @var GeneratorInterface Chart generation methods. */
|
/** @var GeneratorInterface Chart generation methods. */
|
||||||
protected $generator;
|
protected $generator;
|
||||||
@@ -604,103 +605,4 @@ class AccountController extends Controller
|
|||||||
|
|
||||||
return response()->json($data);
|
return response()->json($data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Shows an overview of the account balances for a set of accounts.
|
|
||||||
*
|
|
||||||
* @param Collection $accounts
|
|
||||||
* @param Carbon $start
|
|
||||||
* @param Carbon $end
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*
|
|
||||||
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
|
|
||||||
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
|
||||||
*/
|
|
||||||
protected function accountBalanceChart(Collection $accounts, Carbon $start, Carbon $end): array // chart helper method.
|
|
||||||
{
|
|
||||||
// chart properties for cache:
|
|
||||||
$cache = new CacheProperties();
|
|
||||||
$cache->addProperty($start);
|
|
||||||
$cache->addProperty($end);
|
|
||||||
$cache->addProperty('chart.account.account-balance-chart');
|
|
||||||
$cache->addProperty($accounts);
|
|
||||||
if ($cache->has()) {
|
|
||||||
return $cache->get(); // @codeCoverageIgnore
|
|
||||||
}
|
|
||||||
Log::debug('Regenerate chart.account.account-balance-chart from scratch.');
|
|
||||||
|
|
||||||
/** @var CurrencyRepositoryInterface $repository */
|
|
||||||
$repository = app(CurrencyRepositoryInterface::class);
|
|
||||||
/** @var AccountRepositoryInterface $accountRepos */
|
|
||||||
$accountRepos = app(AccountRepositoryInterface::class);
|
|
||||||
|
|
||||||
$default = app('amount')->getDefaultCurrency();
|
|
||||||
$chartData = [];
|
|
||||||
/** @var Account $account */
|
|
||||||
foreach ($accounts as $account) {
|
|
||||||
$currency = $repository->findNull((int)$accountRepos->getMetaValue($account, 'currency_id'));
|
|
||||||
if (null === $currency) {
|
|
||||||
$currency = $default;
|
|
||||||
}
|
|
||||||
$currentSet = [
|
|
||||||
'label' => $account->name,
|
|
||||||
'currency_symbol' => $currency->symbol,
|
|
||||||
'entries' => [],
|
|
||||||
];
|
|
||||||
|
|
||||||
$currentStart = clone $start;
|
|
||||||
$range = app('steam')->balanceInRange($account, $start, clone $end);
|
|
||||||
$previous = array_values($range)[0];
|
|
||||||
while ($currentStart <= $end) {
|
|
||||||
$format = $currentStart->format('Y-m-d');
|
|
||||||
$label = $currentStart->formatLocalized((string)trans('config.month_and_day'));
|
|
||||||
$balance = isset($range[$format]) ? round($range[$format], 12) : $previous;
|
|
||||||
$previous = $balance;
|
|
||||||
$currentStart->addDay();
|
|
||||||
$currentSet['entries'][$label] = $balance;
|
|
||||||
}
|
|
||||||
$chartData[] = $currentSet;
|
|
||||||
}
|
|
||||||
$data = $this->generator->multiSet($chartData);
|
|
||||||
$cache->store($data);
|
|
||||||
|
|
||||||
return $data;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Small helper function for the revenue and expense account charts.
|
|
||||||
*
|
|
||||||
* @param array $names
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function expandNames(array $names): array
|
|
||||||
{
|
|
||||||
$result = [];
|
|
||||||
foreach ($names as $entry) {
|
|
||||||
$result[$entry['name']] = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Small helper function for the revenue and expense account charts.
|
|
||||||
*
|
|
||||||
* @param Collection $accounts
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function extractNames(Collection $accounts): array
|
|
||||||
{
|
|
||||||
$return = [];
|
|
||||||
/** @var Account $account */
|
|
||||||
foreach ($accounts as $account) {
|
|
||||||
$return[$account->id] = $account->name;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -32,6 +32,7 @@ use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
|||||||
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
||||||
use FireflyIII\Repositories\Currency\CurrencyRepositoryInterface;
|
use FireflyIII\Repositories\Currency\CurrencyRepositoryInterface;
|
||||||
use FireflyIII\Support\CacheProperties;
|
use FireflyIII\Support\CacheProperties;
|
||||||
|
use FireflyIII\Support\Http\Controllers\AugumentData;
|
||||||
use FireflyIII\Support\Http\Controllers\DateCalculation;
|
use FireflyIII\Support\Http\Controllers\DateCalculation;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
@@ -42,7 +43,7 @@ use Log;
|
|||||||
*/
|
*/
|
||||||
class CategoryController extends Controller
|
class CategoryController extends Controller
|
||||||
{
|
{
|
||||||
use DateCalculation;
|
use DateCalculation, AugumentData;
|
||||||
/** @var GeneratorInterface Chart generation methods. */
|
/** @var GeneratorInterface Chart generation methods. */
|
||||||
protected $generator;
|
protected $generator;
|
||||||
|
|
||||||
@@ -479,21 +480,4 @@ class CategoryController extends Controller
|
|||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Small helper function for the revenue and expense account charts.
|
|
||||||
*
|
|
||||||
* @param array $names
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function expandNames(array $names): array
|
|
||||||
{
|
|
||||||
$result = [];
|
|
||||||
foreach ($names as $entry) {
|
|
||||||
$result[$entry['name']] = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $result;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -25,20 +25,12 @@ namespace FireflyIII\Http\Controllers\Json;
|
|||||||
use FireflyIII\Exceptions\FireflyException;
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
use FireflyIII\Helpers\Collector\TransactionCollectorInterface;
|
use FireflyIII\Helpers\Collector\TransactionCollectorInterface;
|
||||||
use FireflyIII\Http\Controllers\Controller;
|
use FireflyIII\Http\Controllers\Controller;
|
||||||
use FireflyIII\Models\Account;
|
|
||||||
use FireflyIII\Models\AccountType;
|
use FireflyIII\Models\AccountType;
|
||||||
use FireflyIII\Models\TransactionJournal;
|
use FireflyIII\Models\TransactionJournal;
|
||||||
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
|
||||||
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
|
|
||||||
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
|
|
||||||
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
|
||||||
use FireflyIII\Repositories\Currency\CurrencyRepositoryInterface;
|
|
||||||
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
|
||||||
use FireflyIII\Repositories\Tag\TagRepositoryInterface;
|
|
||||||
use FireflyIII\Support\CacheProperties;
|
use FireflyIII\Support\CacheProperties;
|
||||||
|
use FireflyIII\Support\Http\Controllers\AutoCompleteCollector;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Support\Collection;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class AutoCompleteController.
|
* Class AutoCompleteController.
|
||||||
@@ -47,6 +39,7 @@ use Illuminate\Support\Collection;
|
|||||||
*/
|
*/
|
||||||
class AutoCompleteController extends Controller
|
class AutoCompleteController extends Controller
|
||||||
{
|
{
|
||||||
|
use AutoCompleteCollector;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* List of all journals.
|
* List of all journals.
|
||||||
@@ -203,7 +196,8 @@ class AutoCompleteController extends Controller
|
|||||||
$return = array_filter(
|
$return = array_filter(
|
||||||
$return, function (array $array) use ($search) {
|
$return, function (array $array) use ($search) {
|
||||||
$haystack = $array['name'];
|
$haystack = $array['name'];
|
||||||
$result = stripos($haystack, $search);
|
$result = stripos($haystack, $search);
|
||||||
|
|
||||||
return !(false === $result);
|
return !(false === $result);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@@ -257,121 +251,4 @@ class AutoCompleteController extends Controller
|
|||||||
|
|
||||||
return response()->json($return);
|
return response()->json($return);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param array $unfiltered
|
|
||||||
* @param string $query
|
|
||||||
*
|
|
||||||
* @return array|null
|
|
||||||
*/
|
|
||||||
private function filterResult(?array $unfiltered, string $query): ?array
|
|
||||||
{
|
|
||||||
if (null === $unfiltered) {
|
|
||||||
return null; // @codeCoverageIgnore
|
|
||||||
}
|
|
||||||
if ('' === $query) {
|
|
||||||
sort($unfiltered);
|
|
||||||
|
|
||||||
return $unfiltered;
|
|
||||||
}
|
|
||||||
$return = [];
|
|
||||||
if ('' !== $query) {
|
|
||||||
$return = array_values(
|
|
||||||
array_filter(
|
|
||||||
$unfiltered, function (string $value) use ($query) {
|
|
||||||
return !(false === stripos($value, $query));
|
|
||||||
}, ARRAY_FILTER_USE_BOTH
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
sort($return);
|
|
||||||
|
|
||||||
|
|
||||||
return $return;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $query
|
|
||||||
* @param array $types
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function getAccounts(array $types): array
|
|
||||||
{
|
|
||||||
$repository = app(AccountRepositoryInterface::class);
|
|
||||||
// find everything:
|
|
||||||
/** @var Collection $collection */
|
|
||||||
$collection = $repository->getAccountsByType($types);
|
|
||||||
$filtered = $collection->filter(
|
|
||||||
function (Account $account) {
|
|
||||||
return $account->active === true;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
$return = array_values(array_unique($filtered->pluck('name')->toArray()));
|
|
||||||
|
|
||||||
return $return;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function getBills(): array
|
|
||||||
{
|
|
||||||
$repository = app(BillRepositoryInterface::class);
|
|
||||||
|
|
||||||
return array_unique($repository->getActiveBills()->pluck('name')->toArray());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function getBudgets(): array
|
|
||||||
{
|
|
||||||
$repository = app(BudgetRepositoryInterface::class);
|
|
||||||
|
|
||||||
return array_unique($repository->getBudgets()->pluck('name')->toArray());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function getCategories(): array
|
|
||||||
{
|
|
||||||
$repository = app(CategoryRepositoryInterface::class);
|
|
||||||
|
|
||||||
return array_unique($repository->getCategories()->pluck('name')->toArray());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function getCurrencyNames(): array
|
|
||||||
{
|
|
||||||
/** @var CurrencyRepositoryInterface $repository */
|
|
||||||
$repository = app(CurrencyRepositoryInterface::class);
|
|
||||||
|
|
||||||
return $repository->get()->pluck('name')->toArray();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function getTags(): array
|
|
||||||
{
|
|
||||||
/** @var TagRepositoryInterface $repository */
|
|
||||||
$repository = app(TagRepositoryInterface::class);
|
|
||||||
|
|
||||||
return array_unique($repository->get()->pluck('tag')->toArray());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function getTransactionTypes(): array
|
|
||||||
{
|
|
||||||
$repository = app(JournalRepositoryInterface::class);
|
|
||||||
|
|
||||||
return array_unique($repository->getTransactionTypes()->pluck('type')->toArray());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -23,14 +23,15 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace FireflyIII\Http\Controllers\System;
|
namespace FireflyIII\Http\Controllers\System;
|
||||||
|
|
||||||
use FireflyIII\Exceptions\FireflyException;
|
use FireflyIII\Support\Http\Controllers\CronRunner;
|
||||||
use FireflyIII\Support\Cronjobs\RecurringCronjob;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class CronController
|
* Class CronController
|
||||||
*/
|
*/
|
||||||
class CronController
|
class CronController
|
||||||
{
|
{
|
||||||
|
use CronRunner;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $token
|
* @param string $token
|
||||||
*
|
*
|
||||||
@@ -43,24 +44,4 @@ class CronController
|
|||||||
|
|
||||||
return implode("<br>\n", $results);
|
return implode("<br>\n", $results);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
private function runRecurring(): string
|
|
||||||
{
|
|
||||||
/** @var RecurringCronjob $recurring */
|
|
||||||
$recurring = app(RecurringCronjob::class);
|
|
||||||
try {
|
|
||||||
$result = $recurring->fire();
|
|
||||||
} catch (FireflyException $e) {
|
|
||||||
return $e->getMessage();
|
|
||||||
}
|
|
||||||
if (false === $result) {
|
|
||||||
return 'The recurring transaction cron job did not fire.';
|
|
||||||
}
|
|
||||||
|
|
||||||
return 'The recurring transaction cron job fired successfully.';
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
@@ -33,6 +33,7 @@ use FireflyIII\Models\Transaction;
|
|||||||
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||||
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
|
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
|
||||||
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
||||||
|
use FireflyIII\Support\CacheProperties;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -68,6 +69,41 @@ trait AugumentData
|
|||||||
return $combined;
|
return $combined;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Small helper function for the revenue and expense account charts.
|
||||||
|
*
|
||||||
|
* @param array $names
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function expandNames(array $names): array
|
||||||
|
{
|
||||||
|
$result = [];
|
||||||
|
foreach ($names as $entry) {
|
||||||
|
$result[$entry['name']] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Small helper function for the revenue and expense account charts.
|
||||||
|
*
|
||||||
|
* @param Collection $accounts
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function extractNames(Collection $accounts): array
|
||||||
|
{
|
||||||
|
$return = [];
|
||||||
|
/** @var Account $account */
|
||||||
|
foreach ($accounts as $account) {
|
||||||
|
$return[$account->id] = $account->name;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the budget limits belonging to the given budget and valid on the given day.
|
* Returns the budget limits belonging to the given budget and valid on the given day.
|
||||||
*
|
*
|
||||||
@@ -168,6 +204,43 @@ trait AugumentData
|
|||||||
return $return;
|
return $return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets all budget limits for a budget.
|
||||||
|
*
|
||||||
|
* @param Budget $budget
|
||||||
|
* @param Carbon $start
|
||||||
|
* @param Carbon $end
|
||||||
|
*
|
||||||
|
* @return Collection
|
||||||
|
*/
|
||||||
|
protected function getLimits(Budget $budget, Carbon $start, Carbon $end): Collection // get data + augment with info
|
||||||
|
{
|
||||||
|
/** @var BudgetRepositoryInterface $repository */
|
||||||
|
$repository = app(BudgetRepositoryInterface::class);
|
||||||
|
// properties for cache
|
||||||
|
$cache = new CacheProperties;
|
||||||
|
$cache->addProperty($start);
|
||||||
|
$cache->addProperty($end);
|
||||||
|
$cache->addProperty($budget->id);
|
||||||
|
$cache->addProperty('get-limits');
|
||||||
|
|
||||||
|
if ($cache->has()) {
|
||||||
|
return $cache->get(); // @codeCoverageIgnore
|
||||||
|
}
|
||||||
|
|
||||||
|
$set = $repository->getBudgetLimits($budget, $start, $end);
|
||||||
|
$limits = new Collection();
|
||||||
|
|
||||||
|
/** @var BudgetLimit $entry */
|
||||||
|
foreach ($set as $entry) {
|
||||||
|
$entry->spent = $repository->spentInPeriod(new Collection([$budget]), new Collection(), $entry->start_date, $entry->end_date);
|
||||||
|
$limits->push($entry);
|
||||||
|
}
|
||||||
|
$cache->store($limits);
|
||||||
|
|
||||||
|
return $set;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Helper function that groups expenses.
|
* Helper function that groups expenses.
|
||||||
*
|
*
|
||||||
@@ -260,4 +333,4 @@ trait AugumentData
|
|||||||
|
|
||||||
return $grouped;
|
return $grouped;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
155
app/Support/Http/Controllers/AutoCompleteCollector.php
Normal file
155
app/Support/Http/Controllers/AutoCompleteCollector.php
Normal file
@@ -0,0 +1,155 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* AutoCompleteCollector.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\Http\Controllers;
|
||||||
|
|
||||||
|
use FireflyIII\Models\Account;
|
||||||
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Currency\CurrencyRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Tag\TagRepositoryInterface;
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Trait AutoCompleteCollector
|
||||||
|
*/
|
||||||
|
trait AutoCompleteCollector
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $unfiltered
|
||||||
|
* @param string $query
|
||||||
|
*
|
||||||
|
* @return array|null
|
||||||
|
*/
|
||||||
|
protected function filterResult(?array $unfiltered, string $query): ?array
|
||||||
|
{
|
||||||
|
if (null === $unfiltered) {
|
||||||
|
return null; // @codeCoverageIgnore
|
||||||
|
}
|
||||||
|
if ('' === $query) {
|
||||||
|
sort($unfiltered);
|
||||||
|
|
||||||
|
return $unfiltered;
|
||||||
|
}
|
||||||
|
$return = [];
|
||||||
|
if ('' !== $query) {
|
||||||
|
$return = array_values(
|
||||||
|
array_filter(
|
||||||
|
$unfiltered, function (string $value) use ($query) {
|
||||||
|
return !(false === stripos($value, $query));
|
||||||
|
}, ARRAY_FILTER_USE_BOTH
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
sort($return);
|
||||||
|
|
||||||
|
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $types
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function getAccounts(array $types): array
|
||||||
|
{
|
||||||
|
$repository = app(AccountRepositoryInterface::class);
|
||||||
|
// find everything:
|
||||||
|
/** @var Collection $collection */
|
||||||
|
$collection = $repository->getAccountsByType($types);
|
||||||
|
$filtered = $collection->filter(
|
||||||
|
function (Account $account) {
|
||||||
|
return true === $account->active;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
return array_values(array_unique($filtered->pluck('name')->toArray()));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function getBills(): array
|
||||||
|
{
|
||||||
|
$repository = app(BillRepositoryInterface::class);
|
||||||
|
|
||||||
|
return array_unique($repository->getActiveBills()->pluck('name')->toArray());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function getBudgets(): array
|
||||||
|
{
|
||||||
|
$repository = app(BudgetRepositoryInterface::class);
|
||||||
|
|
||||||
|
return array_unique($repository->getBudgets()->pluck('name')->toArray());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function getCategories(): array
|
||||||
|
{
|
||||||
|
$repository = app(CategoryRepositoryInterface::class);
|
||||||
|
|
||||||
|
return array_unique($repository->getCategories()->pluck('name')->toArray());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function getCurrencyNames(): array
|
||||||
|
{
|
||||||
|
/** @var CurrencyRepositoryInterface $repository */
|
||||||
|
$repository = app(CurrencyRepositoryInterface::class);
|
||||||
|
|
||||||
|
return $repository->get()->pluck('name')->toArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function getTags(): array
|
||||||
|
{
|
||||||
|
/** @var TagRepositoryInterface $repository */
|
||||||
|
$repository = app(TagRepositoryInterface::class);
|
||||||
|
|
||||||
|
return array_unique($repository->get()->pluck('tag')->toArray());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function getTransactionTypes(): array
|
||||||
|
{
|
||||||
|
$repository = app(JournalRepositoryInterface::class);
|
||||||
|
|
||||||
|
return array_unique($repository->getTransactionTypes()->pluck('type')->toArray());
|
||||||
|
}
|
||||||
|
}
|
106
app/Support/Http/Controllers/ChartGeneration.php
Normal file
106
app/Support/Http/Controllers/ChartGeneration.php
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* ChartGeneration.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\Http\Controllers;
|
||||||
|
|
||||||
|
use Carbon\Carbon;
|
||||||
|
use FireflyIII\Generator\Chart\Basic\GeneratorInterface;
|
||||||
|
use FireflyIII\Models\Account;
|
||||||
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Currency\CurrencyRepositoryInterface;
|
||||||
|
use FireflyIII\Support\CacheProperties;
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
use Log;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Trait ChartGeneration
|
||||||
|
*/
|
||||||
|
trait ChartGeneration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Shows an overview of the account balances for a set of accounts.
|
||||||
|
*
|
||||||
|
* @param Collection $accounts
|
||||||
|
* @param Carbon $start
|
||||||
|
* @param Carbon $end
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*
|
||||||
|
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
|
||||||
|
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
||||||
|
*/
|
||||||
|
protected function accountBalanceChart(Collection $accounts, Carbon $start, Carbon $end): array // chart helper method.
|
||||||
|
{
|
||||||
|
|
||||||
|
// chart properties for cache:
|
||||||
|
$cache = new CacheProperties();
|
||||||
|
$cache->addProperty($start);
|
||||||
|
$cache->addProperty($end);
|
||||||
|
$cache->addProperty('chart.account.account-balance-chart');
|
||||||
|
$cache->addProperty($accounts);
|
||||||
|
if ($cache->has()) {
|
||||||
|
return $cache->get(); // @codeCoverageIgnore
|
||||||
|
}
|
||||||
|
Log::debug('Regenerate chart.account.account-balance-chart from scratch.');
|
||||||
|
/** @var GeneratorInterface $generator */
|
||||||
|
$generator = app(GeneratorInterface::class);
|
||||||
|
|
||||||
|
/** @var CurrencyRepositoryInterface $repository */
|
||||||
|
$repository = app(CurrencyRepositoryInterface::class);
|
||||||
|
/** @var AccountRepositoryInterface $accountRepos */
|
||||||
|
$accountRepos = app(AccountRepositoryInterface::class);
|
||||||
|
|
||||||
|
$default = app('amount')->getDefaultCurrency();
|
||||||
|
$chartData = [];
|
||||||
|
/** @var Account $account */
|
||||||
|
foreach ($accounts as $account) {
|
||||||
|
$currency = $repository->findNull((int)$accountRepos->getMetaValue($account, 'currency_id'));
|
||||||
|
if (null === $currency) {
|
||||||
|
$currency = $default;
|
||||||
|
}
|
||||||
|
$currentSet = [
|
||||||
|
'label' => $account->name,
|
||||||
|
'currency_symbol' => $currency->symbol,
|
||||||
|
'entries' => [],
|
||||||
|
];
|
||||||
|
|
||||||
|
$currentStart = clone $start;
|
||||||
|
$range = app('steam')->balanceInRange($account, $start, clone $end);
|
||||||
|
$previous = array_values($range)[0];
|
||||||
|
while ($currentStart <= $end) {
|
||||||
|
$format = $currentStart->format('Y-m-d');
|
||||||
|
$label = $currentStart->formatLocalized((string)trans('config.month_and_day'));
|
||||||
|
$balance = isset($range[$format]) ? round($range[$format], 12) : $previous;
|
||||||
|
$previous = $balance;
|
||||||
|
$currentStart->addDay();
|
||||||
|
$currentSet['entries'][$label] = $balance;
|
||||||
|
}
|
||||||
|
$chartData[] = $currentSet;
|
||||||
|
}
|
||||||
|
$data = $generator->multiSet($chartData);
|
||||||
|
$cache->store($data);
|
||||||
|
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
53
app/Support/Http/Controllers/CronRunner.php
Normal file
53
app/Support/Http/Controllers/CronRunner.php
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* CronRunner.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\Http\Controllers;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
use FireflyIII\Support\Cronjobs\RecurringCronjob;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Trait CronRunner
|
||||||
|
*/
|
||||||
|
trait CronRunner
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
protected function runRecurring(): string
|
||||||
|
{
|
||||||
|
/** @var RecurringCronjob $recurring */
|
||||||
|
$recurring = app(RecurringCronjob::class);
|
||||||
|
try {
|
||||||
|
$result = $recurring->fire();
|
||||||
|
} catch (FireflyException $e) {
|
||||||
|
return $e->getMessage();
|
||||||
|
}
|
||||||
|
if (false === $result) {
|
||||||
|
return 'The recurring transaction cron job did not fire.';
|
||||||
|
}
|
||||||
|
|
||||||
|
return 'The recurring transaction cron job fired successfully.';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -38,10 +38,13 @@ use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
|||||||
use FireflyIII\Repositories\Tag\TagRepositoryInterface;
|
use FireflyIII\Repositories\Tag\TagRepositoryInterface;
|
||||||
use FireflyIII\Support\CacheProperties;
|
use FireflyIII\Support\CacheProperties;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
|
use Log;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Trait PeriodOverview.
|
* Trait PeriodOverview.
|
||||||
*
|
*
|
||||||
|
* TODO verify this all works as expected.
|
||||||
|
*
|
||||||
* - Group expenses, income, etc. under this period.
|
* - Group expenses, income, etc. under this period.
|
||||||
* - Returns collection of arrays. Possible fields are:
|
* - Returns collection of arrays. Possible fields are:
|
||||||
* - start (string),
|
* - start (string),
|
||||||
@@ -55,6 +58,7 @@ use Illuminate\Support\Collection;
|
|||||||
*/
|
*/
|
||||||
trait PeriodOverview
|
trait PeriodOverview
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method returns "period entries", so nov-2015, dec-2015, etc etc (this depends on the users session range)
|
* This method returns "period entries", so nov-2015, dec-2015, etc etc (this depends on the users session range)
|
||||||
* and for each period, the amount of money spent and earned. This is a complex operation which is cached for
|
* and for each period, the amount of money spent and earned. This is a complex operation which is cached for
|
||||||
@@ -255,6 +259,95 @@ trait PeriodOverview
|
|||||||
return $entries;
|
return $entries;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TODO has to be synced with the others.
|
||||||
|
*
|
||||||
|
* Show period overview for no category view.
|
||||||
|
*
|
||||||
|
* @param Carbon $theDate
|
||||||
|
*
|
||||||
|
* @return Collection
|
||||||
|
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
||||||
|
*/
|
||||||
|
protected function getNoCategoryPeriodOverview(Carbon $theDate): Collection // period overview method.
|
||||||
|
{
|
||||||
|
Log::debug(sprintf('Now in getNoCategoryPeriodOverview(%s)', $theDate->format('Y-m-d')));
|
||||||
|
$range = app('preferences')->get('viewRange', '1M')->data;
|
||||||
|
$first = $this->journalRepos->firstNull();
|
||||||
|
$start = null === $first ? new Carbon : $first->date;
|
||||||
|
$end = $theDate ?? new Carbon;
|
||||||
|
|
||||||
|
Log::debug(sprintf('Start for getNoCategoryPeriodOverview() is %s', $start->format('Y-m-d')));
|
||||||
|
Log::debug(sprintf('End for getNoCategoryPeriodOverview() is %s', $end->format('Y-m-d')));
|
||||||
|
|
||||||
|
// properties for cache
|
||||||
|
$cache = new CacheProperties;
|
||||||
|
$cache->addProperty($start);
|
||||||
|
$cache->addProperty($end);
|
||||||
|
$cache->addProperty('no-category-period-entries');
|
||||||
|
|
||||||
|
if ($cache->has()) {
|
||||||
|
return $cache->get(); // @codeCoverageIgnore
|
||||||
|
}
|
||||||
|
|
||||||
|
$dates = app('navigation')->blockPeriods($start, $end, $range);
|
||||||
|
$entries = new Collection;
|
||||||
|
|
||||||
|
foreach ($dates as $date) {
|
||||||
|
|
||||||
|
// count journals without category in this period:
|
||||||
|
/** @var TransactionCollectorInterface $collector */
|
||||||
|
$collector = app(TransactionCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()
|
||||||
|
->withOpposingAccount()->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::TRANSFER]);
|
||||||
|
$collector->removeFilter(InternalTransferFilter::class);
|
||||||
|
$count = $collector->getTransactions()->count();
|
||||||
|
|
||||||
|
// amount transferred
|
||||||
|
/** @var TransactionCollectorInterface $collector */
|
||||||
|
$collector = app(TransactionCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()
|
||||||
|
->withOpposingAccount()->setTypes([TransactionType::TRANSFER]);
|
||||||
|
$collector->removeFilter(InternalTransferFilter::class);
|
||||||
|
$transferred = app('steam')->positive((string)$collector->getTransactions()->sum('transaction_amount'));
|
||||||
|
|
||||||
|
// amount spent
|
||||||
|
/** @var TransactionCollectorInterface $collector */
|
||||||
|
$collector = app(TransactionCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()->withOpposingAccount()->setTypes(
|
||||||
|
[TransactionType::WITHDRAWAL]
|
||||||
|
);
|
||||||
|
$spent = $collector->getTransactions()->sum('transaction_amount');
|
||||||
|
|
||||||
|
// amount earned
|
||||||
|
/** @var TransactionCollectorInterface $collector */
|
||||||
|
$collector = app(TransactionCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()->withOpposingAccount()->setTypes(
|
||||||
|
[TransactionType::DEPOSIT]
|
||||||
|
);
|
||||||
|
$earned = $collector->getTransactions()->sum('transaction_amount');
|
||||||
|
/** @noinspection PhpUndefinedMethodInspection */
|
||||||
|
$dateStr = $date['end']->format('Y-m-d');
|
||||||
|
$dateName = app('navigation')->periodShow($date['end'], $date['period']);
|
||||||
|
$entries->push(
|
||||||
|
[
|
||||||
|
'string' => $dateStr,
|
||||||
|
'name' => $dateName,
|
||||||
|
'count' => $count,
|
||||||
|
'spent' => $spent,
|
||||||
|
'earned' => $earned,
|
||||||
|
'transferred' => $transferred,
|
||||||
|
'start' => clone $date['start'],
|
||||||
|
'end' => clone $date['end'],
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
Log::debug('End of loops');
|
||||||
|
$cache->store($entries);
|
||||||
|
|
||||||
|
return $entries;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This shows a period overview for a tag. It goes back in time and lists all relevant transactions and sums.
|
* This shows a period overview for a tag. It goes back in time and lists all relevant transactions and sums.
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user