-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathz_php_fpm_incron_reload_plugin.inc.php
More file actions
201 lines (146 loc) · 5.18 KB
/
z_php_fpm_incron_reload_plugin.inc.php
File metadata and controls
201 lines (146 loc) · 5.18 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?php
/**
* If your websites use PHP-FPM and you have incron installed, you can use this plugin to automatically add incron
* configuration which will take care of reloading the php-fpm pool when the file /private/php-fpm.reload is touched.
* Projects which use deployment tools can use this to reload php-fpm to clear the opcache at deploy time, without
* requiring superuser privileges.
*
* The plugin is prefixed with `z_` because plugins are executed alphabetically, and this plugin
* must only run after apache2/nginx plugins so we are sure the directories and user/group exist.
*/
class z_php_fpm_incron_reload_plugin {
var $plugin_name = 'z_php_fpm_incron_reload_plugin';
var $class_name = 'z_php_fpm_incron_reload_plugin';
function onInstall() {
global $conf;
return $conf['services']['web'] == true;
}
function onLoad() {
global $app;
if ($this->isPluginEnabled() === false) {
return;
}
if ($this->isIncronAvailable() === false) {
$app->log('You must install incron in order to use this plugin', LOGLEVEL_DEBUG);
return;
}
$app->plugins->registerEvent('web_domain_insert', $this->plugin_name, 'incronInsert');
$app->plugins->registerEvent('web_domain_update', $this->plugin_name, 'incronUpdate');
$app->plugins->registerEvent('web_domain_delete', $this->plugin_name, 'incronDelete');
}
function incronInsert($eventName, $data) {
$this->setup($data['new']);
}
function incronUpdate($eventName, $data) {
global $app;
if ($this->documentRootUnchanged($data) && $this->phpVersionUnchanged($data)) {
$app->log('Document root and PHP version unchanged. Not updating incron configuration.', LOGLEVEL_DEBUG);
return;
}
$this->teardown($data['old']);
$this->setup($data['new']);
}
function incronDelete($eventName, $data) {
$this->teardown($data['old']);
}
private function documentRootUnchanged($data)
{
return $data['new']['document_root'] === $data['old']['document_root'];
}
private function phpVersionUnchanged($data)
{
return $data['new']['server_php_id'] === $data['old']['server_php_id'];
}
private function setup($data)
{
$triggerFile = $this->getTriggerFilePath($data['document_root']);
$this->createTriggerFile($triggerFile, $data['system_user'], $data['system_group']);
$this->createIncronConfiguration(
$triggerFile,
$data['system_user'],
$data['server_php_id']
);
$this->restartIncronService();
}
private function teardown($data) {
$this->deleteIncronConfiguration($data['system_user']);
$this->deleteTriggerFile($this->getTriggerFilePath($data['document_root']));
$file = sprintf('/etc/incron.d/%s.conf', $data['system_user']);
@unlink($file);
$this->restartIncronService();
}
private function isIncronAvailable() {
exec('which incrond', $output, $retval);
return $retval === 0;
}
private function isPluginEnabled() {
global $app, $conf;
$app->uses('getconf');
$serverConfig = $app->getconf->get_server_config($conf['server_id'], 'web');
return $serverConfig['php_fpm_incron_reload'] === 'y';
}
private function createIncronConfiguration($triggerFile, $systemUser, $fastcgiPhpVersion) {
global $app;
$phpService = $this->getPhpService($fastcgiPhpVersion);
$configFile = $this->getIncronConfigurationFilePath($systemUser);
$content = sprintf(
'%s %s %s',
$triggerFile,
'IN_CLOSE_WRITE',
$app->system->getinitcommand($phpService, 'reload')
);
file_put_contents($configFile, $content);
$app->log(sprintf('Created incron configuration "%s"', $configFile), LOGLEVEL_DEBUG);
}
private function createTriggerFile($triggerFile, $systemUser, $systemGroup) {
global $app;
if (!file_exists($triggerFile)) {
exec(sprintf('touch %s', $triggerFile));
}
exec(sprintf('chown %s:%s %s', $systemUser, $systemGroup, $triggerFile));
$app->log(sprintf('Ensured incron trigger file "%s"', $triggerFile), LOGLEVEL_DEBUG);
}
private function deleteIncronConfiguration($systemUser) {
global $app;
$configFile = $this->getIncronConfigurationFilePath($systemUser);
if (!file_exists($configFile)) {
return;
}
unlink($configFile);
$app->log(sprintf('Deleted incron configuration "%s"', $configFile), LOGLEVEL_DEBUG);
}
private function deleteTriggerFile($triggerFile) {
global $app;
if (!file_exists($triggerFile)) {
return;
}
unlink($triggerFile);
$app->log(sprintf('Deleted incron trigger file "%s"', $triggerFile), LOGLEVEL_DEBUG);
}
private function getTriggerFilePath($documentRoot) {
return sprintf('%s/private/php-fpm.reload', $documentRoot);
}
private function getIncronConfigurationFilePath($systemUser) {
return sprintf('/etc/incron.d/%s.conf', $systemUser);
}
private function getPhpService($fastcgiPhpVersion) {
global $app;
$phpInfo = $app->db->queryOneRecord('SELECT * FROM server_php WHERE server_php_id = ?', $fastcgiPhpVersion);
if (empty($phpInfo)) {
return null;
}
$phpService = $phpInfo['php_fpm_init_script'];
if (empty($phpService)) {
return null;
}
return $phpService;
}
private function restartIncronService() {
global $app;
$serviceName = 'incrond';
if (file_exists('/etc/debian_version')) {
$serviceName = 'incron';
}
exec($app->system->getinitcommand($serviceName, 'restart'));
}
}