import Data.Text (Text)
import Data.Either (Either(..))
-import Data.Maybe (Maybe(..))
-import Gargantext.API.Admin.Settings (withDevEnv, runCmdDev)
+import Gargantext.API.Dev (withDevEnv, runCmdDev)
import Gargantext.API.Prelude (GargError)
-import Gargantext.API.Node () -- instances
-import Gargantext.Core.Types.Individu (User(..))
+import Gargantext.API.Node () -- instances only
+import Gargantext.Core.Types.Individu (User(..), arbitraryNewUsers, NewUser(..), arbitraryUsername, GargPassword(..))
import Gargantext.Database.Action.Flow (getOrMkRoot, getOrMk_RootWithCorpus)
import Gargantext.Database.Query.Table.Node (getOrMkList)
-import Gargantext.Database.Query.Table.User (insertUsersDemo)
+import Gargantext.Database.Query.Table.User (insertNewUsers, )
import Gargantext.Database.Admin.Config (userMaster, corpusMasterName)
import Gargantext.Database.Admin.Types.Node
import Gargantext.Database.Admin.Trigger.Init (initFirstTriggers, initLastTriggers)
import Gargantext.Database.Admin.Types.Hyperdata (HyperdataCorpus)
-import Gargantext.Database.Admin.Types.Node (CorpusId, RootId, ListId)
import Gargantext.Database.Prelude (Cmd, )
import Gargantext.Prelude
import System.Environment (getArgs)
+import Prelude (getLine)
+-- TODO put this in gargantext.ini
secret :: Text
secret = "Database secret to change"
main = do
[iniPath] <- getArgs
+ putStrLn "Enter master user (gargantua) _password_ :"
+ password <- getLine
+
+ putStrLn "Enter master user (gargantua) _email_ :"
+ email <- getLine
+
+
let createUsers :: Cmd GargError Int64
- createUsers = insertUsersDemo
+ createUsers = insertNewUsers (NewUser "gargantua" (cs email) (GargPassword $ cs password)
+ : arbitraryNewUsers
+ )
let
mkRoots :: Cmd GargError [(UserId, RootId)]
- mkRoots = mapM getOrMkRoot $ map UserName ["gargantua", "user1", "user2", "user3"]
+ mkRoots = mapM getOrMkRoot $ map UserName ("gargantua" : arbitraryUsername)
-- TODO create all users roots
let
initMaster :: Cmd GargError (UserId, RootId, CorpusId, ListId)
initMaster = do
- (masterUserId, masterRootId, masterCorpusId) <- getOrMk_RootWithCorpus (UserName userMaster) (Left corpusMasterName) (Nothing :: Maybe HyperdataCorpus)
+ (masterUserId, masterRootId, masterCorpusId)
+ <- getOrMk_RootWithCorpus (UserName userMaster)
+ (Left corpusMasterName)
+ (Nothing :: Maybe HyperdataCorpus)
masterListId <- getOrMkList masterCorpusId masterUserId
- _triggers <- initLastTriggers masterListId
+ _triggers <- initLastTriggers masterListId
pure (masterUserId, masterRootId, masterCorpusId, masterListId)
withDevEnv iniPath $ \env -> do