Passed
Push — master ( 55cb94...e32a81 )
by Antonio Carlos
03:43
created

src/Checkers/Base.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace PragmaRX\Health\Checkers;
4
5
use PragmaRX\Health\Support\Timer;
6
use PragmaRX\Health\Support\Result;
7
use PragmaRX\Health\Support\Target;
8
use PragmaRX\Health\Support\Traits\Database;
9
10
abstract class Base implements Contract
11
{
12
    use Database;
13
14
    /**
15
     * @var Target
16
     */
17
    protected $target;
18
19
    /**
20
     * Check target and store elapsed time.
21
     */
22 1
    protected function checkAndStoreTime()
23
    {
24 1
        Timer::start();
25
26 1
        $result = $this->check();
27
28 1
        $result->elapsedTime = Timer::stop();
29
30 1
        return $result;
31
    }
32
33
    /**
34
     * Create base directory for files.
35
     *
36
     * @param $fileName
37
     */
38 1
    protected function makeDir($fileName)
39
    {
40 1
        $dir = dirname($fileName);
41
42 1
        if (! file_exists($dir)) {
43
            mkdir($dir, 0775, true);
44
        }
45 1
    }
46
47
    /**
48
     * Make a result.
49
     *
50
     * @param bool $healthy
51
     * @param null $errorMessage
52
     * @return Result
53
     */
54 1
    public function makeResult($healthy = true, $errorMessage = null)
55
    {
56 1
        return new Result($healthy, $errorMessage);
57
    }
58
59
    /**
60
     * Make a healthy result.
61
     *
62
     * @return Result
63
     */
64 1
    protected function makeHealthyResult()
65
    {
66 1
        return $this->makeResult();
67
    }
68
69
    /**
70
     * Make a result from an exception.
71
     *
72
     * @param $exception
73
     * @return Result
74
     */
75 1
    protected function makeResultFromException($exception)
76
    {
77 1
        return $this->makeResult(false, $exception->getMessage());
78
    }
79
80
    /**
81
     * @param $resources
82
     * @return mixed
83
     */
84
    public function healthy($resources)
85
    {
86
        return $this->healthy;
87
    }
88
89
    /**
90
     * @param $resources
91
     * @return mixed
92
     */
93
    public function message($resources)
94
    {
95
        return $this->message;
96
    }
97
98
    /**
99
     * Save result to database.
100
     *
101
     * @param $result
102
     * @return
103
     */
104 1
    protected function saveToDatabase($result)
105
    {
106 1
        if ($this->databaseEnabled()) {
107
            return $this->saveResultsToDatabase($this->target, $result);
108
        }
109 1
    }
110
111
    /**
112
     * @param $healthy
113
     */
114
    public function setHealthy($healthy)
115
    {
116
        $this->healthy = $healthy;
117
    }
118
119
    /**
120
     * @param $message
121
     */
122
    public function setMessage($message)
123
    {
124
        $this->message = $message;
125
    }
126
127
    /**
128
     * @return array
129
     */
130
    public function healthArray()
131
    {
132
        return [
133
            'healthy' => $this->healthy,
134
135
            'message' => $this->message,
136
        ];
137
    }
138
139
    /**
140
     * Load cache.
141
     *
142
     * @return \Illuminate\Support\Collection
143
     */
144 View Code Duplication
    public function load()
0 ignored issues
show
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
145
    {
146
        if (! file_exists($file = $this->getFileName())) {
147
            return collect();
148
        }
149
150
        return collect(json_decode(file_get_contents($file), true));
151
    }
152
153
    /**
154
     * Persist to database cache file.
155
     *
156
     * @param $data
157
     */
158 1
    public function persist($data = null)
159
    {
160 1
        if (is_null($data)) {
161 1
            $data = $this->database->toArray();
162
        }
163
164 1
        if (! is_array($data)) {
165
            $data = $data->toArray();
166
        }
167
168 1
        $this->makeDir($this->getFileName());
169
170 1
        file_put_contents($this->getFileName(), json_encode($data));
171 1
    }
172
173
    /**
174
     * Get cache filename.
175
     *
176
     * @return string
177
     */
178 1
    protected function getFileName()
179
    {
180 1
        return $this->target->saveTo ?? '';
181
    }
182
183
    /**
184
     * Target setter.
185
     *
186
     * @param $target
187
     * @return $this
188
     */
189 1
    public function setTarget($target)
190
    {
191 1
        $this->target = $target;
192
193 1
        return $this;
194
    }
195
196 1
    public function checkTarget()
197
    {
198 1
        $result = $this->checkAndStoreTime();
199
200 1
        $result->checks = $this->saveToDatabase($result);
201
202 1
        return $result;
203
    }
204
}
205