-
-
Save linxlad/4d70c92683a2535da8ab63e627ee63a2 to your computer and use it in GitHub Desktop.
Simple PHP Proxy Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$method = $_SERVER['REQUEST_METHOD']; | |
if ($_GET && $_GET['url']) { | |
$headers = getallheaders(); | |
$headers_str = []; | |
$url = $_GET['url']; | |
foreach ( $headers as $key => $value){ | |
if($key == 'Host') | |
continue; | |
$headers_str[]=$key.":".$value; | |
} | |
$ch = curl_init($url); | |
curl_setopt($ch,CURLOPT_URL, $url); | |
if( $method !== 'GET') { | |
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); | |
} | |
if($method == "PUT" || $method == "PATCH" || ($method == "POST" && empty($_FILES))) { | |
$data_str = file_get_contents('php://input'); | |
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_str); | |
//error_log($method.': '.$data_str.serialize($_POST).'\n',3, 'err.log'); | |
} | |
elseif($method == "POST") { | |
$data_str = array(); | |
if(!empty($_FILES)) { | |
foreach ($_FILES as $key => $value) { | |
$full_path = realpath( $_FILES[$key]['tmp_name']); | |
$data_str[$key] = '@'.$full_path; | |
} | |
} | |
//error_log($method.': '.serialize($data_str+$_POST).'\n',3, 'err.log'); | |
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_str+$_POST); | |
} | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers_str ); | |
$result = curl_exec($ch); | |
$info = curl_getinfo ($ch); | |
curl_close($ch); | |
header('Content-Type: application/json'); | |
header('Access-Control-Allow-Origin: *'); | |
header('Access-Control-Allow-Methods: POST, GET, OPTIONS, PUT'); | |
http_response_code($info['http_code']); | |
echo $result; | |
} | |
else { | |
echo $method; | |
var_dump($_POST); | |
var_dump($_GET); | |
$data_str = file_get_contents('php://input'); | |
echo $data_str; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment