@@ -52,7 +52,7 @@ public function install()
52
52
53
53
$ this ->files ->ensureDirExists (VALET_HOME_PATH .'/Log ' , user ());
54
54
55
- $ this ->updateConfiguration ();
55
+ $ this ->createConfigurationFiles ();
56
56
57
57
$ this ->restart ();
58
58
}
@@ -70,66 +70,45 @@ public function uninstall()
70
70
}
71
71
72
72
/**
73
- * Update the PHP FPM configuration.
73
+ * Create (or re-create) the PHP FPM configuration files.
74
+ * Writes FPM config file, pointing to the correct .sock file, and log and ini files
74
75
*
75
76
* @param string|null $phpVersion
76
77
* @return void
77
78
*/
78
- public function updateConfiguration ($ phpVersion = null )
79
+ public function createConfigurationFiles ($ phpVersion = null )
79
80
{
80
81
info (sprintf ('Updating PHP configuration%s... ' , $ phpVersion ? ' for ' .$ phpVersion : '' ));
81
82
82
83
$ fpmConfigFile = $ this ->fpmConfigPath ($ phpVersion );
83
84
84
85
$ this ->files ->ensureDirExists (dirname ($ fpmConfigFile ), user ());
85
86
86
- // rename (to disable) old FPM Pool configuration, regardless of whether it's a default config or one customized by an older Valet version
87
- $ oldFile = dirname ($ fpmConfigFile ).'/www.conf ' ;
88
- if (file_exists ($ oldFile )) {
89
- rename ($ oldFile , $ oldFile .'-backup ' );
90
- }
91
-
92
- if (false === strpos ($ fpmConfigFile , '5.6 ' )) {
93
- // since PHP 7 we can simply drop in a valet-specific fpm pool config, and not touch the default config
94
- $ contents = $ this ->files ->get (__DIR__ .'/../stubs/etc-phpfpm-valet.conf ' );
95
- $ contents = str_replace (['VALET_USER ' , 'VALET_HOME_PATH ' ], [user (), VALET_HOME_PATH ], $ contents );
96
- } else {
97
- // for PHP 5 we must do a direct edit of the fpm pool config to switch it to Valet's needs
98
- $ contents = $ this ->files ->get ($ fpmConfigFile );
99
- $ contents = preg_replace ('/^user = .+$/m ' , 'user = ' .user (), $ contents );
100
- $ contents = preg_replace ('/^group = .+$/m ' , 'group = staff ' , $ contents );
101
- $ contents = preg_replace ('/^listen = .+$/m ' , 'listen = ' .VALET_HOME_PATH .'/valet.sock ' , $ contents );
102
- $ contents = preg_replace ('/^;?listen\.owner = .+$/m ' , 'listen.owner = ' .user (), $ contents );
103
- $ contents = preg_replace ('/^;?listen\.group = .+$/m ' , 'listen.group = staff ' , $ contents );
104
- $ contents = preg_replace ('/^;?listen\.mode = .+$/m ' , 'listen.mode = 0777 ' , $ contents );
105
- }
106
-
87
+ // Drop in a valet-specific fpm pool config
88
+ $ contents = $ this ->files ->get (__DIR__ .'/../stubs/etc-phpfpm-valet.conf ' );
89
+ $ contents = str_replace (['VALET_USER ' , 'VALET_HOME_PATH ' ], [user (), VALET_HOME_PATH ], $ contents );
107
90
if ($ phpVersion ) {
108
91
$ contents = str_replace ('valet.sock ' , $ this ->fpmSockName ($ phpVersion ), $ contents );
109
92
}
110
-
111
93
$ this ->files ->put ($ fpmConfigFile , $ contents );
112
94
95
+ // Set log and ini files
96
+ $ destDir = dirname (dirname ($ fpmConfigFile )) . '/conf.d ' ;
97
+ $ this ->files ->ensureDirExists ($ destDir , user ());
98
+
113
99
$ contents = $ this ->files ->get (__DIR__ .'/../stubs/php-memory-limits.ini ' );
114
- $ destFile = dirname ($ fpmConfigFile );
115
- $ destFile = str_replace ('/php-fpm.d ' , '' , $ destFile );
116
- $ destFile .= '/conf.d/php-memory-limits.ini ' ;
117
- $ this ->files ->ensureDirExists (dirname ($ destFile ), user ());
118
- $ this ->files ->putAsUser ($ destFile , $ contents );
100
+ $ this ->files ->putAsUser ($ destDir .'/php-memory-limits.ini ' , $ contents );
119
101
120
102
$ contents = $ this ->files ->get (__DIR__ .'/../stubs/etc-phpfpm-error_log.ini ' );
121
103
$ contents = str_replace (['VALET_USER ' , 'VALET_HOME_PATH ' ], [user (), VALET_HOME_PATH ], $ contents );
122
- $ destFile = dirname ($ fpmConfigFile );
123
- $ destFile = str_replace ('/php-fpm.d ' , '' , $ destFile );
124
- $ destFile .= '/conf.d/error_log.ini ' ;
125
- $ this ->files ->ensureDirExists (dirname ($ destFile ), user ());
126
- $ this ->files ->putAsUser ($ destFile , $ contents );
104
+ $ this ->files ->putAsUser ($ destDir .'/error_log.ini ' , $ contents );
105
+
127
106
$ this ->files ->ensureDirExists (VALET_HOME_PATH .'/Log ' , user ());
128
107
$ this ->files ->touch (VALET_HOME_PATH .'/Log/php-fpm.log ' , user ());
129
108
}
130
109
131
110
/**
132
- * Restart the PHP FPM process.
111
+ * Restart the PHP FPM process(es) .
133
112
*
134
113
* @param string|null $phpVersion
135
114
* @return void
@@ -167,9 +146,7 @@ public function fpmConfigPath($phpVersion = null)
167
146
$ versionNormalized = $ this ->normalizePhpVersion ($ phpVersion === 'php ' ? Brew::LATEST_PHP_VERSION : $ phpVersion );
168
147
$ versionNormalized = preg_replace ('~[^\d\.]~ ' , '' , $ versionNormalized );
169
148
170
- return $ versionNormalized === '5.6 '
171
- ? BREW_PREFIX .'/etc/php/5.6/php-fpm.conf '
172
- : BREW_PREFIX ."/etc/php/ $ {versionNormalized}/php-fpm.d/valet-fpm.conf " ;
149
+ return BREW_PREFIX ."/etc/php/ $ {versionNormalized}/php-fpm.d/valet-fpm.conf " ;
173
150
}
174
151
175
152
/**
@@ -187,21 +164,17 @@ public function stopRunning()
187
164
}
188
165
189
166
/**
190
- * Stop PHP, if a specific version isn't being used globally or by any sites.
167
+ * Stop a given PHP version , if a specific version isn't being used globally or by any sites.
191
168
*
192
169
* @param string|null $phpVersion
193
170
* @return void
194
171
*/
195
- public function stopIfUnused ($ phpVersion )
172
+ public function stopIfUnused ($ phpVersion = null )
196
173
{
197
174
if (! $ phpVersion ) {
198
175
return ;
199
176
}
200
177
201
- if (strpos ($ phpVersion , 'php ' ) === false ) {
202
- $ phpVersion = 'php ' .$ phpVersion ;
203
- }
204
-
205
178
$ phpVersion = $ this ->normalizePhpVersion ($ phpVersion );
206
179
207
180
if (! in_array ($ phpVersion , $ this ->utilizedPhpVersions ())) {
@@ -210,38 +183,69 @@ public function stopIfUnused($phpVersion)
210
183
}
211
184
212
185
/**
213
- * Use a specific version of php.
186
+ * Isolate a given directory to use a specific version of php.
214
187
*
188
+ * @param string $directory
215
189
* @param string $version
216
- * @param bool $force
217
- * @param string|null $directory
218
- * @return string|void
190
+ * @return void
219
191
*/
220
- public function useVersion ( $ version , $ force = false , $ directory = null )
192
+ public function isolateDirectoryToVersion ( $ directory , $ version )
221
193
{
222
- if ($ directory ) {
223
- $ site = $ this ->site ->getSiteUrl ($ directory );
224
-
225
- if (! $ site ) {
226
- throw new DomainException (
227
- sprintf (
228
- "The [%s] site could not be found in Valet's site list. " ,
229
- $ directory
230
- )
231
- );
232
- }
194
+ if (!$ site = $ this ->site ->getSiteUrl ($ directory )) {
195
+ throw new DomainException ("The [ {$ directory }] site could not be found in Valet's site list. " );
196
+ }
233
197
234
- if ($ version == 'default ' ) { // Remove isolation for this site
235
- $ oldCustomPhpVersion = $ this ->site ->customPhpVersion ($ site ); // Example output: "74"
236
- $ this ->site ->removeIsolation ($ site );
237
- $ this ->stopIfUnused ($ oldCustomPhpVersion );
238
- $ this ->nginx ->restart ();
239
- info (sprintf ('The site [%s] is now using the default PHP version. ' , $ site ));
198
+ $ this ->brew ->ensureInstalled ($ version , [], $ this ->taps );
240
199
241
- return ;
242
- }
200
+ $ oldCustomPhpVersion = $ this ->site ->customPhpVersion ($ site ); // Example output: "74"
201
+ $ this ->createConfigurationFiles ($ version );
202
+
203
+ $ this ->site ->isolate ($ site , $ this ->fpmSockName ($ version ), $ version );
204
+
205
+ $ this ->stopIfUnused ($ oldCustomPhpVersion );
206
+ $ this ->restart ($ version );
207
+ $ this ->nginx ->restart ();
208
+
209
+ info (sprintf ('The site [%s] is now using %s. ' , $ site , $ version ));
210
+ }
211
+
212
+ /**
213
+ * Remove PHP version isolation for a given directory
214
+ *
215
+ * @param string $directory
216
+ * @return void
217
+ */
218
+ public function unIsolateDirectory ($ directory )
219
+ {
220
+ $ site = $ this ->site ->getSiteUrl ($ directory );
221
+
222
+ if (!$ site ) {
223
+ throw new DomainException (
224
+ sprintf (
225
+ "The [%s] site could not be found in Valet's site list. " ,
226
+ $ directory
227
+ )
228
+ );
243
229
}
244
230
231
+ $ oldCustomPhpVersion = $ this ->site ->customPhpVersion ($ site ); // Example output: "74"
232
+
233
+ $ this ->site ->removeIsolation ($ site );
234
+ $ this ->stopIfUnused ($ oldCustomPhpVersion );
235
+ $ this ->nginx ->restart ();
236
+
237
+ info (sprintf ('The site [%s] is now using the default PHP version. ' , $ site ));
238
+ }
239
+
240
+ /**
241
+ * Use a specific version of PHP globally.
242
+ *
243
+ * @param string $version
244
+ * @param bool $force
245
+ * @return string|void
246
+ */
247
+ public function useVersion ($ version , $ force = false )
248
+ {
245
249
$ version = $ this ->validateRequestedVersion ($ version );
246
250
247
251
try {
@@ -253,31 +257,14 @@ public function useVersion($version, $force = false, $directory = null)
253
257
} catch (DomainException $ e ) { /* ignore thrown exception when no linked php is found */
254
258
}
255
259
256
- if (! $ this ->brew ->installed ($ version )) {
257
- // Install the relevant formula if not already installed
258
- $ this ->brew ->ensureInstalled ($ version , [], $ this ->taps );
259
- }
260
-
261
- if ($ directory ) {
262
- $ oldCustomPhpVersion = $ this ->site ->customPhpVersion ($ site ); // Example output: "74"
263
- $ this ->cli ->quietly ('sudo rm ' .VALET_HOME_PATH .'/ ' .$ this ->fpmSockName ($ version ));
264
- $ this ->updateConfiguration ($ version );
265
- $ this ->site ->installSiteConfig ($ site , $ this ->fpmSockName ($ version ), $ version );
266
-
267
- $ this ->stopIfUnused ($ oldCustomPhpVersion );
268
- $ this ->restart ($ version );
269
- $ this ->nginx ->restart ();
270
- info (sprintf ('The site [%s] is now using %s. ' , $ site , $ version ));
271
-
272
- return ;
273
- }
260
+ $ this ->brew ->ensureInstalled ($ version , [], $ this ->taps );
274
261
275
262
// Unlink the current global PHP if there is one installed
276
263
if ($ this ->brew ->hasLinkedPhp ()) {
277
264
$ linkedPhp = $ this ->brew ->linkedPhp ();
278
265
279
266
// Update the old FPM to keep running, using a custom sock file, so existing isolated sites aren't broken
280
- $ this ->updateConfiguration ($ linkedPhp );
267
+ $ this ->createConfigurationFiles ($ linkedPhp );
281
268
282
269
// Update existing custom Nginx config files; if they're using the old or new PHP version,
283
270
// update them to the new correct sock file location
@@ -297,7 +284,6 @@ public function useVersion($version, $force = false, $directory = null)
297
284
$ this ->files ->unlink (VALET_HOME_PATH .'/valet.sock ' );
298
285
$ this ->cli ->quietly ('sudo rm ' .VALET_HOME_PATH .'/valet*.sock ' );
299
286
300
- // ensure configuration is correct and start the linked version
301
287
$ this ->install ();
302
288
303
289
$ newVersion = $ version === 'php ' ? $ this ->brew ->determineAliasedVersion ($ version ) : $ version ;
@@ -311,41 +297,37 @@ public function useVersion($version, $force = false, $directory = null)
311
297
}
312
298
313
299
/**
314
- * If passed php7.4 or php74 formats, normalize to [email protected] format.
300
+ * If passed php7.4, or php74, 7.4, or 74 formats, normalize to [email protected] format.
315
301
*/
316
302
public function normalizePhpVersion ($ version )
317
303
{
304
+ // @todo There's probably a way to incorporate this into the regex
305
+ if (strpos ($ version , 'php ' ) === false ) {
306
+ $ version = 'php ' . $ version ;
307
+ }
308
+
318
309
return preg_replace ('/(php)([0-9+])(?:.)?([0-9+])/i ' , '$1@$2.$3 ' , $ version );
319
310
}
320
311
321
312
/**
322
313
* Validate the requested version to be sure we can support it.
323
314
*
324
- * @param $version
315
+ * @param string $version
325
316
* @return string
326
317
*/
327
318
public function validateRequestedVersion ($ version )
328
319
{
329
320
$ version = $ this ->normalizePhpVersion ($ version );
330
321
331
322
if (! $ this ->brew ->supportedPhpVersions ()->contains ($ version )) {
332
- throw new DomainException (
333
- sprintf (
334
- 'Valet doesn \'t support PHP version: %s (try something like \'[email protected] \' instead) ' ,
335
- $ version
336
- )
337
- );
323
+ throw new DomainException (
"Valet doesn't support PHP version: {$ version } (try something like '[email protected] ' instead) " );
338
324
}
339
325
340
326
if (strpos ($ aliasedVersion = $ this ->brew ->determineAliasedVersion ($ version ), '@ ' )) {
341
327
return $ aliasedVersion ;
342
328
}
343
329
344
330
if ($ version === 'php ' ) {
345
- if (strpos ($ aliasedVersion = $ this ->brew ->determineAliasedVersion ($ version ), '@ ' )) {
346
- return $ aliasedVersion ;
347
- }
348
-
349
331
if ($ this ->brew ->hasInstalledPhp ()) {
350
332
throw new DomainException (
'Brew is already using PHP ' .
PHP_VERSION .
' as \'php \' in Homebrew. To use another version, please specify. eg: [email protected] ' );
351
333
}
0 commit comments