-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.js
124 lines (101 loc) · 2.61 KB
/
index.js
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
import process from 'node:process';
import path from 'node:path';
import {spawn} from 'node:child_process';
import http from 'node:http';
import open from 'open';
import binaryVersionCheck from 'binary-version-check';
import getPort from 'get-port';
const isServerRunning = (hostname, port, pathname) => new Promise((resolve, reject) => {
const retryDelay = 50;
const maxRetries = 20; // Give up after 1 second
let retryCount = 0;
const checkServer = () => {
setTimeout(() => {
http.request({
method: 'HEAD',
hostname,
port,
path: pathname,
}, response => {
const statusCodeType = Number.parseInt(response.statusCode.toString()[0], 10);
if ([2, 3, 4].includes(statusCodeType)) {
resolve();
return;
}
if (statusCodeType === 5) {
reject(new Error('Server docroot returned 500-level response. Please check your configuration for possible errors.'));
return;
}
checkServer();
}).on('error', error => {
if (++retryCount > maxRetries) {
reject(new Error(`Could not start the PHP server: ${error.message}`));
return;
}
checkServer();
}).end();
}, retryDelay);
};
checkServer();
});
export default async function phpServer(options) {
options = {
port: 0,
hostname: '127.0.0.1',
base: '.',
open: false,
env: {},
binary: 'php',
directives: {},
...options,
};
if (options.port === 0) {
options.port = await getPort();
}
const host = `${options.hostname}:${options.port}`;
const url = `http://${host}`;
const spawnArguments = ['-S', host];
if (options.base) {
spawnArguments.push('-t', path.resolve(options.base));
}
if (options.ini) {
spawnArguments.push('-c', options.ini);
}
if (options.directives) {
for (const [key, value] of Object.entries(options.directives)) {
spawnArguments.push('-d', `${key}=${value}`);
}
}
if (options.router) {
spawnArguments.push(options.router);
}
await binaryVersionCheck(options.binary, '>=5.4');
const subprocess = spawn(options.binary, spawnArguments, {
env: {
...process.env,
...options.env,
},
});
subprocess.ref();
process.on('exit', () => {
subprocess.kill();
});
let pathname = '/';
if (typeof options.open === 'string') {
pathname += options.open.replace(/^\//, '');
}
// Check when the server is ready. Tried doing it by listening
// to the child process `data` event, but it's not triggered...
await isServerRunning(options.hostname, options.port, pathname);
if (options.open) {
await open(`${url}${pathname}`);
}
return {
stdout: subprocess.stdout,
stderr: subprocess.stderr,
url,
stop() {
subprocess.kill();
},
};
}