forked from filipg/twilight-library
Compare commits
No commits in common. "master" and "master" have entirely different histories.
@ -33,7 +33,7 @@ import Data.Tree.NTree.TypeDefs
|
|||||||
import Data.Maybe
|
import Data.Maybe
|
||||||
import Control.Monad.Trans
|
import Control.Monad.Trans
|
||||||
import Text.XML.HXT.XPath
|
import Text.XML.HXT.XPath
|
||||||
import Text.XML.HXT.Curl
|
-- import Text.XML.HXT.Curl
|
||||||
import Text.XML.HXT.HTTP
|
import Text.XML.HXT.HTTP
|
||||||
|
|
||||||
import Text.Regex.TDFA
|
import Text.Regex.TDFA
|
||||||
@ -64,7 +64,8 @@ downloadDocument = readFromDocument [withParseHTML yes,
|
|||||||
withEncodingErrors no,
|
withEncodingErrors no,
|
||||||
withPreserveComment yes,
|
withPreserveComment yes,
|
||||||
withStrictInput yes,
|
withStrictInput yes,
|
||||||
withCurl [("curl--user-agent","AMU Digital Libraries Indexing Agent")]
|
withHTTP []
|
||||||
|
-- withCurl [("curl--user-agent","AMU Digital Libraries Indexing Agent")]
|
||||||
]
|
]
|
||||||
|
|
||||||
downloadDocumentWithEncoding enc = readFromDocument [withParseHTML yes,
|
downloadDocumentWithEncoding enc = readFromDocument [withParseHTML yes,
|
||||||
@ -72,7 +73,8 @@ downloadDocumentWithEncoding enc = readFromDocument [withParseHTML yes,
|
|||||||
withEncodingErrors no,
|
withEncodingErrors no,
|
||||||
withPreserveComment yes,
|
withPreserveComment yes,
|
||||||
withInputEncoding enc,
|
withInputEncoding enc,
|
||||||
withCurl []]
|
withHTTP []]
|
||||||
|
-- withCurl []]
|
||||||
|
|
||||||
downloadXmlDocument = readFromDocument [withWarnings no,
|
downloadXmlDocument = readFromDocument [withWarnings no,
|
||||||
withEncodingErrors no,
|
withEncodingErrors no,
|
||||||
|
@ -1,46 +0,0 @@
|
|||||||
|
|
||||||
{-# LANGUAGE Arrows, NoMonomorphismRestriction #-}
|
|
||||||
import ShadowLibrary.Core
|
|
||||||
|
|
||||||
import Text.XML.HXT.Core
|
|
||||||
import Text.XML.HXT.XPath
|
|
||||||
import Text.XML.HXT.Curl
|
|
||||||
import Data.List
|
|
||||||
import Data.List.Utils (replace)
|
|
||||||
|
|
||||||
import Text.Regex.Posix
|
|
||||||
import Text.Printf
|
|
||||||
|
|
||||||
extractAllPDFs = extractLinksWithText "/html/body/table[4]/tbody/tr[7]/td[2]/a"
|
|
||||||
|
|
||||||
extractRecords = extractLinksWithText "//table[3]//a"
|
|
||||||
>>> first (extractLinksWithText "//table[3]//a"
|
|
||||||
>>> first (extractLinksWithText "//table[4]//a"
|
|
||||||
>>> first (extractAllPDFs
|
|
||||||
>>> first(arr $ (drop 23 ) . init . init . init))))
|
|
||||||
|
|
||||||
toShadowItem :: ((((String, String), String), String), String) -> ShadowItem
|
|
||||||
toShadowItem ((((url, typeName), articleTitle), _), category) =
|
|
||||||
(defaultShadowItem url title) {
|
|
||||||
originalDate = Just date,
|
|
||||||
itype = "periodical",
|
|
||||||
format = Just "pdf",
|
|
||||||
finalUrl = url
|
|
||||||
}
|
|
||||||
where title = "Biblioteka Sejmowa " ++ category ++ " " ++ typeName ++ " " ++ articleTitle
|
|
||||||
date = getDate articleTitle
|
|
||||||
|
|
||||||
getDate url =
|
|
||||||
case url =~~ "/(19[0-9][0-9]|20[0-9][0-9])/" :: Maybe [[String]] of
|
|
||||||
Just [[_, year]] -> year
|
|
||||||
otherwise -> error $ "unexpected url: " ++ url
|
|
||||||
|
|
||||||
|
|
||||||
main = do
|
|
||||||
let start = "https://bs.sejm.gov.pl/F/?con_lng=POL&func=file&file_name=find-nowe&local_base=ars01"
|
|
||||||
let shadowLibrary = ShadowLibrary {logoUrl=Nothing,
|
|
||||||
lname="Biblioteka Sejmowa",
|
|
||||||
abbrev="BiblSejm",
|
|
||||||
lLevel=0,
|
|
||||||
webpage=start}
|
|
||||||
extractItemsStartingFromUrl shadowLibrary start (extractRecords >>> arr toShadowItem)
|
|
@ -2,11 +2,11 @@ name: shadow-library
|
|||||||
version: 0.1.0.0
|
version: 0.1.0.0
|
||||||
synopsis: Initial project template from stack
|
synopsis: Initial project template from stack
|
||||||
description: Please see README.md
|
description: Please see README.md
|
||||||
homepage: https://git.wmi.amu.edu.pl/s444409/twilight-library
|
homepage: http://github.com/name/project
|
||||||
license: Proprietary
|
license: Proprietary
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Marcin Kostrzewski
|
author: Your name here
|
||||||
maintainer: markos34@st.amu.edu.pl
|
maintainer: your.address@example.com
|
||||||
-- copyright:
|
-- copyright:
|
||||||
category: Web
|
category: Web
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
@ -21,7 +21,6 @@ library
|
|||||||
, hxt
|
, hxt
|
||||||
, hxt-http
|
, hxt-http
|
||||||
, hxt-xpath
|
, hxt-xpath
|
||||||
, hxt-curl
|
|
||||||
, MissingH
|
, MissingH
|
||||||
, monad-logger
|
, monad-logger
|
||||||
, mtl
|
, mtl
|
||||||
@ -55,20 +54,6 @@ executable almanachmuszyny
|
|||||||
build-depends: base
|
build-depends: base
|
||||||
, hxt
|
, hxt
|
||||||
, hxt-xpath
|
, hxt-xpath
|
||||||
, hxt-curl
|
|
||||||
, MissingH
|
|
||||||
, regex-posix
|
|
||||||
, shadow-library
|
|
||||||
default-language: Haskell2010
|
|
||||||
|
|
||||||
executable bibliotekasejmowa
|
|
||||||
hs-source-dirs: app
|
|
||||||
main-is: bibliotekasejmowa.hs
|
|
||||||
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
|
||||||
build-depends: base
|
|
||||||
, hxt
|
|
||||||
, hxt-xpath
|
|
||||||
, hxt-curl
|
|
||||||
, MissingH
|
, MissingH
|
||||||
, regex-posix
|
, regex-posix
|
||||||
, shadow-library
|
, shadow-library
|
||||||
@ -77,4 +62,4 @@ executable bibliotekasejmowa
|
|||||||
|
|
||||||
source-repository head
|
source-repository head
|
||||||
type: git
|
type: git
|
||||||
location: https://git.wmi.amu.edu.pl/s444409/twilight-library
|
location: https://github.com/name/project
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
# This file was autogenerated by Stack.
|
|
||||||
# You should not edit this file by hand.
|
|
||||||
# For more information, please see the documentation at:
|
|
||||||
# https://docs.haskellstack.org/en/stable/lock_files
|
|
||||||
|
|
||||||
packages:
|
|
||||||
- completed:
|
|
||||||
hackage: hxt-xpath-9.1.2.2@sha256:9cd590ae93a04573db8f90fa4094625ebd97dded45da7667c577ce6b38a42900,1999
|
|
||||||
pantry-tree:
|
|
||||||
size: 2225
|
|
||||||
sha256: aee2f75974e868ff429b8ff349a29667536c60397098f5dfedc968d1951511bb
|
|
||||||
original:
|
|
||||||
hackage: hxt-xpath-9.1.2.2
|
|
||||||
snapshots:
|
|
||||||
- completed:
|
|
||||||
size: 507596
|
|
||||||
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/11/9.yaml
|
|
||||||
sha256: 42f472dbf06482da1b3319241f3e3b3593a45bd7d4f537d2789f21386b9b2ad3
|
|
||||||
original: lts-11.9
|
|
Loading…
Reference in New Issue
Block a user