Some last minute updates.

This commit is contained in:
James Cole
2018-07-02 20:17:50 +02:00
parent 2e67bd3b78
commit 54afc6ca8c
7 changed files with 64 additions and 121 deletions

View File

@@ -64,13 +64,13 @@ class RuleController extends Controller
/** /**
* Delete the resource. * Delete the resource.
* *
* @param string $object * @param Rule $rule
* *
* @return JsonResponse * @return JsonResponse
*/ */
public function delete(string $object): JsonResponse public function delete(Rule $rule): JsonResponse
{ {
// todo delete object. $this->ruleRepository->destroy($rule);
return response()->json([], 204); return response()->json([], 204);
} }

View File

@@ -66,9 +66,9 @@ class RuleGroupController extends Controller
* *
* @return JsonResponse * @return JsonResponse
*/ */
public function delete(string $object): JsonResponse public function delete(RuleGroup $ruleGroup): JsonResponse
{ {
// todo delete object. $this->ruleGroupRepository->destroy($ruleGroup, null);
return response()->json([], 204); return response()->json([], 204);
} }

View File

@@ -1,112 +0,0 @@
<?php
/**
* TagController.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\Api\V1\Controllers;
use FireflyIII\User;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class TagController extends Controller
{
public function __construct()
{
parent::__construct();
$this->middleware(
function ($request, $next) {
/** @var User $user */
$user = auth()->user();
// todo add local repositories.
return $next($request);
}
);
}
/**
* Delete the resource.
*
* @param string $object
*
* @return JsonResponse
*/
public function delete(string $object): JsonResponse
{
// todo delete object.
return response()->json([], 204);
}
/**
* List all of them.
*
* @param Request $request
*
* @return JsonResponse]
*/
public function index(Request $request): JsonResponse
{
// todo implement.
}
/**
* List single resource.
*
* @param Request $request
* @param string $object
*
* @return JsonResponse
*/
public function show(Request $request, string $object): JsonResponse
{
// todo implement me.
}
/**
* Store new object.
*
* @param Request $request
*
* @return JsonResponse
*/
public function store(Request $request): JsonResponse
{
// todo replace code and replace request object.
}
/**
* @param Request $request
* @param string $object
*
* @return JsonResponse
*/
public function update(Request $request, string $object): JsonResponse
{
// todo replace code and replace request object.
}
}

View File

