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

import Control.Exception (SomeException, try)
import Control.Arrow (left)

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)