gitee php proxy,index.php · Gitee 极速下载/php-proxy-app - Gitee.com

define('PROXY_START', microtime(true));

require("vendor/autoload.php");

use Proxy\Config;

use Proxy\Http\Request;

use Proxy\Proxy;

if (!function_exists('curl_version')) {

die("cURL extension is not loaded!");

}

// load config...

Config::load('./config.php');

// custom config file to be written to by a bash script or something

Config::load('./custom_config.php');

if (!Config::get('app_key')) {

die("app_key inside config.php cannot be empty!");

}

if (!Config::get('expose_php')) {

header_remove('X-Powered-By');

}

// start the session

if (Config::get('session_enable')) {

session_start();

}

// how are our URLs be generated from this point? this must be set here so the proxify_url function below can make use of it

if (Config::get('url_mode') == 2) {

Config::set('encryption_key', md5(Config::get('app_key') . $_SERVER['REMOTE_ADDR']));

} elseif (Config::get('url_mode') == 3) {

Config::set('encryption_key', md5(Config::get('app_key') . session_id()));

}

if (Config::get('session_enable')) {

// very important!!! otherwise requests are queued while waiting for session file to be unlocked

session_write_close();

}

// form submit in progress...

if (isset($_POST['url'])) {

$url = $_POST['url'];

$url = add_http($url);

header("HTTP/1.1 302 Found");

header('Location: ' . proxify_url($url));

exit;

} elseif (!isset($_GET['q'])) {

// must be at homepage - should we redirect somewhere else?

if (Config::get('index_redirect')) {

// redirect to...

header("HTTP/1.1 302 Found");

header("Location: " . Config::get('index_redirect'));

} else {

echo render_template("./templates/main.php", array('version' => Proxy::VERSION));

}

exit;

}

// decode q parameter to get the real URL

$url = url_decrypt($_GET['q']);

$proxy = new Proxy();

// load plugins

foreach (Config::get('plugins', array()) as $plugin) {

$plugin_class = $plugin . 'Plugin';

if (file_exists('./plugins/' . $plugin_class . '.php')) {

// use user plugin from /plugins/

require_once('./plugins/' . $plugin_class . '.php');

} elseif (class_exists('\\Proxy\\Plugin\\' . $plugin_class)) {

// does the native plugin from php-proxy package with such name exist?

$plugin_class = '\\Proxy\\Plugin\\' . $plugin_class;

}

// otherwise plugin_class better be loaded already through composer.json and match namespace exactly \\Vendor\\Plugin\\SuperPlugin

// $proxy->getEventDispatcher()->addSubscriber(new $plugin_class());

$proxy->addSubscriber(new $plugin_class());

}

try {

// request sent to index.php

$request = Request::createFromGlobals();

// remove all GET parameters such as ?q=

$request->get->clear();

// forward it to some other URL

$response = $proxy->forward($request, $url);

// if that was a streaming response, then everything was already sent and script will be killed before it even reaches this line

$response->send();

} catch (Exception $ex) {

// if the site is on server2.proxy.com then you may wish to redirect it back to proxy.com

if (Config::get("error_redirect")) {

$url = render_string(Config::get("error_redirect"), array(

'error_msg' => rawurlencode($ex->getMessage())

));

// Cannot modify header information - headers already sent

header("HTTP/1.1 302 Found");

header("Location: {$url}");

} else {

echo render_template("./templates/main.php", array(

'url' => $url,

'error_msg' => $ex->getMessage(),

'version' => Proxy::VERSION

));

}

}

一键复制

编辑

Web IDE

原始数据

按行查看

历史

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值