2011-08-20 20:11:42 +00:00
|
|
|
{- Url downloading.
|
2011-08-17 00:49:04 +00:00
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
2012-10-10 15:26:30 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2011-08-20 20:11:42 +00:00
|
|
|
module Utility.Url (
|
2012-01-02 18:20:20 +00:00
|
|
|
URLString,
|
2012-02-10 23:17:41 +00:00
|
|
|
check,
|
2011-08-17 00:49:04 +00:00
|
|
|
exists,
|
|
|
|
download,
|
|
|
|
get
|
|
|
|
) where
|
|
|
|
|
2012-03-16 00:39:25 +00:00
|
|
|
import Common
|
2011-08-17 00:49:04 +00:00
|
|
|
import qualified Network.Browser as Browser
|
|
|
|
import Network.HTTP
|
|
|
|
import Network.URI
|
2012-04-22 05:13:09 +00:00
|
|
|
import Data.Either
|
2011-08-17 00:49:04 +00:00
|
|
|
|
|
|
|
type URLString = String
|
|
|
|
|
2012-04-22 05:13:09 +00:00
|
|
|
type Headers = [String]
|
|
|
|
|
2012-02-10 23:17:41 +00:00
|
|
|
{- Checks that an url exists and could be successfully downloaded,
|
|
|
|
- also checking that its size, if available, matches a specified size. -}
|
2012-04-22 05:13:09 +00:00
|
|
|
check :: URLString -> Headers -> Maybe Integer -> IO Bool
|
|
|
|
check url headers expected_size = handle <$> exists url headers
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
handle (False, _) = False
|
|
|
|
handle (True, Nothing) = True
|
|
|
|
handle (True, s) = expected_size == s
|
2012-02-10 23:17:41 +00:00
|
|
|
|
|
|
|
{- Checks that an url exists and could be successfully downloaded,
|
|
|
|
- also returning its size if available. -}
|
2012-04-22 05:13:09 +00:00
|
|
|
exists :: URLString -> Headers -> IO (Bool, Maybe Integer)
|
2012-10-21 05:28:10 +00:00
|
|
|
exists url headers = case parseURI url of
|
|
|
|
Nothing -> return (False, Nothing)
|
|
|
|
Just u
|
|
|
|
| uriScheme u == "file:" -> do
|
|
|
|
s <- catchMaybeIO $ getFileStatus (uriPath u)
|
|
|
|
return $ case s of
|
|
|
|
Nothing -> (False, Nothing)
|
|
|
|
Just stat -> (True, Just $ fromIntegral $ fileSize stat)
|
|
|
|
| otherwise -> do
|
2012-04-22 05:13:09 +00:00
|
|
|
r <- request u headers HEAD
|
2011-08-17 00:49:04 +00:00
|
|
|
case rspCode r of
|
2012-02-10 23:17:41 +00:00
|
|
|
(2,_,_) -> return (True, size r)
|
|
|
|
_ -> return (False, Nothing)
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
size = liftM Prelude.read . lookupHeader HdrContentLength . rspHeaders
|
2011-08-17 00:49:04 +00:00
|
|
|
|
|
|
|
{- Used to download large files, such as the contents of keys.
|
2011-12-20 22:00:09 +00:00
|
|
|
-
|
2011-08-27 16:31:50 +00:00
|
|
|
- Uses wget or curl program for its progress bar. (Wget has a better one,
|
2011-12-20 22:00:09 +00:00
|
|
|
- so is preferred.) Which program to use is determined at run time; it
|
|
|
|
- would not be appropriate to test at configure time and build support
|
|
|
|
- for only one in.
|
2012-10-21 05:28:10 +00:00
|
|
|
-
|
|
|
|
- Curl is always used for file:// urls, as wget does not support them.
|
2011-12-20 22:00:09 +00:00
|
|
|
-}
|
2012-04-22 05:13:09 +00:00
|
|
|
download :: URLString -> Headers -> [CommandParam] -> FilePath -> IO Bool
|
2012-10-21 05:28:10 +00:00
|
|
|
download url headers options file
|
|
|
|
| "file://" `isPrefixOf` url = curl
|
|
|
|
| otherwise = ifM (inPath "wget") (wget , curl)
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
headerparams = map (\h -> Param $ "--header=" ++ h) headers
|
|
|
|
wget = go "wget" $ headerparams ++ [Params "-c -O"]
|
|
|
|
{- Uses the -# progress display, because the normal
|
|
|
|
- one is very confusing when resuming, showing
|
|
|
|
- the remainder to download as the whole file,
|
|
|
|
- and not indicating how much percent was
|
|
|
|
- downloaded before the resume. -}
|
|
|
|
curl = go "curl" $ headerparams ++ [Params "-L -C - -# -o"]
|
|
|
|
go cmd opts = boolSystem cmd $
|
|
|
|
options++opts++[File file, File url]
|
2011-08-17 00:49:04 +00:00
|
|
|
|
|
|
|
{- Downloads a small file. -}
|
2012-04-22 05:13:09 +00:00
|
|
|
get :: URLString -> Headers -> IO String
|
|
|
|
get url headers =
|
2011-08-17 00:49:04 +00:00
|
|
|
case parseURI url of
|
|
|
|
Nothing -> error "url parse error"
|
|
|
|
Just u -> do
|
2012-04-22 05:13:09 +00:00
|
|
|
r <- request u headers GET
|
2011-08-17 00:49:04 +00:00
|
|
|
case rspCode r of
|
|
|
|
(2,_,_) -> return $ rspBody r
|
|
|
|
_ -> error $ rspReason r
|
|
|
|
|
|
|
|
{- Makes a http request of an url. For example, HEAD can be used to
|
|
|
|
- check if the url exists, or GET used to get the url content (best for
|
2012-02-11 01:42:46 +00:00
|
|
|
- small urls).
|
|
|
|
-
|
|
|
|
- This does its own redirect following because Browser's is buggy for HEAD
|
|
|
|
- requests.
|
|
|
|
-}
|
2012-04-22 05:13:09 +00:00
|
|
|
request :: URI -> Headers -> RequestMethod -> IO (Response String)
|
|
|
|
request url headers requesttype = go 5 url
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
go :: Int -> URI -> IO (Response String)
|
|
|
|
go 0 _ = error "Too many redirects "
|
|
|
|
go n u = do
|
|
|
|
rsp <- Browser.browse $ do
|
|
|
|
Browser.setErrHandler ignore
|
|
|
|
Browser.setOutHandler ignore
|
|
|
|
Browser.setAllowRedirects False
|
|
|
|
let req = mkRequest requesttype u :: Request_String
|
|
|
|
snd <$> Browser.request (addheaders req)
|
|
|
|
case rspCode rsp of
|
|
|
|
(3,0,x) | x /= 5 -> redir (n - 1) u rsp
|
|
|
|
_ -> return rsp
|
|
|
|
ignore = const noop
|
|
|
|
redir n u rsp = case retrieveHeaders HdrLocation rsp of
|
|
|
|
[] -> return rsp
|
|
|
|
(Header _ newu:_) ->
|
|
|
|
case parseURIReference newu of
|
|
|
|
Nothing -> return rsp
|
|
|
|
Just newURI -> go n newURI_abs
|
|
|
|
where
|
2012-11-11 22:05:01 +00:00
|
|
|
#if defined VERSION_network
|
|
|
|
#if ! MIN_VERSION_network(2,4,0)
|
|
|
|
#define WITH_OLD_URI
|
|
|
|
#endif
|
|
|
|
#endif
|
2012-11-03 16:10:01 +00:00
|
|
|
#ifdef WITH_OLD_URI
|
2012-12-13 04:24:19 +00:00
|
|
|
newURI_abs = fromMaybe newURI (newURI `relativeTo` u)
|
2012-11-03 16:10:01 +00:00
|
|
|
#else
|
2012-12-13 04:24:19 +00:00
|
|
|
newURI_abs = newURI `relativeTo` u
|
2012-10-10 15:26:30 +00:00
|
|
|
#endif
|
2012-12-13 04:24:19 +00:00
|
|
|
addheaders req = setHeaders req (rqHeaders req ++ userheaders)
|
|
|
|
userheaders = rights $ map parseHeader headers
|