mirror of
https://github.com/facebook/duckling.git
synced 2024-11-29 01:03:44 +03:00
96f365e927
Summary: . Reviewed By: niteria Differential Revision: D4753842 fbshipit-source-id: 2e88e86
59 lines
1.6 KiB
Haskell
59 lines
1.6 KiB
Haskell
-- 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 NoRebindableSyntax #-}
|
|
|
|
-- | Everything needed to run Duckling.
|
|
|
|
module Duckling.Core
|
|
( Context(..)
|
|
, Dimension(..)
|
|
, fromName
|
|
, Entity(..)
|
|
, Lang(..)
|
|
, Some(..)
|
|
, toName
|
|
|
|
-- Duckling API
|
|
, parse
|
|
, supportedDimensions
|
|
|
|
-- Reference time builders
|
|
, currentReftime
|
|
, makeReftime
|
|
) where
|
|
|
|
import Data.HashMap.Strict (HashMap)
|
|
import qualified Data.HashMap.Strict as HashMap
|
|
import Data.Maybe
|
|
import Data.Text (Text)
|
|
import Data.Time
|
|
import Data.Time.LocalTime.TimeZone.Series
|
|
import Prelude
|
|
|
|
import Duckling.Api
|
|
import Duckling.Dimensions.Types
|
|
import Duckling.Lang
|
|
import Duckling.Resolve
|
|
import Duckling.Types
|
|
|
|
-- | Builds a `DucklingTime` for timezone `tz` at `utcTime`.
|
|
-- If no `series` found for `tz`, uses UTC.
|
|
makeReftime :: HashMap Text TimeZoneSeries -> Text -> UTCTime -> DucklingTime
|
|
makeReftime series tz utcTime = DucklingTime $ ZoneSeriesTime ducklingTime tzs
|
|
where
|
|
tzs = HashMap.lookupDefault (TimeZoneSeries utc []) tz series
|
|
ducklingTime = toUTC $ utcToLocalTime' tzs utcTime
|
|
|
|
-- | Builds a `DucklingTime` for timezone `tz` at current time.
|
|
-- If no `series` found for `tz`, uses UTC.
|
|
currentReftime :: HashMap Text TimeZoneSeries -> Text -> IO DucklingTime
|
|
currentReftime series tz = do
|
|
utcNow <- getCurrentTime
|
|
return $ makeReftime series tz utcNow
|