-- Disabling to stop warnings on FromUTC
{-# OPTIONS_GHC -Wno-redundant-constraints #-}

-- This file is part of the Wire Server implementation.
--
-- Copyright (C) 2022 Wire Swiss GmbH <opensource@wire.com>
--
-- This program is free software: you can redistribute it and/or modify it under
-- the terms of the GNU Affero General Public License as published by the Free
-- Software Foundation, either version 3 of the License, or (at your option) any
-- later version.
--
-- This program is distributed in the hope that it will be useful, but WITHOUT
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-- FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
-- details.
--
-- You should have received a copy of the GNU Affero General Public License along
-- with this program. If not, see <https://www.gnu.org/licenses/>.

module Wire.Sem.Now.Input (nowToInput) where

import Data.Time (UTCTime)
import Imports
import Polysemy
import Polysemy.Input
import Wire.Sem.Now

nowToInput ::
  (Member (Input UTCTime) r) =>
  Sem (Now ': r) a ->
  Sem r a
nowToInput :: forall (r :: EffectRow) a.
Member (Input UTCTime) r =>
Sem (Now : r) a -> Sem r a
nowToInput = (forall (rInitial :: EffectRow) x. Now (Sem rInitial) x -> Sem r x)
-> Sem (Now : r) a -> Sem r a
forall (e :: (* -> *) -> * -> *) (r :: EffectRow) a.
FirstOrder e "interpret" =>
(forall (rInitial :: EffectRow) x. e (Sem rInitial) x -> Sem r x)
-> Sem (e : r) a -> Sem r a
interpret ((forall (rInitial :: EffectRow) x.
  Now (Sem rInitial) x -> Sem r x)
 -> Sem (Now : r) a -> Sem r a)
-> (forall (rInitial :: EffectRow) x.
    Now (Sem rInitial) x -> Sem r x)
-> Sem (Now : r) a
-> Sem r a
forall a b. (a -> b) -> a -> b
$ \case
  Now (Sem rInitial) x
Get -> Sem r x
forall i (r :: EffectRow). Member (Input i) r => Sem r i
input