N行代码实现一个简单的代理服务器

<?php
/**
* Web代理服务器(支持http/https)
* @author zhjx922
*/
class WebProxyServer
{
private $_client = [];
private $_server; /**
* 日志打印
* @author zhjx922
* @param string $message
*/
protected function log($message)
{
echo $message . PHP_EOL;
} /**
* 获取代理ip
* @author zhjx922
*/
protected function getLocalIp()
{
//获取代理IP
$ipList = swoole_get_local_ip();
foreach($ipList as $interface => $ip) {
$this->log("{$interface}:{$ip}");
}
} /**
* 初始化
* @author zhjx922
*/
protected function init()
{
$this->getLocalIp(); $this->_server = new swoole_server("0.0.0.0", 8889); $this->_server->set([
'buffer_output_size' => 64 * 1024 *1024, //必须为数字
]);
} /**
* 跑起来
* @author zhjx922
*/
public function run()
{
$this->init(); $this->_server->on('connect', function ($server, $fd){
$this->log("Server connection open: {$fd}");
}); $this->_server->on('receive', function ($server, $fd, $reactor_id, $buffer){ //判断是否为新连接
if(!isset($this->_client[$fd])) {
//判断代理模式
list($method, $url) = explode(' ', $buffer, 3);
$url = parse_url($url); //ipv6为啥外面还有个方括号?
if(strpos($url['host'], ']')) {
$url['host'] = str_replace(['[', ']'], '', $url['host']);
} //解析host+port
$host = $url['host'];
$port = isset($url['port']) ? $url['port'] : 80; //ipv4/v6处理
$tcpMode = strpos($url['host'], ':') !== false ? SWOOLE_SOCK_TCP6 : SWOOLE_SOCK_TCP;
$this->_client[$fd] = new swoole_client($tcpMode, SWOOLE_SOCK_ASYNC); if($method == 'CONNECT')
{
$this->_client[$fd]->on("connect", function (swoole_client $cli) use ($fd) {
$this->log("隧道模式-连接成功!");
//告诉客户端准备就绪,可以继续发包
$this->_server->send($fd, "HTTP/1.1 200 Connection Established\r\n\r\n");
});
} else {
$this->_client[$fd]->on("connect", function(swoole_client $cli) use ($buffer) {
$this->log("正常模式-连接成功!");
//直接转发数据
$cli->send($buffer);
});
} $this->_client[$fd]->on("receive", function(swoole_client $cli, $buffer) use ($fd){
//将收到的数据转发到客户端
if($this->_server->exist($fd)) {
$this->_server->send($fd, $buffer);
}
}); $this->_client[$fd]->on("error", function(swoole_client $cli) use ($fd){
$this->log("Client {$fd} error");
}); $this->_client[$fd]->on("close", function(swoole_client $cli) use ($fd){
$this->log("Client {$fd} connection close");
}); $this->_client[$fd]->connect($host, $port);
} else {
//已连接,正常转发数据
if($this->_client[$fd]->isConnected()) {
$this->_client[$fd]->send($buffer);
}
} }); $this->_server->on('close', function ($server, $fd) {
$this->log("Server connection close: {$fd}");
unset($this->_client[$fd]);
}); $this->_server->start();
}
} $server = new WebProxyServer();
$server->run();

