dongnigeng1295 2014-05-30 22:28
浏览 74
已采纳

使用PHP下载“双向代理”? (一个服务器提供文件,并使用客户端数据ping另一个服务器)

Sorry about the "two-way proxied download" terminology - am not sure how this would be otherwise called (correct terminology is much appreciated). Anyways:

Let's assume I have a PDF file of an article, test.pdf (see below for Latex example) of which I am an author, which is hosted on a conference website, and otherwise available there for free. Let's say I want to (and am allowed) to also distribute a copy of the same PDF from my website.

So, for the sake of the example, let's say:

  • a local PC has a (globally resolvable) IP address 80.80.80.80
  • my website server is at myserver.com, with IP address 90.90.90.90
    • The link to the PDF there is http://myserver.com/dl/test.php?file=./test.pdf
  • the conference website is at conference.org, IP address 100.100.100.100
    • The link to the PDF there is http://conference.org/2001/downloads/test.pdf

What I want to do is this: when a local PC the PDF file from my website (via http://myserver.com/dl/test.php?file=./test.pdf), the test.php script should also:

  • initiate a download of http://conference.org/2001/downloads/test.pdf, with the original header data of the client (that is, conference.org should see in their logs that it is 80.80.80.80 which requests), with my website as referrer (that is, 90.90.90.90 would be referrer); the idea of this is that the conference.org webhost would log the same clients that download as myserver.com does
  • The download from conference.org should be terminated after 100 bytes or so, so as not to waste the bandwidth of conference.org -- otherwise, it is myserver.com that serves the PDF file
  • Should the download from conference.org fail (e.g. if conference.org is temporarily offline), than that should be logged in a text file - but it should NOT otherwise interfere (as in, introduce additional delays) in the process of serving the file from myserver.com.

Here is an example of test.php, which only does the serving "from myserver.com"; otherwise, the relationship between files local to myserver.com, and their location on conference.org, is simulated in the $filesRelations array:

<?php

$filesRelations = array(
  './test.pdf'   => 'http://conference.org/2001/downloads/test.pdf',
);

if(!(isset($_GET['file']))) {
  echo "<html>
  <head/>
  <body>
  <a href='?file=./test.pdf'>test.pdf</a>
  <br/> <sub>(".$filesRelations['./test.pdf'].")</sub>
  </body>
  </html>
  ";
} else {
  # echo "-- " . $_GET['file'] . " -- "; # dbg
  $localpath = $_GET['file'];
  $fdname = basename($localpath);
  $fsize = filesize($localpath);
  $includeFile = file_get_contents($localpath);

  if ($includeFile === false)
  {
    echo "Error with $localpath";
  } else {
    header("Content-type: application/pdf");
    header("Content-Disposition: attachment; filename=\"".$fdname."\"");
    header("Content-length: $fsize");
    header("Cache-control: private");
    echo $includeFile;
  }
}

exit;
?>

How could I modify this code, so that the script "pings" the link (by initiating and terminating a short, 100-byte download) in the respective $filesRelations entry, using the header data of the calling client, before it serves the headers and the file (by echoing $includeFile)?


For testing, this is the test.tex file (which you can compile with pdflatex test.tex to obtain a test.pdf):

\documentclass{article}
\usepackage{lipsum}

\begin{document}
\title{Lorem Ipsum}
\author{Author's Name}
\maketitle

\begin{abstract}
\lipsum[1]
\end{abstract}

\section{Introduction}

\lipsum[1-12]
\end{document}

(To test, put test.php and test.pdf in one directory, run php-5.4.10 -S localhost:8000 in that directory, then visit http://localhost:8000/test.php in the web browser).

  • 写回答

1条回答 默认 最新

  • dru5089 2014-05-30 23:04
    关注

    I believe the stumbling block is the original header data of the client. The IP address of the client is not contained in a header, but determined by the TCP/IP layer of the socket that the client connected to. That's what would be in the logs. So, it can't be done quite so simply.

    The client's IP can be retrieved by your server via:

    $clientIP = $_SERVER['REMOTE_ADDR'];
    

    If you were able to come up with a mechanism to let the other server know that this was a request on behalf of a client, you could certainly send them this data. As you point out, perhaps try setting the HTTP_X_FORWARDED_FOR header in your request to that server.

    Best of luck!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 thinkphp6配合social login单点登录问题
  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch