]> git.rkrishnan.org Git - functorrent.git/blob - src/FuncTorrent/Metainfo.hs
1695b596f902e20acd15c0233134d55825028b72
[functorrent.git] / src / FuncTorrent / Metainfo.hs
1 module FuncTorrent.Metainfo
2     (Info(..),
3      Metainfo(..),
4      infoHash,
5      mkInfo,
6      mkMetaInfo
7     ) where
8
9 import Prelude hiding (lookup)
10 import Data.ByteString.Char8 (ByteString, unpack)
11 import Data.Map as M ((!), lookup)
12 import Crypto.Hash.SHA1 (hash)
13 import Data.Maybe (maybeToList)
14
15 import FuncTorrent.Bencode (BVal(..), InfoDict, encode, bstrToString, bValToInteger)
16
17 -- only single file mode supported for the time being.
18 data Info = Info { pieceLength :: !Integer
19                  , pieces :: !ByteString
20                  , private :: !(Maybe Integer)
21                  , name :: !String
22                  , lengthInBytes :: !Integer
23                  , md5sum :: !(Maybe String)
24                  } deriving (Eq, Show)
25
26 data Metainfo = Metainfo { info :: !Info
27                          , announceList :: ![String]
28                          , creationDate :: !(Maybe Integer)
29                          , comment :: !(Maybe String)
30                          , createdBy :: !(Maybe String)
31                          , encoding :: !(Maybe String)
32                          } deriving (Eq, Show)
33
34 mkInfo :: BVal -> Maybe Info
35 mkInfo (Bdict m) = let (Bint pieceLength') = m ! "piece length"
36                        (Bstr pieces') = m ! "pieces"
37                        private' = Nothing
38                        (Bstr name') = m ! "name"
39                        (Bint length') = m ! "length"
40                        md5sum' = Nothing
41                    in Just Info { pieceLength = pieceLength'
42                                 , pieces = pieces'
43                                 , private = private'
44                                 , name = unpack name'
45                                 , lengthInBytes = length'
46                                 , md5sum = md5sum'}
47 mkInfo _ = Nothing
48
49 mkMetaInfo :: BVal   -> Maybe Metainfo
50 mkMetaInfo (Bdict m)  =
51     let (Just info')  = mkInfo $ m ! "info"
52         announce'     = lookup "announce" m
53         announceList' = lookup "announce-list" m
54         creationDate' = lookup "creation date" m
55         comment'      = lookup "comment" m
56         createdBy'    = lookup "created by" m
57         encoding'     = lookup "encoding" m
58     in Just Metainfo {
59              info         = info'
60            , announceList = maybeToList (announce' >>= bstrToString)
61                             ++ getAnnounceList announceList'
62            , creationDate = bValToInteger =<< creationDate'
63            , comment      = bstrToString  =<< comment'
64            , createdBy    = bstrToString  =<< createdBy'
65            , encoding     = bstrToString  =<< encoding'
66         }
67 mkMetaInfo _ = Nothing
68
69 getAnnounceList :: Maybe BVal -> [String]
70 getAnnounceList Nothing = []
71 getAnnounceList (Just (Bint _)) = []
72 getAnnounceList (Just (Bstr _)) = []
73 getAnnounceList (Just (Blist l)) = map (\s -> case s of
74                                                (Bstr s') ->  unpack s'
75                                                (Blist s') -> case s' of
76                                                               [Bstr s''] -> unpack s''
77                                                               _ -> ""
78                                                _ -> "") l
79
80 getAnnounceList (Just (Bdict _)) = []
81
82 -- | Info hash is urlencoded 20 byte SHA1 hash of the value of the info key from
83 -- the Metainfo file. Note that the value will be a bencoded dictionary, given
84 -- the definition of the info key above. TODO: `Metainfo -> ByteString`
85 infoHash :: InfoDict -> ByteString
86 infoHash m = hash . encode $ (m ! "info")