2 Module : Gargantext.Database.Action.User
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
13 module Gargantext.Database.Action.User
16 import Data.Text (Text)
17 import Gargantext.Core.Types.Individu (User(..))
18 import Gargantext.Database.Admin.Types.Node
19 import Gargantext.Database.Prelude (Cmd)
20 import Gargantext.Database.Query.Table.Node
21 import Gargantext.Database.Query.Table.User
22 import Gargantext.Database.Query.Table.Node.Error
23 import Gargantext.Database.Schema.Node
24 import Gargantext.Prelude
26 ------------------------------------------------------------------------
27 getUserId :: HasNodeError err
31 maybeUser <- getUserId' u
33 Nothing -> nodeError NoUserFound
36 getUserId' :: HasNodeError err
38 -> Cmd err (Maybe UserId)
39 getUserId' (UserDBId uid) = pure (Just uid)
40 getUserId' (RootId rid) = do
42 pure $ Just $ _node_userId n
43 getUserId' (UserName u ) = do
46 Just user -> pure $ Just $ userLight_id user
47 Nothing -> pure Nothing
48 getUserId' UserPublic = pure Nothing
50 ------------------------------------------------------------------------
53 -- that is confusing, we should change this
55 getUsername :: HasNodeError err
58 getUsername (UserName u) = pure u
59 getUsername (UserDBId i) = do
60 users <- getUsersWithId i
62 Just u -> pure $ userLight_username u
63 Nothing -> nodeError $ NodeError "G.D.A.U.getUserName: User not found with that id"
64 getUsername (RootId rid) = do
66 getUsername (UserDBId $ _node_userId n)
67 getUsername UserPublic = pure "UserPublic"
69 --------------------------------------------------------------------------
70 -- getRootId is in Gargantext.Database.Query.Tree.Root