⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 proxy.php

📁 PHP 知识管理系统(基于树结构的知识管理系统), 英文原版的PHP源码。
💻 PHP
字号:
<?php
/**
 * XMLRPC server acting as proxy for requests to other servers
 * (useful e.g. for ajax-originated calls that can only connect back to
 * the originating server)
 *
 * @version $Id: proxy.php,v 1.3 2006/12/28 16:10:42 milosch Exp $
 * @copyright G. Giunta (C) 2006
 * @author Gaetano Giunta
 */

	include("xmlrpc.inc");
	include("xmlrpcs.inc");

	/**
	* Forward an xmlrpc request to another server, and return to client the response received.
	* @param xmlrpcmsg $m (see method docs below for a description of the expected parameters)
	* @return xmlrpcresp
	*/
	function forward_request($m)
	{
		// create client
		$timeout = 0;
		$url = php_xmlrpc_decode($m->getParam(0));
		$c = new xmlrpc_client($url);
		if ($m->getNumParams() > 3)
		{
			// we have to set some options onto the client.
			// Note that if we do not untaint the received values, warnings might be generated...
			$options = php_xmlrpc_decode($m->getParam(3));
			foreach($options as $key => $val)
			{
				switch($key)
				{
					case 'Cookie':
						break;
					case 'Credentials':
						break;
					case 'RequestCompression':
						$c->setRequestCompression($val);
						break;
					case 'SSLVerifyHost':
						$c->setSSLVerifyHost($val);
						break;
					case 'SSLVerifyPeer':
						$c->setSSLVerifyPeer($val);
						break;
					case 'Timeout':
						$timeout = (integer) $val;
						break;
				} // switch
			}
		}

		// build call for remote server
		/// @todo find a weay to forward client info (such as IP) to server, either
		/// - as xml comments in the payload, or
		/// - using std http header conventions, such as X-forwarded-for...
		$method = php_xmlrpc_decode($m->getParam(1));
		$pars = $m->getParam(2);
		$m = new xmlrpcmsg($method);
		for ($i = 0; $i < $pars->arraySize(); $i++)
		{
			$m->addParam($pars->arraymem($i));
		}

		// add debug info into response we give back to caller
		xmlrpc_debugmsg("Sending to server $url the payload: ".$m->serialize());
		return $c->send($m, $timeout);
	}

	// run the server
	$server = new xmlrpc_server(
		array(
			'xmlrpcproxy.call' => array(
				'function' => 'forward_request',
				'signature' => array(
					array('mixed', 'string', 'string', 'array'),
					array('mixed', 'string', 'string', 'array', 'stuct'),
				),
				'docstring' => 'forwards xmlrpc calls to remote servers. Returns remote method\'s response. Accepts params: remote server url (might include basic auth credentials), method name, array of params, and (optionally) a struct containing call options'
			)
		)
	);
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -