]> gitweb.michael.orlitzky.com - email-validator.git/blobdiff - src/Main.hs
Split the email address functions into their own module.
[email-validator.git] / src / Main.hs
index 293f953ac8b82a5952d759ee85c1a07dab13ca61..d2346c427f18845d932631e7250001326e387190 100644 (file)
@@ -5,7 +5,7 @@ module Main
 where
 
 import Control.Concurrent.ParallelIO.Global (parallel, stopGlobalPool)
-import Control.Monad (when)
+import Control.Monad (unless)
 import qualified Data.ByteString as BS
 import qualified Data.ByteString.UTF8 as BSU
 import Network.DNS (
@@ -26,12 +26,12 @@ import System.IO (
   openFile,
   stdin,
   stdout)
-import Text.Regex.PCRE.Light (compile, match, utf8)
+
 
 import CommandLine (Args(..), apply_args)
+import EmailAddress
 import ExitCodes (exit_input_file_doesnt_exist)
 
-type Address = BSU.ByteString
 
 -- | Resolver parameters. We increase the default timeout from 3 to 5
 --   seconds.
@@ -59,29 +59,6 @@ validate_mx resolver domain
         Nothing -> return False
         _       -> return True
 
--- | Split an address into local/domain parts.
-parts :: Address -> (BSU.ByteString, BSU.ByteString)
-parts address = bytestring_split address '@'
-
--- | Check that the lengths of the local/domain parts are within spec.
-validate_length :: Address -> Bool
-validate_length address =
-  (BSU.length localpart <= 64) && (BSU.length domain <= 255)
-  where
-    (localpart, domain) = parts address
-
--- | Validate an email address against a simple regex. This should
---   catch common addresses but disallows a lot of (legal) weird stuff.
-validate_regex :: Address -> Bool
-validate_regex address =
-  case matches of
-    Nothing -> False
-    _       -> True
-  where
-    regex_str = "(\\w+)([\\w\\-\\.]*)@(([0-9a-zA-Z\\-]+\\.)+)[a-zA-Z]{2,4}"
-    regex_bs  = BSU.fromString regex_str
-    regex = compile regex_bs [utf8]
-    matches = match regex address []
 
 -- | Validate the syntax of an email address by checking its length
 --   and validating it against a simple regex.
@@ -89,15 +66,6 @@ validate_syntax :: Address -> Bool
 validate_syntax address =
   (validate_length address) && (validate_regex address)
 
--- | Split a 'ByteString' @s@ at the first occurrence of @character@.
-bytestring_split :: BSU.ByteString -> Char -> (BSU.ByteString, BSU.ByteString)
-bytestring_split s character =
-  (before, after)
-  where
-    break_func = (== character)
-    (before, rest) = BSU.break break_func s
-    after = BS.tail rest
-
 
 -- | Validate an email address by doing some simple syntax checks and
 --   (if those fail) an MX lookup. We don't count an A record as a mail
@@ -109,7 +77,7 @@ validate resolver address = do
     let (_,domain) = parts address
     mx_result <- validate_mx resolver domain
     return (address, mx_result)
-  else do
+  else
     return (address, False)
 
 
@@ -132,7 +100,7 @@ main = do
              Nothing   -> BS.hGetContents stdin
              Just path -> do
                is_file <- doesFileExist path
-               when (not is_file) $ do
+               unless is_file $
                  exitWith (ExitFailure exit_input_file_doesnt_exist)
                BS.readFile path