#!/usr/bin/env php
<?php
/*
 * This file is part of PHP-FastCGI-Client.
 *
 * (c) Pierrick Charron <pierrick@adoy.net>
 *     Remi Collet      <remi@famillecollet.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
require 'Adoy/FastCGI/Client.php';

use Adoy\FastCGI\Client;

/**
 * Simple command line script to test communication with a FastCGI server
 *
 * @author      Pierrick Charron <pierrick@adoy.net>
 * @author      Remi Collet <remi@famillecollet.com>
 * @version     1.0
 */
if (!isset($_SERVER['argc'])) {
    die("Command line only\n");
}
if ($_SERVER['argc']<2) {
    echo "Usage: ".$_SERVER['argv'][0]."  URI\n\n";
    echo "Ex: ".$_SERVER['argv'][0]." localhost:9000/status\n";
    echo "Ex: ".$_SERVER['argv'][0]." unix:/var/run/php-fpm/web.sock/status\n";
    exit(1);
}

if (preg_match('|^unix:(.*.sock)(/.*)$|', $_SERVER['argv'][1], $reg)) {
    $url  = parse_url($reg[2]);
    $sock = $reg[1];
    if (!file_exists($sock)) {
        die("UDS $sock not found\n");
    } else if (!is_writable($sock)) {
        die("UDS $sock is not writable\n");
    }
} else {
    $url  = parse_url($_SERVER['argv'][1]);
    $sock = false;
}
if (!$url || !isset($url['path'])) {
    die("Malformed URI");
}

$req = '/'.basename($url['path']);
if (isset($url['query'])) {
    $uri = $req .'?'.$url['query'];
} else {
    $url['query'] = '';
    $uri = $req;
}
if ($sock) {
    $client = new Client("unix://$sock", -1);
    echo "Call: $uri on UDS $sock\n\n";
} else {
    $host = (isset($url['host']) ? $url['host'] : 'localhost');
    $port = (isset($url['port']) ? $url['port'] : 9000);
    $client = new Client($host, $port);
    echo "Call: $uri on $host:$port\n\n";
}

$params = array(
		'GATEWAY_INTERFACE' => 'FastCGI/1.0',
		'REQUEST_METHOD'    => 'GET',
		'SCRIPT_FILENAME'   => $url['path'],
		'SCRIPT_NAME'       => $req,
		'QUERY_STRING'      => $url['query'],
		'REQUEST_URI'       => $uri,
		'DOCUMENT_URI'      => $req,
		'SERVER_SOFTWARE'   => 'php/fcgiclient',
		'REMOTE_ADDR'       => '127.0.0.1',
		'REMOTE_PORT'       => '9985',
		'SERVER_ADDR'       => '127.0.0.1',
		'SERVER_PORT'       => '80',
		'SERVER_NAME'       => php_uname('n'),
		'SERVER_PROTOCOL'   => 'HTTP/1.1',
		'CONTENT_TYPE'      => '',
		'CONTENT_LENGTH'    => 0
);
//print_r($params);
echo $client->request($params, false)."\n";

