Completed
Push — master ( 4dda57...270521 )
by Andrii
02:39
created

VhostController::setDomain()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
/**
3
 * HiDev Nginx plugin
4
 *
5
 * @link      https://github.com/hiqdev/hidev-nginx
6
 * @package   hidev-nginx
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hidev\nginx\controllers;
12
13
use hidev\modifiers\Sudo;
14
use Yii;
15
16
/**
17
 * Goal for Nginx virtual host.
18
 */
19
class VhostController extends \hidev\controllers\CommonController
20
{
21
    /**
22
     * @var NginxController
23
     */
24
    public $nginx;
25
26
    /**
27
     * @var integer
28
     */
29
    public $timeout;
30
31
    public $ssl;
32
33
    public $_aliases = [];
34
35
    protected $_sslDir;
36
    protected $_ips = [];
37
    protected $_localIps = [];
38
    protected $_domain;
39
    protected $_webDir;
40
    protected $_logDir;
41
    protected $_fpmSocket;
42
    protected $_additionalConfig;
43
44
    public function actionChmodSsl()
45
    {
46
        $dir = $this->getSslDir();
47
        $this->passthru('chown', ['-R', 'www-data', $dir, Sudo::create()]);
48
        $this->passthru('chgrp', ['-R', 'www-data', $dir, Sudo::create()]);
49
        $this->passthru('chmod', ['-R', 'o-rwx',    $dir, Sudo::create()]);
50
    }
51
52 1
    public function renderConf()
53
    {
54 1
        return $this->nginx->render('default.twig', [
55 1
            'this' => $this,
56 1
        ]);
57
    }
58
59 1
    public function setDomain($value)
60
    {
61 1
        $this->_domain = $value;
62 1
    }
63
64 1
    public function getDomain()
65
    {
66 1
        if ($this->_domain === null || $this->_domain === 'default') {
67 1
            $this->_domain = $this->takePackage()->name;
68 1
        }
69
70 1
        return $this->_domain;
71
    }
72
73 1
    public function setIp($value)
74
    {
75 1
        $this->_ips = [$value];
76 1
    }
77
78 1
    public function setIps($value)
79
    {
80 1
        $this->_ips = is_array($value) ? array_unique($value) : [$value];
81 1
    }
82
83 1
    public function getIps()
84
    {
85 1
        if (empty($this->_ips)) {
86 1
            $this->_ips = $this->findIps();
87 1
        }
88
89 1
        return $this->_ips;
90
    }
91
92 1
    public function findIps()
93
    {
94 1
        return [gethostbyname($this->getDomain()) ?: '127.0.0.1'];
95
    }
96
97 1
    public function setLocalIps($value)
98
    {
99 1
        $this->_localIps = is_array($value) ? array_unique($value) : [$value];
100 1
    }
101
102 1
    public function getLocalIps()
103
    {
104 1
        if (empty($this->_localIps)) {
105 1
            $this->_localIps = $this->ssl ? ['127.0.0.1'] : $this->getIps();
106 1
        }
107
108 1
        return $this->_localIps;
109
    }
110
111 1
    public function setWebDir($value)
112
    {
113 1
        $this->_webDir = Yii::getAlias($value);
114 1
    }
115
116 1
    public function getWebDir()
117
    {
118 1
        if ($this->_webDir === null) {
119
            $this->_webDir = $this->takeGoal('start')->buildRootPath('web');
120
        }
121
122 1
        return $this->_webDir;
123
    }
124
125 1
    public function setLogDir($value)
126
    {
127 1
        $this->_logDir = Yii::getAlias($value);
128 1
    }
129
130 1
    public function getLogDir()
131
    {
132 1
        if ($this->_logDir === null) {
133 1
            $this->_logDir = $this->nginx->getLogDir();
134 1
        }
135
136 1
        return $this->_logDir;
137
    }
138
139 1
    public function setFpmSocket($value)
140
    {
141 1
        $this->_fpmSocket = $value;
142 1
    }
143
144 1
    public function getFpmSocket()
145
    {
146 1
        if ($this->_fpmSocket === null) {
147 1
            $this->_fpmSocket = $this->nginx->getFpmSocket();
148 1
        }
149
150 1
        return $this->_fpmSocket;
151
    }
152
153 1
    public function setSslDir($value)
154
    {
155 1
        $this->_sslDir = Yii::getAlias($value);
156 1
        if ($this->_sslDir[0] !== '/') {
157
            $this->_sslDir = $this->takeGoal('start')->buildRootPath($this->_sslDir);
158
        }
159 1
    }
160
161 1
    public function getSslDir()
162
    {
163 1
        if ($this->_sslDir === null) {
164
            $this->_sslDir = $this->takeGoal('start')->buildRootPath('ssl');
165
        }
166
167 1
        return $this->_sslDir;
168
    }
169
170
    public function setAliases($aliases)
171
    {
172
        if (!is_array($aliases)) {
173
            $aliases = preg_split('/[\s,]+/', trim($aliases));
174
        }
175
        $this->_aliases = $aliases;
176
    }
177
178 1
    public function getAliases()
179
    {
180 1
        return $this->_aliases;
181
    }
182
183 1
    public function getDomains()
184
    {
185 1
        $domains = $this->getAliases();
186 1
        array_unshift($domains, $this->getDomain());
187
188 1
        return $domains;
189
    }
190
191 1
    public function getServerName()
192
    {
193 1
        return implode(' ', $this->getDomains());
194
    }
195
196 1
    public function getAdditionalConfig()
197
    {
198 1
        return $this->_additionalConfig;
199
    }
200
201
    public function setAdditionalConfig($additinalConfig)
202
    {
203
        $this->_additionalConfig = $additinalConfig;
204
    }
205
}
206