Passed
Push — master ( 270226...e22eb7 )
by James
06:04 queued 11s
created

VerifyJSON   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 9
c 1
b 0
f 0
dl 0
loc 22
rs 10
wmc 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A verifyJSON() 0 15 2
1
<?php
2
/**
3
 * VerifyJSON.php
4
 * Copyright (c) 2019 - 2020 [email protected]
5
 *
6
 * This file is part of the Firefly III CSV importer
7
 * (https://github.com/firefly-iii-csv-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
namespace App\Console;
24
25
use Exception;
26
use JsonException;
27
use Log;
28
29
/**
30
 * Trait VerifyJSON
31
 */
32
trait VerifyJSON
33
{
34
    /**
35
     * @param string $file
36
     *
37
     * @return bool
38
     */
39
    private function verifyJSON(string $file): bool
40
    {
41
        // basic check on the JSON.
42
        $json = file_get_contents($file);
43
        try {
44
            $configuration = json_decode($json, true, 512, JSON_THROW_ON_ERROR);
0 ignored issues
show
Unused Code introduced by
The assignment to $configuration is dead and can be removed.
Loading history...
45
        } catch (Exception|JsonException $e) {
46
            $message = sprintf('The importer can\'t import: could not decode the JSON in the config file: %s', $e->getMessage());
47
            Log::error($message);
48
49
            return false;
50
51
        }
52
53
        return true;
54
    }
55
56
}