aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/luarocks/fs/lua.lua36
1 files changed, 35 insertions, 1 deletions
diff --git a/src/luarocks/fs/lua.lua b/src/luarocks/fs/lua.lua
index 220c046d..ad6d263b 100644
--- a/src/luarocks/fs/lua.lua
+++ b/src/luarocks/fs/lua.lua
@@ -8,10 +8,11 @@ local fs = require("luarocks.fs")
8local cfg = require("luarocks.cfg") 8local cfg = require("luarocks.cfg")
9local dir = require("luarocks.dir") 9local dir = require("luarocks.dir")
10 10
11local socket_ok, http = pcall(require, "socket.http")
11local zip_ok, lrzip = pcall(require, "luarocks.tools.zip") 12local zip_ok, lrzip = pcall(require, "luarocks.tools.zip")
12local unzip_ok, luazip = pcall(require, "zip"); _G.zip = nil 13local unzip_ok, luazip = pcall(require, "zip"); _G.zip = nil
13local lfs_ok, lfs = pcall(require, "lfs") 14local lfs_ok, lfs = pcall(require, "lfs")
14local curl_ok, curl = pcall(require, "luacurl") 15--local curl_ok, curl = pcall(require, "luacurl")
15local md5_ok, md5 = pcall(require, "md5") 16local md5_ok, md5 = pcall(require, "md5")
16local posix_ok, posix = pcall(require, "posix") 17local posix_ok, posix = pcall(require, "posix")
17 18
@@ -484,6 +485,39 @@ end
484end 485end
485 486
486--------------------------------------------------------------------- 487---------------------------------------------------------------------
488-- LuaSocket functions
489---------------------------------------------------------------------
490
491if socket_ok then
492
493--- Download a remote file.
494-- @param url string: URL to be fetched.
495-- @param filename string or nil: this function attempts to detect the
496-- resulting local filename of the remote file as the basename of the URL;
497-- if that is not correct (due to a redirection, for example), the local
498-- filename can be given explicitly as this second argument.
499-- @return boolean: true on success, false on failure.
500function download(url, filename)
501 assert(type(url) == "string")
502 assert(type(filename) == "string" or not filename)
503
504 filename = dir.path(fs.current_dir(), filename or dir.base_name(url))
505
506 local res, status, headers, line = http.request(url)
507 if not res then return false, status end
508 if status ~= 200 then
509 return false, "Failed downloading: " .. line
510 end
511 local file = io.open(filename, "wb")
512 if not file then return false end
513 file:write(res)
514 file:close()
515 return true
516end
517
518end
519
520---------------------------------------------------------------------
487-- MD5 functions 521-- MD5 functions
488--------------------------------------------------------------------- 522---------------------------------------------------------------------
489 523