[worker] more refactoring for jobs

parent 36a4c23f
Pipeline #6525 failed with stages
in 20 minutes and 29 seconds
...@@ -61,7 +61,6 @@ import Gargantext.Core.Mail.Types (mailSettings) ...@@ -61,7 +61,6 @@ import Gargantext.Core.Mail.Types (mailSettings)
import Gargantext.Core.Types.Individu (User(..), Username, GargPassword(..)) import Gargantext.Core.Types.Individu (User(..), Username, GargPassword(..))
import Gargantext.Core.Worker.Jobs qualified as Jobs import Gargantext.Core.Worker.Jobs qualified as Jobs
import Gargantext.Core.Worker.Jobs.Types qualified as Jobs import Gargantext.Core.Worker.Jobs.Types qualified as Jobs
import Gargantext.Database.Action.Flow.Types (FlowCmdM)
import Gargantext.Database.Action.User.New (guessUserName) import Gargantext.Database.Action.User.New (guessUserName)
import Gargantext.Database.Admin.Types.Node (NodeId(..)) import Gargantext.Database.Admin.Types.Node (NodeId(..))
import Gargantext.Database.Admin.Types.Node (UserId) import Gargantext.Database.Admin.Types.Node (UserId)
...@@ -73,7 +72,7 @@ import Gargantext.Database.Schema.Node (NodePoly(_node_id)) ...@@ -73,7 +72,7 @@ import Gargantext.Database.Schema.Node (NodePoly(_node_id))
import Gargantext.Prelude hiding (Handler, reverse, to) import Gargantext.Prelude hiding (Handler, reverse, to)
import Gargantext.Prelude.Crypto.Auth qualified as Auth import Gargantext.Prelude.Crypto.Auth qualified as Auth
import Gargantext.Prelude.Crypto.Pass.User (gargPass) import Gargantext.Prelude.Crypto.Pass.User (gargPass)
import Gargantext.Utils.Jobs (serveJobsAPI, MonadJobStatus(..)) import Gargantext.Utils.Jobs (serveJobsAPI)
import Servant import Servant
import Servant.API.Generic () import Servant.API.Generic ()
import Servant.Auth.Server import Servant.Auth.Server
...@@ -243,15 +242,7 @@ forgotPassword = Named.ForgotPasswordAPI ...@@ -243,15 +242,7 @@ forgotPassword = Named.ForgotPasswordAPI
forgotPasswordPost :: (CmdCommon env, HasSettings env) forgotPasswordPost :: (CmdCommon env, HasSettings env)
=> ForgotPasswordRequest -> Cmd' env err ForgotPasswordResponse => ForgotPasswordRequest -> Cmd' env err ForgotPasswordResponse
forgotPasswordPost (ForgotPasswordRequest email) = do forgotPasswordPost (ForgotPasswordRequest _email) = do
Jobs.sendJob $ Jobs.ForgotPassword { Jobs._fp_email = email }
-- us <- getUsersWithEmail (Text.toLower email)
-- case us of
-- [u] -> forgotUserPassword u
-- _ -> pure ()
-- NOTE Sending anything else here could leak information about
-- users' emails
pure $ ForgotPasswordResponse "ok" pure $ ForgotPasswordResponse "ok"
forgotPasswordGet :: (HasSettings env, CmdCommon env, HasAuthenticationError err, HasServerError err) forgotPasswordGet :: (HasSettings env, CmdCommon env, HasAuthenticationError err, HasServerError err)
...@@ -331,19 +322,5 @@ generateForgotPasswordUUID = do ...@@ -331,19 +322,5 @@ generateForgotPasswordUUID = do
-- malicious users emails of our users in the db -- malicious users emails of our users in the db
forgotPasswordAsync :: Named.ForgotPasswordAsyncAPI (AsServerT (GargM Env BackendInternalError)) forgotPasswordAsync :: Named.ForgotPasswordAsyncAPI (AsServerT (GargM Env BackendInternalError))
forgotPasswordAsync = Named.ForgotPasswordAsyncAPI $ AsyncJobs $ forgotPasswordAsync = Named.ForgotPasswordAsyncAPI $ AsyncJobs $
serveJobsAPI ForgotPasswordJob $ \jHandle p -> forgotPasswordAsync' p jHandle serveJobsAPI ForgotPasswordJob $ \_jHandle p -> do
Jobs.sendJob $ Jobs.ForgotPasswordAsync { Jobs._fpa_args = p }
forgotPasswordAsync' :: (FlowCmdM env err m, MonadJobStatus m, HasSettings env)
=> ForgotPasswordAsyncParams
-> JobHandle m
-> m ()
forgotPasswordAsync' (ForgotPasswordAsyncParams { email }) jobHandle = do
markStarted 2 jobHandle
markProgress 1 jobHandle
-- printDebug "[forgotPasswordAsync'] email" email
_ <- forgotPasswordPost $ ForgotPasswordRequest { _fpReq_email = email }
markComplete jobHandle
...@@ -134,7 +134,7 @@ instance ToSchema ForgotPasswordGet where ...@@ -134,7 +134,7 @@ instance ToSchema ForgotPasswordGet where
newtype ForgotPasswordAsyncParams = newtype ForgotPasswordAsyncParams =
ForgotPasswordAsyncParams { email :: Text } ForgotPasswordAsyncParams { email :: Text }
deriving (Generic, Show) deriving (Generic, Show, Eq)
instance FromJSON ForgotPasswordAsyncParams where instance FromJSON ForgotPasswordAsyncParams where
parseJSON = genericParseJSON defaultOptions parseJSON = genericParseJSON defaultOptions
instance ToJSON ForgotPasswordAsyncParams where instance ToJSON ForgotPasswordAsyncParams where
......
...@@ -20,6 +20,7 @@ import Async.Worker.Types qualified as Worker ...@@ -20,6 +20,7 @@ import Async.Worker.Types qualified as Worker
import Async.Worker.Types (HasWorkerBroker) import Async.Worker.Types (HasWorkerBroker)
import Data.Text qualified as T import Data.Text qualified as T
import Gargantext.API.Admin.Auth (forgotUserPassword) import Gargantext.API.Admin.Auth (forgotUserPassword)
import Gargantext.API.Admin.Auth.Types (ForgotPasswordAsyncParams(..))
import Gargantext.API.Admin.Types (HasSettings) import Gargantext.API.Admin.Types (HasSettings)
import Gargantext.Core.Worker.Jobs import Gargantext.Core.Worker.Jobs
import Gargantext.Core.Worker.Jobs.Types (Job(..)) import Gargantext.Core.Worker.Jobs.Types (Job(..))
...@@ -68,9 +69,9 @@ performAction env _state bm = do ...@@ -68,9 +69,9 @@ performAction env _state bm = do
let job' = toA $ getMessage bm let job' = toA $ getMessage bm
case Worker.job job' of case Worker.job job' of
Ping -> putStrLn ("ping" :: Text) Ping -> putStrLn ("ping" :: Text)
ForgotPassword { _fp_email } -> flip runReaderT env $ do ForgotPasswordAsync { _fpa_args = ForgotPasswordAsyncParams { email } } -> flip runReaderT env $ do
liftBase $ putStrLn ("forgot password: " <> _fp_email) liftBase $ putStrLn ("forgot password: " <> email)
us <- getUsersWithEmail (T.toLower _fp_email) us <- getUsersWithEmail (T.toLower email)
case us of case us of
[u] -> forgotUserPassword u [u] -> forgotUserPassword u
_ -> pure () _ -> pure ()
......
...@@ -15,13 +15,14 @@ module Gargantext.Core.Worker.Jobs.Types where ...@@ -15,13 +15,14 @@ module Gargantext.Core.Worker.Jobs.Types where
import Data.Aeson ((.:), (.=), object, withObject) import Data.Aeson ((.:), (.=), object, withObject)
import Data.Aeson.Types (prependFailure, typeMismatch) import Data.Aeson.Types (prependFailure, typeMismatch)
import Gargantext.API.Admin.Auth.Types (ForgotPasswordAsyncParams)
import Gargantext.API.Admin.EnvTypes ( GargJob ) import Gargantext.API.Admin.EnvTypes ( GargJob )
import Gargantext.Prelude import Gargantext.Prelude
data Job = data Job =
Ping Ping
| ForgotPassword { _fp_email :: Text } | ForgotPasswordAsync { _fpa_args :: ForgotPasswordAsyncParams }
| GargJob { _gj_garg_job :: GargJob } | GargJob { _gj_garg_job :: GargJob }
deriving (Show, Eq) deriving (Show, Eq)
instance FromJSON Job where instance FromJSON Job where
...@@ -29,16 +30,16 @@ instance FromJSON Job where ...@@ -29,16 +30,16 @@ instance FromJSON Job where
type_ <- o .: "type" type_ <- o .: "type"
case type_ of case type_ of
"Ping" -> return Ping "Ping" -> return Ping
"ForgotPassword" -> do "ForgotPasswordAsync" -> do
_fp_email <- o .: "email" _fpa_args <- o .: "args"
return $ ForgotPassword { _fp_email } return $ ForgotPasswordAsync { _fpa_args }
"GargJob" -> do "GargJob" -> do
_gj_garg_job <- o .: "garg_job" _gj_garg_job <- o .: "garg_job"
return $ GargJob { _gj_garg_job } return $ GargJob { _gj_garg_job }
s -> prependFailure "parsing job type failed, " (typeMismatch "type" s) s -> prependFailure "parsing job type failed, " (typeMismatch "type" s)
instance ToJSON Job where instance ToJSON Job where
toJSON Ping = object [ ("type" .= ("Ping" :: Text)) ] toJSON Ping = object [ ("type" .= ("Ping" :: Text)) ]
toJSON (ForgotPassword { _fp_email }) = object [ ("type" .= ("ForgotPassword" :: Text)) toJSON (ForgotPasswordAsync { _fpa_args }) = object [ ("type" .= ("ForgotPasswordAsync" :: Text))
, ("email" .= _fp_email) ] , ("args" .= _fpa_args) ]
toJSON (GargJob { _gj_garg_job }) = object [ ("type" .= ("GargJob" :: Text)) toJSON (GargJob { _gj_garg_job }) = object [ ("type" .= ("GargJob" :: Text))
, ("garg_job" .= _gj_garg_job) ] , ("garg_job" .= _gj_garg_job) ]
module Test.Instances where module Test.Instances where
import Gargantext.API.Admin.EnvTypes as EnvTypes import Gargantext.API.Admin.EnvTypes as EnvTypes
import Gargantext.API.Admin.Auth.Types (ForgotPasswordAsyncParams(..))
import Gargantext.Core.Worker.Jobs.Types (Job(..)) import Gargantext.Core.Worker.Jobs.Types (Job(..))
import Gargantext.Prelude import Gargantext.Prelude
import Text.Parsec.Error (ParseError, Message(..), newErrorMessage) import Text.Parsec.Error (ParseError, Message(..), newErrorMessage)
...@@ -31,12 +32,12 @@ instance Arbitrary EnvTypes.GargJob where ...@@ -31,12 +32,12 @@ instance Arbitrary EnvTypes.GargJob where
instance Arbitrary Job where instance Arbitrary Job where
arbitrary = oneof [ pure Ping arbitrary = oneof [ pure Ping
, forgotPasswordGen , forgotPasswordAsyncGen
, gargJobGen ] , gargJobGen ]
where where
forgotPasswordGen = do forgotPasswordAsyncGen = do
_fp_email <- arbitrary email <- arbitrary
return $ ForgotPassword { _fp_email } return $ ForgotPasswordAsync (ForgotPasswordAsyncParams { email })
gargJobGen = do gargJobGen = do
_gj_garg_job <- arbitrary _gj_garg_job <- arbitrary
return $ GargJob { _gj_garg_job } return $ GargJob { _gj_garg_job }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment