summaryrefslogtreecommitdiffstats
path: root/library/Director/Deployment/DeploymentInfo.php
blob: 77d52de4c28b39a0e410924cf8a27d6cd2f7b2ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php

namespace Icinga\Module\Director\Deployment;

use Icinga\Module\Director\Db;
use Icinga\Module\Director\Objects\IcingaObject;

class DeploymentInfo
{
    /** @var IcingaObject */
    protected $object;

    protected $db;

    /** @var int */
    protected $totalChanges;

    /** @var int */
    protected $objectChanges;

    public function __construct(Db $db)
    {
        $this->db = $db;
    }

    public function setObject(IcingaObject $object)
    {
        $this->object = $object;
        return $this;
    }

    public function getTotalChanges()
    {
        if ($this->totalChanges === null) {
            $this->totalChanges = $this->db->countActivitiesSinceLastDeployedConfig();
        }

        return $this->totalChanges;
    }

    public function getSingleObjectChanges()
    {
        if ($this->objectChanges === null) {
            if ($this->object === null) {
                $this->objectChanges = 0;
            } else {
                $this->objectChanges = $this->db
                    ->countActivitiesSinceLastDeployedConfig($this->object);
            }
        }

        return $this->objectChanges;
    }

    public function hasUndeployedChanges()
    {
        return $this->getSingleObjectChanges() > 0 && $this->getTotalChanges() > 0;
    }
}