Passed
Push — develop ( 0fc46b...6b7c8d )
by Tony
04:19
created

Util   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 57
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 68.42%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 57
ccs 13
cts 19
cp 0.6842
rs 10
c 1
b 0
f 0
wmc 8
lcom 0
cbo 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A arrayMergeConcat() 0 18 4
A isJson() 0 8 2
A formatUptime() 0 9 2
1
<?php
2
/**
3
 * Util.php
4
 *
5
 * Common Utility functions
6
 *
7
 * This program is free software: you can redistribute it and/or modify
8
 * it under the terms of the GNU General Public License as published by
9
 * the Free Software Foundation, either version 3 of the License, or
10
 * (at your option) any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 *
20
 * @package    LibreNMS
21
 * @link       http://librenms.org
22
 * @copyright  2016 Tony Murray
23
 * @author     Tony Murray <[email protected]>
24
 */
25
26
namespace App;
27
28
class Util
29
{
30
    /**
31
     * Merge arrays, concatenate the values of any common keys
32
     *
33
     * @param array ...
34
     * @return array
35
     */
36 5
    public static function arrayMergeConcat()
37
    {
38 5
        $out = [];
39
        // loop through the arguments
40 5
        foreach (func_get_args() as $arr) {
41
            // loop through each array
42 5
            foreach ($arr as $key => $value) {
43
                // If the same key exists in the $out array
44 5
                if (array_key_exists($key, $out)) {
45
                    // concat the values
46 5
                    $out[$key] = $out[$key].$arr[$key];
47
                } else {
48 5
                    $out[$key] = $arr[$key];
49
                }
50
            }
51
        }
52 5
        return $out;
53
    }
54
55
    /**
56
     * Checks if the given variable is a json encoded string.
57
     *
58
     * @param string $string The string to check
59
     * @return bool true if this is json, otherwise false
60
     */
61 1
    public static function isJson($string)
62
    {
63 1
        if (!is_string($string)) {
64 1
            return false;
65
        }
66 1
        json_decode($string, true);
67 1
        return (json_last_error() == JSON_ERROR_NONE);
68
    }
69
70
71
    /**
72
     * @param int $seconds
73
     * @return string
74
     */
75
    public static function formatUptime($seconds)
76
    {
77
        if (empty($seconds)) {
78
            $seconds = 0;
79
        }
80
        $from = new \DateTime("@0");
81
        $to = new \DateTime("@$seconds");
82
        return $from->diff($to)->format('%a d, %h h, %i m and %s s');
83
    }
84
}
85