2017-03-08 21:33:55 +03:00
|
|
|
-- Copyright (c) 2016-present, Facebook, Inc.
|
|
|
|
-- All rights reserved.
|
|
|
|
--
|
|
|
|
-- This source code is licensed under the BSD-style license found in the
|
|
|
|
-- LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
-- of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
|
|
|
|
|
|
|
|
{-# LANGUAGE GADTs #-}
|
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
|
|
|
|
module Duckling.Email.EN.Rules
|
|
|
|
( rules ) where
|
|
|
|
|
|
|
|
import Data.String
|
|
|
|
import Prelude
|
2017-10-16 21:51:44 +03:00
|
|
|
import qualified Data.Text as Text
|
2017-03-08 21:33:55 +03:00
|
|
|
|
|
|
|
import Duckling.Dimensions.Types
|
|
|
|
import Duckling.Email.Types (EmailData (..))
|
|
|
|
import Duckling.Regex.Types
|
|
|
|
import Duckling.Types
|
2017-10-16 21:51:44 +03:00
|
|
|
import qualified Duckling.Email.Types as TEmail
|
2017-03-08 21:33:55 +03:00
|
|
|
|
2017-11-20 23:06:08 +03:00
|
|
|
|
2017-03-08 21:33:55 +03:00
|
|
|
ruleEmailSpelledOut :: Rule
|
|
|
|
ruleEmailSpelledOut = Rule
|
|
|
|
{ name = "email spelled out"
|
|
|
|
, pattern =
|
2017-11-20 23:06:08 +03:00
|
|
|
[ regex "((?:[\\w\\._+-]| dot )+) at ([\\w_-]+((?:\\.| dot )[a-zA-Z]+)+)"
|
2017-03-08 21:33:55 +03:00
|
|
|
]
|
|
|
|
, prod = \xs -> case xs of
|
|
|
|
(Token RegexMatch (GroupMatch (m1:m2:_)):_) ->
|
2017-11-20 23:06:08 +03:00
|
|
|
Just $ Token Email EmailData {TEmail.value = Text.concat [replaceDots m1, "@", replaceDots m2]}
|
|
|
|
where replaceDots = Text.replace " dot " "."
|
2017-03-08 21:33:55 +03:00
|
|
|
_ -> Nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
rules :: [Rule]
|
|
|
|
rules =
|
|
|
|
[ ruleEmailSpelledOut
|
|
|
|
]
|