This repository was archived by the owner on Mar 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproxy.php
More file actions
72 lines (60 loc) · 1.97 KB
/
proxy.php
File metadata and controls
72 lines (60 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/**
* Simplified proxy for the FPGA API ajax petitions
*
* Warning: this is not a general proxy, and it does not foward parameters and such
* It only forwards simple calls for the FPGA Web Service, with the following syntax:
* proxy.php?url=/info/status
*/
/**
* Autoload libraries
*/
require_once ('vendor/autoload.php');
/**
* Number of subparts of the URL
*/
define('RELATIVE_SUBPATHS', 0);
/* Loads the config */
\Core\Config::load();
/* Get the request */
if (! isset($_REQUEST[PROXY_ID])) {
header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found', true, 404);
header('Status: 404 Not Found');
$_SERVER['REDIRECT_STATUS'] = 404;
/* Log the call */
\Core\Logger::logProxy('[Code: 404][Method: ' . $_SERVER['REQUEST_METHOD'] . '][URL: Not Set]');
return;
}
/* Request options */
$opts = array(
'http' => array(
'method' => $_SERVER['REQUEST_METHOD'],
'timeout' => - 1,
'ignore_errors' => true
)
);
/* Timestamp */
$headers = getallheaders();
if (isset($headers['timestamp'])) {
$opts['http']['header'] = 'timestamp: ' . $headers['timestamp'];
}
$context = stream_context_create($opts);
/* Optimization */
session_write_close();
/* Enconde whitespaces */
$request_url = str_replace(' ', '%20', $_REQUEST[PROXY_ID]);
/* Call the FPGA Web Service */
$result = file_get_contents(\Core\Config::$REMOTE_SERVER_IP . $request_url, false, $context);
/* Output the content */
if(!isset($http_response_header)) {
header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found', true, 404);
header('Status: 404 Not Found');
$_SERVER['REDIRECT_STATUS'] = 404;
/* Log the call */
\Core\Logger::logProxy('[Code: 404][Method: ' . $_SERVER['REQUEST_METHOD'] . '][URL: ' . $_REQUEST[PROXY_ID] . ']');
return;
}
header($http_response_header[0]);
echo $result;
/* Log the call */
\Core\Logger::logProxy('[Code: ' . $http_response_header[0] . '][Method: ' . $_SERVER['REQUEST_METHOD'] . '][URL: ' . $_REQUEST[PROXY_ID] . ']');