Skip to content

Instantly share code, notes, and snippets.

@deckool
Created February 16, 2016 06:56
Show Gist options
  • Save deckool/00966a91a1914f6a45c0 to your computer and use it in GitHub Desktop.
Save deckool/00966a91a1914f6a45c0 to your computer and use it in GitHub Desktop.
headers.hs
xxx :: Snap ()
xxx = do
req <- getRequest
let a = getHeader "user-agent" req
told <- maybe pass return a
let b = C.pack "Mobile|iP(hone|od|ad)|Android|BlackBerry|IEMobile|Kindle|NetFront|Silk-Accelerated|(hpw|web)OS|Fennec|Minimo|Opera M(obi|ini)|Blazer|Dolfin|Dolphin|Skyfire|Zune"
let ii = told =~ b :: Bool
case ii of
True -> writeBS "adevarat"
False -> writeBS "fals"
writeBS told
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment