]> gitweb.michael.orlitzky.com - dead/lwn-epub.git/blob - src/LWN/Article.hs
ac3d456da8aae0ef43339e66c9bd62d5e92cff44
[dead/lwn-epub.git] / src / LWN / Article.hs
1 module LWN.Article (
2 Article(..),
3 Byline(..),
4 Title(..),
5 BodyHtml(..),
6 article_tests,
7 real_article_path
8 )
9 where
10
11 import Data.List (isPrefixOf)
12 import System.Directory (doesFileExist)
13 import Test.HUnit (Assertion, assertEqual)
14 import Test.Framework (Test, testGroup)
15 import Test.Framework.Providers.HUnit (testCase)
16 import Text.Regex.Posix ((=~))
17 import Text.XML.HXT.Core (
18 (>>>),
19 arr,
20 hread,
21 selem,
22 none,
23 runX,
24 txt,
25 xshow)
26
27 import LWN.URI (
28 add_trailing_slash,
29 is_lwn_url,
30 try_make_absolute_url,
31 make_https)
32
33 import LWN.XHTML (XHTML, XML, to_xhtml, to_xml)
34
35 newtype Title = Title { getTitle :: String }
36 newtype Byline = Byline { getByline :: Maybe String }
37 newtype BodyHtml = BodyHtml { getBodyHtml :: String }
38
39 instance Show Title where
40 show = getTitle
41
42 instance Show Byline where
43 show (Byline (Just bl)) = bl
44 show (Byline Nothing ) = ""
45
46 instance Show BodyHtml where
47 show = getBodyHtml
48
49 instance XHTML Title where
50 to_xhtml (Title t) = "<h2>" ++ t ++ "</h2>"
51
52 instance XHTML Byline where
53 to_xhtml (Byline (Just bl)) = "<p><em>" ++ bl ++ "</em></p>"
54 to_xhtml (Byline Nothing) = ""
55
56 instance XHTML BodyHtml where
57 to_xhtml = getBodyHtml
58
59
60 instance XML Title where
61 to_xml (Title t) =
62 selem "h2" [ txt t ]
63
64 instance XML Byline where
65 to_xml (Byline (Just bl)) =
66 selem "p" [ selem "em" [ txt bl ] ]
67 to_xml (Byline Nothing) = none
68
69 instance XML BodyHtml where
70 to_xml (BodyHtml bh) =
71 (arr $ const bh) >>> hread
72
73 data Article = Article { title :: Title,
74 byline :: Byline,
75 body_html :: BodyHtml }
76
77 instance XHTML Article where
78 to_xhtml (Article t bl b) =
79 "<div>" ++
80 (to_xhtml t) ++
81 (to_xhtml bl) ++
82 (to_xhtml b) ++
83 "</div>"
84
85 instance XML Article where
86 to_xml (Article t bl b) =
87 selem "div" [to_xml t, to_xml bl, to_xml b]
88
89 -- | Convert the given article to either a URL or a filesystem
90 -- path. If the given article exists on the filesystem, we assume
91 -- it's a file. Otherwise, we check to see if it's a URL. Failing
92 -- that, we try to construct a URL from what we're given and do our
93 -- best.
94 real_article_path :: String -> IO String
95 real_article_path path = do
96 is_file <- doesFileExist path
97 return $ if is_file then path else add_trailing_slash check_cases
98 where
99 abs_current = try_make_absolute_url ("/" ++ path)
100 abs_article = try_make_absolute_url ("Articles/" ++ path)
101
102 check_cases :: String
103 check_cases
104 | is_lwn_url path = make_https path
105 | isPrefixOf "current" path = abs_current
106 | path =~ "^[0-9]+$" = abs_article
107 | otherwise = path -- Give up
108
109
110
111 test_current_article_path :: Assertion
112 test_current_article_path = do
113 let expected = "https://lwn.net/current/"
114 actual <- real_article_path "current"
115 assertEqual "Current article path constructed" expected actual
116
117 test_current_bigpage_article_path :: Assertion
118 test_current_bigpage_article_path = do
119 let expected = "https://lwn.net/current/bigpage"
120 actual <- real_article_path "current/bigpage"
121 assertEqual "Current bigpage article path constructed" expected actual
122
123 test_numbered_article_path :: Assertion
124 test_numbered_article_path = do
125 let expected = "https://lwn.net/Articles/69/"
126 actual <- real_article_path "69" -- I'm twelve
127 assertEqual "Numbered article path constructed" expected actual
128
129
130 test_full_article_path :: Assertion
131 test_full_article_path = do
132 let expected = "https://lwn.net/Articles/502979/"
133 actual <- real_article_path "https://lwn.net/Articles/502979/"
134 assertEqual "Full article path left alone" expected actual
135
136 test_non_https_article_path :: Assertion
137 test_non_https_article_path = do
138 let expected = "https://lwn.net/Articles/502979/"
139 actual <- real_article_path "http://lwn.net/Articles/502979/"
140 assertEqual "Non-https URL made https" expected actual
141
142
143
144 -- | Compares the output of (xshow . to_xml) and to_xhtml; they should
145 -- match.
146 test_to_xml :: Assertion
147 test_to_xml = do
148 actual_xml' <- runX . xshow $ to_xml input_article
149 let actual_xml = actual_xml' !! 0
150
151 let expected_xml = to_xhtml input_article
152
153 assertEqual
154 "The to_xml function works on a trivial example"
155 expected_xml
156 actual_xml
157 where
158 t = Title "Hello, world!"
159 bl = Byline $ Just "Breaking News"
160 b = BodyHtml "<p>Hello, world!</p>"
161 input_article = Article t bl b
162
163
164
165 article_tests :: Test
166 article_tests =
167 testGroup "Article Tests" [
168 testCase "Current article path constructed" test_current_article_path,
169 testCase
170 "Current bigpage article path constructed"
171 test_current_bigpage_article_path,
172 testCase "Numbered article path constructed" test_numbered_article_path,
173 testCase "Full article path left alone" test_full_article_path,
174 testCase "Non-https URL made https" test_non_https_article_path,
175 testCase "The to_xml function works on a trivial example" test_to_xml ]