aboutsummaryrefslogtreecommitdiff
path: root/src/HTTP.hs
blob: 8d8d34a80872992348e609b57f15123ea4b153f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module HTTP
  ( getPage
  ) where

import Control.Exception (SomeException, try)
import Control.Arrow (left)
import Control.Applicative ((<$>))

import Data.Text (Text)
import qualified Data.Text as T
import qualified Data.Text.IO as T

import Network.HTTP (simpleHTTP, getRequest, getResponseBody)

import Model.URL

import Codec.Binary.UTF8.String (decodeString)

getPage :: URL -> IO (Either Text Text)
getPage url =
  left (T.pack . show) <$> (try (unsafeGetPage url) :: IO (Either SomeException Text))

unsafeGetPage :: URL -> IO Text
unsafeGetPage url = simpleHTTP (getRequest (T.unpack url)) >>= (\x -> T.pack . decodeString <$> getResponseBody x)