本文介绍下,在nginx中支持文件上传的几种模式,包括php语言处理模式、LUA语言处理模式、perl语言的处理模式等。有需要的朋友参考下吧。
本节主要内容为:
Nginx中实现文件上传的几种不同语言与不同方法。
模式1,PHP 语言来处理
file.php 文件内容 :
代码示例:
<?php
if ($_FILES["file"]["error"] > 0)
{
echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
}
else
{
echo "Upload: " . $_FILES["file"]["name"] . "<br />";
echo "Type: " . $_FILES["file"]["type"] . "<br />";
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";
if (file_exists("upload/" . $_FILES["file"]["name"]))
{
echo $_FILES["file"]["name"] . " already exists. ";
}
else
{
move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]);
echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
}
}
?>
测试命令 :
curl -F "action=file.php" -F "[email protected]" http://192.168.1.162/file.php
把本地文件 xxx.c 通过表单的形式提交到服务器, file.php文件就会处理该表单。
模式2,lua 语言来处理
这种模式需要用 ngx_lua 模块的支持,可以直接下载ngx_openresty的源码安装包。
春哥专门写了一个lua的文件上传upload.lua模块。
地址:
https://github.com/agentzh/lua-resty-upload
我们只用到 upload.lua 文件即可,把这个文件放到:
/usr/local/openresty/lualib/resty/ 目录即可(该目录是缺省安装的目录, ./configure --prefix=/usr 可以改变目录)
编写一个savefile.lua 的文件来处理上传上来的文件。
代码示例:
package.path = '/usr/local/share/lua/5.1/?.lua;/usr/local/openresty/lualib/resty/?.lua;'
package.cpath = '/usr/local/lib/lua/5.1/?.so;'
local upload = require "upload"
local chunk_size = 4096
local form = upload:new(chunk_size)
local file
local filelen=0
form:set_timeout(0) -- 1 sec
local filename
function get_filename(res)
local filename = ngx.re.match(res,'(.+)filename="(.+)"(.*)')
if filename then
return filename[2]
end
end
local osfilepath = "/usr/local/openresty/nginx/html/"
local i=0
while true do
local typ, res, err = form:read()
if not typ then
ngx.say("failed to read: ", err)
return
end
if typ == "header" then
if res[1] ~= "Content-Type" then
filename = get_filename(res[2])
if filename then
i=i+1
filepath = osfilepath .. filename
file = io.open(filepath,"w+")
if not file then
ngx.say("failed to open file ")
return
end
else
end
end
elseif typ == "body" then
if file then
filelen= filelen + tonumber(string.len(res))
file:write(res)
else
end
elseif typ == "part_end" then
if file then
file:close()
file = nil
ngx.say("file upload success")
end
elseif typ == "eof" then
break
else
end
end
if i==0 then
ngx.say("please upload at least one file!")
return
end
把上面这个 savefile.lua 文件放到了 nginx/conf/lua/ 目录中
在nginx.conf 配置文件中,添加如下配置 :
代码示例:
location /uploadfile
{
content_by_lua_file 'conf/lua/savefile.lua';
}
用下面的上传命令进行测试成功
curl -F "action=uploadfile" -F "[email protected]" http://127.0.0.1/uploadfile
模式3,perl的处理模式
编译 nginx 时,使用 --with-http_perl_module,使其支持perl脚本。
然后,用perl来处理表单,注意:此模式我未作测试。
PERL 提交表单的代码:
代码示例:
#!/bin/perl
#site: www.jbxue.com
#
use strict;
use warnings;
use WWW::Curl::Easy;
use WWW::Curl::Form;
my $curl = WWW::Curl::Easy->new;
my $form = WWW::Curl::Form->new;
$form->formaddfile("jbxue.exe", 'FILE1', "multipart/form-data");
# $form->formadd("FIELDNAME", "VALUE");
$curl->setopt(CURLOPT_HTTPPOST, $form);
$curl->setopt(CURLOPT_HEADER,1);
$curl->setopt(CURLOPT_URL, 'http://127.0.0.1/uploadfile');
# A filehandle, reference to a scalar or reference to a typeglob can be used here.
my $response_body;
$curl->setopt(CURLOPT_WRITEDATA,$response_body);
# Starts the actual request
my $retcode = $curl->perform;
# Looking at the results...
if ($retcode == 0)
{
print("Transfer went okn");
my $response_code = $curl->getinfo(CURLINFO_HTTP_CODE);
# judge result and next action based on $response_code
print("Received response: n$response_bodyn");
}
else
{
# Error code, type of error, error message
print("An error happened: $retcode ".$curl->strerror($retcode)." ".$curl->errbuf."n");
}
服务器端的代码不是用perl CGI,而是嵌入nginx 的 perl脚本。
模式4,用 http 的dav 模块的 PUT 方法
编译 nginx 的时候 用 --with-http_dav_module 参数让其支持 dav 模式
nginx.conf文件中,配置如下 :
代码示例:
location / {
client_body_temp_path /usr/local/openresty/nginx/html/tmp;
dav_methods PUT DELETE MKCOL COPY MOVE;
create_full_put_path on;
dav_access group:rw all:r;
root html;
#index index.html index.htm;
}
使用如下的命令进行测试:
curl --request PUT --data-binary "@jbxue.exe" --header "Content-Type: application/octet-stream" http://127.0.0.1/game.exe
其中jbxue.exe为上传的本地文件。
打算用perl脚本来PUT二进制文件, 但是尝试失败。
以下代码可以PUT文本文件,无法PUT二进制文件。
代码示例:
#!/bin/perl
#edit: www.jbxue.com
#
use strict;
use warnings;
use LWP::UserAgent;
use HTTP::Request;
# require HTTP::Request;
my $r = HTTP::Request->new();
$r->method("PUT");
$r->uri("http://127.0.0.1/ssss.txt");
$r->content("ssssssssssssss");
my $ua = LWP::UserAgent->new;
my $res = $ua->request($r);
#二进制文件假如很大,也不可能赋值给一个变量啊。
说明:
第四种是PUT方法, 其他三种都属于POST表单的方法。