]> git.mxchange.org Git - friendica.git/blob - bin/wait-for-connection
Merge remote-tracking branch 'upstream/develop' into error-handling
[friendica.git] / bin / wait-for-connection
1 #!/usr/bin/php
2 <?php
3 /**
4  * @copyright Copyright (C) 2010-2021, the Friendica project
5  *
6  * @license GNU AGPL version 3 or any later version
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Affero General Public License as
10  * published by the Free Software Foundation, either version 3 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Affero General Public License for more details.
17  *
18  * You should have received a copy of the GNU Affero General Public License
19  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20  *
21  * This script tries to connect to a database for a given interval
22  * Useful in case of installation e.g. to wait for the database to not generate unnecessary errors
23  *
24  * Usage: php bin/wait-for-connection {HOST} {PORT} [{TIMEOUT}]
25  */
26
27 use Friendica\Network\HTTPException\ForbiddenException;
28
29 if (php_sapi_name() !== 'cli') {
30         throw new ForbiddenException();
31 }
32
33 $timeout = 60;
34 switch ($argc) {
35         case 4:
36                 $timeout = (float)$argv[3];
37         case 3:
38                 $host = $argv[1];
39                 $port = (int)$argv[2];
40                 break;
41         default:
42                 fwrite(STDERR, 'Usage: '.$argv[0].' host port [timeout]'."\n");
43                 exit(2);
44 }
45 if ($timeout < 0) {
46         fwrite(STDERR, 'Timeout must be greater than zero'."\n");
47         exit(2);
48 }
49 if ($port < 1) {
50         fwrite(STDERR, 'Port must be an integer greater than zero'."\n");
51         exit(2);
52 }
53 $socketTimeout = (float)ini_get('default_socket_timeout');
54 if ($socketTimeout > $timeout) {
55         $socketTimeout = $timeout;
56 }
57 $stopTime = time() + $timeout;
58 do {
59         $sock = @fsockopen($host, $port, $errno, $errstr, $socketTimeout);
60         if ($sock !== false) {
61                 fclose($sock);
62                 fwrite(STDOUT, "\n");
63                 exit(0);
64         }
65         sleep(1);
66         fwrite(STDOUT, '.');
67 } while (time() < $stopTime);
68 fwrite(STDOUT, "\n");
69 exit(1);