@@ -127,7 +127,7 @@ class JobStatusController extends Controller
public function start(ImportJob $importJob): JsonResponse public function start(ImportJob $importJob): JsonResponse
{ {
// catch impossible status: // catch impossible status:
$allowed = ['ready_to_run', 'need_job_config', 'error']; // todo remove error $allowed = ['ready_to_run', 'need_job_config'];
if (null !== $importJob && !\in_array($importJob->status, $allowed, true)) { if (null !== $importJob && !\in_array($importJob->status, $allowed, true)) {
Log::error('Job is not ready.'); Log::error('Job is not ready.');

View File

@@ -57,7 +57,7 @@ class BillFormRequest extends Request
/** /**
* @return array * @return array
*/ */
public function rules() public function rules(): array
{ {
$nameRule = 'required|between:1,255|uniqueObjectForUser:bills,name'; $nameRule = 'required|between:1,255|uniqueObjectForUser:bills,name';
if ($this->integer('id') > 0) { if ($this->integer('id') > 0) {

View File

@@ -101,7 +101,6 @@ class SpectreRoutine implements RoutineInterface
$handler = app(StageImportDataHandler::class); $handler = app(StageImportDataHandler::class);
$handler->setImportJob($this->importJob); $handler->setImportJob($this->importJob);
$handler->run(); $handler->run();
// todo apply rules.
$this->repository->setStatus($this->importJob, 'provider_finished'); $this->repository->setStatus($this->importJob, 'provider_finished');
$this->repository->setStage($this->importJob, 'final'); $this->repository->setStage($this->importJob, 'final');
} }

View File

@@ -7,8 +7,13 @@ use FireflyIII\Events\RequestedReportOnJournals;
use FireflyIII\Models\Recurrence; use FireflyIII\Models\Recurrence;
use FireflyIII\Models\RecurrenceRepetition; use FireflyIII\Models\RecurrenceRepetition;
use FireflyIII\Models\RecurrenceTransaction; use FireflyIII\Models\RecurrenceTransaction;
use FireflyIII\Models\Rule;
use FireflyIII\Models\TransactionJournal;
use FireflyIII\Repositories\Journal\JournalRepositoryInterface; use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
use FireflyIII\Repositories\Recurring\RecurringRepositoryInterface; use FireflyIII\Repositories\Recurring\RecurringRepositoryInterface;
use FireflyIII\Repositories\Rule\RuleRepositoryInterface;
use FireflyIII\TransactionRules\Processor;
use FireflyIII\User;
use Illuminate\Bus\Queueable; use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Foundation\Bus\Dispatchable;
@@ -30,6 +35,8 @@ class CreateRecurringTransactions implements ShouldQueue
private $journalRepository; private $journalRepository;
/** @var RecurringRepositoryInterface */ /** @var RecurringRepositoryInterface */
private $repository; private $repository;
/** @var array */
private $rules = [];
/** /**
* Create a new job instance. * Create a new job instance.
@@ -42,6 +49,7 @@ class CreateRecurringTransactions implements ShouldQueue
$this->date = $date; $this->date = $date;
$this->repository = app(RecurringRepositoryInterface::class); $this->repository = app(RecurringRepositoryInterface::class);
$this->journalRepository = app(JournalRepositoryInterface::class); $this->journalRepository = app(JournalRepositoryInterface::class);
} }
/** /**
@@ -77,6 +85,9 @@ class CreateRecurringTransactions implements ShouldQueue
$created = $this->handleRepetitions($recurrence); $created = $this->handleRepetitions($recurrence);
Log::debug(sprintf('Done with recurrence #%d', $recurrence->id)); Log::debug(sprintf('Done with recurrence #%d', $recurrence->id));
$result[$recurrence->user_id] = $result[$recurrence->user_id]->merge($created); $result[$recurrence->user_id] = $result[$recurrence->user_id]->merge($created);
// apply rules:
$this->applyRules($recurrence->user, $created);
} }
Log::debug('Now running report thing.'); Log::debug('Now running report thing.');
@@ -100,6 +111,34 @@ class CreateRecurringTransactions implements ShouldQueue
return $recurrence->active; return $recurrence->active;
} }
/**
* @param User $user
* @param Collection $journals
*/
private function applyRules(User $user, Collection $journals): void
{
$userId = $user->id;
if (!isset($this->rules[$userId])) {
$this->rules[$userId] = $this->getRules($user);
}
// run the rules:
if ($this->rules[$userId]->count() > 0) {
/** @var TransactionJournal $journal */
foreach ($journals as $journal) {
$this->rules[$userId]->each(
function (Rule $rule) use ($journal) {
Log::debug(sprintf('Going to apply rule #%d to journal %d.', $rule->id, $journal->id));
$processor = Processor::make($rule);
$processor->handleTransactionJournal($journal);
if ($rule->stop_processing) {
return;
}
}
);
}
}
}
/** /**
* @param array $occurrences * @param array $occurrences
* *
@@ -115,6 +154,23 @@ class CreateRecurringTransactions implements ShouldQueue
return $return; return $return;
} }
/**
* @param User $user
*
* @return Collection
*/
private function getRules(User $user): Collection
{
/** @var RuleRepositoryInterface $repository */
$repository = app(RuleRepositoryInterface::class);
$repository->setUser($user);
$set = $repository->getForImport();
Log::debug(sprintf('Found %d user rules.', $set->count()));
return $set;
}
/** /**
* @param Recurrence $recurrence * @param Recurrence $recurrence
* *
@@ -214,7 +270,7 @@ class CreateRecurringTransactions implements ShouldQueue
]; ];
$journal = $this->journalRepository->store($array); $journal = $this->journalRepository->store($array);
Log::info(sprintf('Created new journal #%d', $journal->id)); Log::info(sprintf('Created new journal #%d', $journal->id));
// todo fire rules
$collection->push($journal); $collection->push($journal);
// update recurring thing: // update recurring thing:
$recurrence->latest_date = $date; $recurrence->latest_date = $date;