firefly-iii /
bunq-importer
| 1 | <?php |
||||||
| 2 | /** |
||||||
| 3 | * StartSync.php |
||||||
| 4 | * Copyright (c) 2020 [email protected]. |
||||||
| 5 | * |
||||||
| 6 | * This file is part of the Firefly III bunq importer |
||||||
| 7 | * (https://github.com/firefly-iii/bunq-importer). |
||||||
| 8 | * |
||||||
| 9 | * This program is free software: you can redistribute it and/or modify |
||||||
| 10 | * it under the terms of the GNU Affero General Public License as |
||||||
| 11 | * published by the Free Software Foundation, either version 3 of the |
||||||
| 12 | * License, or (at your option) any later version. |
||||||
| 13 | * |
||||||
| 14 | * This program is distributed in the hope that it will be useful, |
||||||
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
| 17 | * GNU Affero General Public License for more details. |
||||||
| 18 | * |
||||||
| 19 | * You should have received a copy of the GNU Affero General Public License |
||||||
| 20 | * along with this program. If not, see <https://www.gnu.org/licenses/>. |
||||||
| 21 | */ |
||||||
| 22 | |||||||
| 23 | declare(strict_types=1); |
||||||
| 24 | |||||||
| 25 | namespace App\Console; |
||||||
| 26 | |||||||
| 27 | use App\Exceptions\ImportException; |
||||||
| 28 | use App\Services\Configuration\Configuration; |
||||||
| 29 | use App\Services\Sync\RoutineManager as SyncRoutineManager; |
||||||
| 30 | |||||||
| 31 | /** |
||||||
| 32 | * Trait StartSync. |
||||||
| 33 | */ |
||||||
| 34 | trait StartSync |
||||||
| 35 | { |
||||||
| 36 | /** |
||||||
| 37 | * @param array $configuration |
||||||
| 38 | * |
||||||
| 39 | * @return int |
||||||
| 40 | */ |
||||||
| 41 | private function startSync(array $configuration): int |
||||||
| 42 | { |
||||||
| 43 | app('log')->debug(sprintf('Now in %s', __METHOD__)); |
||||||
| 44 | $configObject = Configuration::fromFile($configuration); |
||||||
| 45 | |||||||
| 46 | // first download from bunq |
||||||
| 47 | $manager = new SyncRoutineManager; |
||||||
| 48 | $manager->setDownloadIdentifier($this->downloadIdentifier); |
||||||
| 49 | try { |
||||||
| 50 | $manager->setConfiguration($configObject); |
||||||
| 51 | } catch (ImportException $e) { |
||||||
| 52 | $this->error($e->getMessage()); |
||||||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||||||
| 53 | |||||||
| 54 | return 1; |
||||||
| 55 | } |
||||||
| 56 | try { |
||||||
| 57 | $manager->start(); |
||||||
| 58 | } catch (ImportException $e) { |
||||||
| 59 | $this->error($e->getMessage()); |
||||||
| 60 | |||||||
| 61 | return 1; |
||||||
| 62 | } |
||||||
| 63 | |||||||
| 64 | $messages = $manager->getAllMessages(); |
||||||
| 65 | $warnings = $manager->getAllWarnings(); |
||||||
| 66 | $errors = $manager->getAllErrors(); |
||||||
| 67 | |||||||
| 68 | if (count($errors) > 0) { |
||||||
| 69 | /** |
||||||
| 70 | * @var int $index |
||||||
| 71 | * @var array $error |
||||||
| 72 | */ |
||||||
| 73 | foreach ($errors as $index => $error) { |
||||||
| 74 | /** @var string $line */ |
||||||
| 75 | foreach ($error as $line) { |
||||||
| 76 | $this->error(sprintf('ERROR in line #%d: %s', $index + 1, $line)); |
||||||
| 77 | } |
||||||
| 78 | } |
||||||
| 79 | } |
||||||
| 80 | |||||||
| 81 | if (count($warnings) > 0) { |
||||||
| 82 | /** |
||||||
| 83 | * @var int $index |
||||||
| 84 | * @var array $warning |
||||||
| 85 | */ |
||||||
| 86 | foreach ($warnings as $index => $warning) { |
||||||
| 87 | /** @var string $line */ |
||||||
| 88 | foreach ($warning as $line) { |
||||||
| 89 | $this->warn(sprintf('Warning from line #%d: %s', $index + 1, $line)); |
||||||
|
0 ignored issues
–
show
It seems like
warn() must be provided by classes using this trait. How about adding it as abstract method to this trait?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
Loading history...
|
|||||||
| 90 | } |
||||||
| 91 | } |
||||||
| 92 | } |
||||||
| 93 | |||||||
| 94 | if (count($messages) > 0) { |
||||||
| 95 | /** |
||||||
| 96 | * @var int $index |
||||||
| 97 | * @var array $message |
||||||
| 98 | */ |
||||||
| 99 | foreach ($messages as $index => $message) { |
||||||
| 100 | /** @var string $line */ |
||||||
| 101 | foreach ($message as $line) { |
||||||
| 102 | $this->info(sprintf('Message from line #%d: %s', $index + 1, strip_tags($line))); |
||||||
|
0 ignored issues
–
show
It seems like
info() must be provided by classes using this trait. How about adding it as abstract method to this trait?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
Loading history...
|
|||||||
| 103 | } |
||||||
| 104 | } |
||||||
| 105 | } |
||||||
| 106 | |||||||
| 107 | return 0; |
||||||
| 108 | } |
||||||
| 109 | } |
||||||
| 110 |