基于Swoole的HTTP/HTTPS代理的更多相关文章

  1. LaravelS - 基于Swoole加速Laravel/Lumen

    LaravelS LaravelS是一个胶水项目,用于快速集成Swoole到Laravel或Lumen,然后赋予它们更好的性能.更多可能性.Github 特性 内置Http/WebSocket服务器 ...

  2. tcpproxy:基于 Swoole 实现的 TCP 数据包转发工具的方法

    假设我们希望有一台机器A(ip 192.168.1.101)要开放端口6379给用户访问,但可能实际情况是用户无法直接访问到A(ip 192.168.1.101), 但却有一台机器B(ip 192.1 ...

  3. 基于 SSL 的 Nginx 反向代理

    基于 SSL 的 Nginx 反向代理 描述: 线上zabbix因机房网络问题,外网接口无法对外访问,因此采用同机房的另外一台服务器做反向代理. 线上用于zabbix提供web访问的Nginx,采用h ...

  4. 手撸基于swoole 的分布式框架 实现分布式调用(20)讲

    最近看的一个swoole的课程,前段时间被邀请的参与的这个课程 比较有特点跟一定的深度,swoole的实战教程一直也不多,结合swoole构建一个新型框架,最后讲解如何实现分布式RPC的调用. 内容听 ...

  5. [Sw] Swoole 生态迷局,基于 Swoole 的第 109 框架

    这两天,又一全栈式 Swoole 协程框架面世了 - hyperf,实现思路是我内心点了赞同的,就集成现有 PHP 生态优质组件到 Swoole 的协程中来. 有人想到,为什么不是 Swoole 集成 ...

  6. websocket和基于swoole的简易即时通讯

    这里描述个基于swoole的websocket 匿名群聊 UI <!DOCTYPE html> <html> <head> <meta charset=&qu ...

  7. 一个基于swoole的作业调度组件,已经实现了redis和rabitmq队列消息存储。

    https://github.com/kcloze/swoole-jobs 一个基于swoole的作业调度组件,已经实现了redis和rabitmq队列消息存储.参考资料:swoole https:/ ...

  8. 房产基于Swoole的PHP RPC框架设计

    房产基于Swoole的PHP RPC框架设计 https://mp.weixin.qq.com/s/XSrKEQ-0q4DvjOGTIwYYzg

  9. Nginx安装及支持https代理配置和禁用TSLv1.0、TSLv1.1配置

    Linux安装Nginx Nginx安装及支持https代理配置和禁用TSLv1.0.TSLv1.1配置. 下载安装包 [root@localhost ~]# wget http://nginx.or ...

随机推荐

  1. Jmeter 压力测试笔记(4)--分布式部署

    分布式部署:坑,大坑~ 超级坑~~~~ 在这里坑了2天,整整2天.其它略过不表下面只写经验: 在linux下,centos7系统   1主 14执行机. jmeter版本 5.2.1  所有机器在同一 ...

  2. Linux配置dhcp服务器

    一.安装dhcp软件 yum -y install dhcp 二.配置 dhcp 主配置文件 /etc/dhcp/dhcpd.conf ns-update-style interim; log-fac ...

  3. Tkinter布局管理器

    Layout management in Tkinter 原英文教程地址:zetcode.com In this part of the Tkinter tutorial, we introduce ...

  4. 2017蓝桥杯Excel地址(C++C组)

    题目:Excel地址Excel单元格的地址表示很有趣,它使用字母来表示列号.比如,A表示第1列,B表示第2列,Z表示第26列,AA表示第27列,AB表示第28列,BA表示第53列,....当然Exce ...

  5. 7.1 java 类、(成员)变量、(成员)方法

    /* * 面向对象思想: * 面向对象是基于面向过程的编程思想. * * 面向过程:强调的是每一个功能的步骤 * 面向对象:强调的是对象,然后由对象去调用功能 * * 面向对象的思想特点: * A:是 ...

  6. matplotlib AffineBase, Affine2DBase, Affine2D

    2020-04-10 09:02:59 --Edit by yangray 仿射变换矩阵参考资料-->https://blog.csdn.net/robert_chen1988/article/ ...

  7. excel完成数据库数据的批量插入

    业务场景: 开发过程中往往会遇到这样情况就是产品直接给我们一堆数据,让咱们直接导入到后台数据库中,这时候咱们只需要在excel表中进行直接操作即可,如图所示(以河北省的编号为例): 而对应的数据表为: ...

  8. Spring IoC getBean 方法详解

    前言 本篇文章主要介绍 Spring IoC 容器 getBean() 方法. 下图是一个大致的流程图: 正文 首先定义一个简单的 POJO,如下: public class User { priva ...

  9. 浅析CopyOnWriteArrayList

    CopyOnWriteArrayList引入 模拟传统的ArrayList出现线程不安全的现象 public class Demo1 { public static void main(String[ ...

  10. windows 系统使用技巧

    1 自定义发送到C:\Users\adm\AppData\Roaming\Microsoft\Windows\SendTo 2 自定义关机shutdown -s -t time,可写在快捷方式中shu ...