UpdateMaintenanceMode::handle()   B
last analyzed

Complexity

Conditions 6
Paths 5

Size

Total Lines 18
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 18
c 0
b 0
f 0
rs 8.8571
cc 6
eloc 9
nc 5
nop 1
1
<?php namespace Anomaly\SettingsModule\Setting\Listener;
2
3
use Anomaly\SettingsModule\Setting\Contract\SettingRepositoryInterface;
4
use Anomaly\SettingsModule\Setting\Event\SettingsWereSaved;
5
use Illuminate\Contracts\Foundation\Application;
6
7
/**
8
 * Class UpdateMaintenanceMode
9
 *
10
 * @link          http://pyrocms.com/
11
 * @author        PyroCMS, Inc. <[email protected]>
12
 * @author        Ryan Thompson <[email protected]>
13
 */
14
class UpdateMaintenanceMode
15
{
16
17
    /**
18
     * The settings repository.
19
     *
20
     * @var SettingRepositoryInterface
21
     */
22
    protected $settings;
23
24
    /**
25
     * The application instance.
26
     *
27
     * @var Application
28
     */
29
    protected $application;
30
31
    /**
32
     * Create a new UpdateMaintenanceMode instance.
33
     *
34
     * @param Application                $application
35
     * @param SettingRepositoryInterface $settings
36
     */
37
    public function __construct(Application $application, SettingRepositoryInterface $settings)
38
    {
39
        $this->settings    = $settings;
40
        $this->application = $application;
41
    }
42
43
    /**
44
     * Handle the command.
45
     *
46
     * @param SettingsWereSaved $event
47
     */
48
    public function handle(SettingsWereSaved $event)
49
    {
50
        $builder = $event->getBuilder();
51
52
        if (!($namespace = $builder->getEntry()) == 'streams') {
53
            return;
54
        }
55
56
        $maintenance = $builder->getFormValue('maintenance');
57
58
        if ($maintenance && !$this->application->isDownForMaintenance()) {
59
            touch(storage_path('framework/down'));
60
        }
61
62
        if (!$maintenance && $this->application->isDownForMaintenance()) {
63
            unlink(storage_path('framework/down'));
64
        }
65
    }
66
}
67