]> git.rkrishnan.org Git - functorrent.git/commitdiff
metainfo: support multifile .torrent files
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Tue, 25 Jul 2017 14:04:13 +0000 (19:34 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Tue, 25 Jul 2017 14:04:13 +0000 (19:34 +0530)
src/FuncTorrent/Metainfo.hs

index 4cc6ed126c2685528427f0145db03f9dbc5ae6a6..801b53d4a88d039f79cb4102767bea9b909fa247 100644 (file)
@@ -27,18 +27,22 @@ module FuncTorrent.Metainfo
 import Prelude hiding (lookup)
 import Data.ByteString.Char8 (ByteString, unpack)
 import Data.Map as M ((!), lookup)
+import Data.List (intersperse)
 import Crypto.Hash.SHA1 (hash)
 import Data.Maybe (maybeToList)
 
 import FuncTorrent.Bencode (BVal(..), encode, decode, bstrToString, bValToInteger)
 
--- only single file mode supported for the time being.
+data FileMeta = FileMeta { lengthInBytes :: !Integer
+                         , md5sum :: !(Maybe String)
+                         , path :: String
+                         } deriving (Eq, Show)
+
 data Info = Info { pieceLength :: !Integer
                  , pieces :: !ByteString
                  , private :: !(Maybe Integer)
                  , name :: !String
-                 , lengthInBytes :: !Integer
-                 , md5sum :: !(Maybe String)
+                 , filemeta :: [FileMeta]
                  } deriving (Eq, Show)
 
 data Metainfo = Metainfo { info :: !(Maybe Info)
@@ -55,16 +59,40 @@ bvalToInfo (Bdict m) = let (Bint pieceLength') = m ! "piece length"
                            (Bstr pieces') = m ! "pieces"
                            private' = Nothing
                            (Bstr name') = m ! "name"
+                           -- is the key "files" present? If so, it is a multi-file torrent
+                           -- if not, it is a single file torrent.
+                           filesIfMulti = lookup "files" m
                            (Bint length') = m ! "length"
                            md5sum' = Nothing
-                       in Just Info { pieceLength = pieceLength'
-                                    , pieces = pieces'
-                                    , private = private'
-                                    , name = unpack name'
-                                    , lengthInBytes = length'
-                                    , md5sum = md5sum'}
+                           partialInfo = Info { pieceLength = pieceLength'
+                                               , pieces = pieces'
+                                               , private = private'
+                                               , name = unpack name'
+                                               }
+                       in
+                         case filesIfMulti of
+                           Nothing -> let (Bint length') = m ! "length"
+                                          filemeta' = FileMeta { lengthInBytes = length'
+                                                               , md5sum = Nothing
+                                                               , path = unpack name' }
+                                      in Just (partialInfo { filemeta = [filemeta'] })
+                           Just (Blist files) -> mapM toFileMeta files >>=
+                                                 \filemeta' ->
+                                                   Just partialInfo { filemeta = filemeta' }
 bvalToInfo _ = Nothing
 
+toFileMeta :: BVal -> Maybe FileMeta
+toFileMeta (Bdict fm) = let (Bint length) = fm ! "length"
+                            (Blist pathElems) = fm ! "path"
+                            pathStrings = fmap bstrToString pathElems
+                        in
+                          sequence pathStrings >>=
+                          \pathList -> let path' = concat $ intersperse "/" pathList
+                                       in Just (FileMeta { lengthInBytes = length
+                                                         , md5sum = Nothing
+                                                         , path = path' })
+toFileMeta _ = Nothing
+
 mkMetaInfo :: BVal   -> Either String Metainfo
 mkMetaInfo (Bdict m)  =
     let info'         = bvalToInfo $ m ! "info"