2 Module : Gargantext.Text.Parsers.WOS
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
10 Here is a longer description of this module, containing some
11 commentary with @some markup@.
14 {-# LANGUAGE NoImplicitPrelude #-}
15 {-# LANGUAGE OverloadedStrings #-}
17 module Gargantext.Text.Parsers.WOS (wosParser) where
19 -- TOFIX : Should import Gargantext.Prelude here
20 import Prelude hiding (takeWhile, take, concat, readFile, lines, concat)
22 import qualified Data.List as DL
24 import Data.Monoid ((<>))
25 import Data.Attoparsec.ByteString (Parser, try, string
28 import Data.Attoparsec.ByteString.Char8 (anyChar, isEndOfLine)
29 import Data.ByteString (ByteString, concat)
30 import Data.ByteString.Char8 (pack)
31 import Control.Applicative
33 -------------------------------------------------------------
34 -- | wosParser parses ISI format from
35 -- Web Of Science Database
36 wosParser :: Parser [[(ByteString, ByteString)]]
38 -- TODO Warning if version /= 1.0
39 -- FIXME anyChar (string ..) /= exact string "\nVR 1.0" ?
40 _ <- manyTill anyChar (string $ pack "\nVR 1.0")
41 ns <- many1 notice <* (string $ pack "\nEF" )
44 notice :: Parser [(ByteString, ByteString)]
45 notice = start *> fields <* end
47 start :: Parser ByteString
48 start = "\nPT " *> takeTill isEndOfLine
51 end = manyTill anyChar (string $ pack "\nER\n")
54 fields :: Parser [(ByteString, ByteString)]
57 field :: Parser (ByteString, ByteString)
59 name <- "\n" *> take 2 <* " "
60 txt <- takeTill isEndOfLine
62 let txts' = case DL.length txts > 0 of
65 pure (translate name, concat ([txt] <> txts'))
68 lines :: Parser [ByteString]
71 line :: Parser ByteString
72 line = "\n " *> takeTill isEndOfLine
74 translate :: ByteString -> ByteString
76 | champs == "AF" = "authors"
77 | champs == "TI" = "title"
78 | champs == "SO" = "source"
79 | champs == "DI" = "doi"
80 | champs == "PD" = "publication_date"
81 | champs == "AB" = "abstract"
83 -------------------------------------------------------------