]> Git — Sourcephile - gargantext.git/blob - bin/gargantext-init/Main.hs
[test] dad gitlab-ci
[gargantext.git] / bin / gargantext-init / Main.hs
1 {-|
2 Module : Main.hs
3 Description : Gargantext Import Corpus
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
8 Portability : POSIX
9
10 Import a corpus binary.
11
12 -}
13
14 {-# LANGUAGE Strict #-}
15
16 module Main where
17
18 import Data.Text (Text)
19 import Data.Either (Either(..))
20 import Gargantext.API.Dev (withDevEnv, runCmdDev)
21 import Gargantext.API.Prelude (GargError)
22 import Gargantext.API.Node () -- instances only
23 import Gargantext.Core.Types.Individu (User(..), arbitraryNewUsers, NewUser(..), arbitraryUsername, GargPassword(..))
24 import Gargantext.Database.Action.Flow (getOrMkRoot, getOrMk_RootWithCorpus)
25 import Gargantext.Database.Query.Table.Node (getOrMkList)
26 import Gargantext.Database.Query.Table.User (insertNewUsers, )
27 import Gargantext.Database.Admin.Config (userMaster, corpusMasterName)
28 import Gargantext.Database.Admin.Types.Node
29 import Gargantext.Database.Admin.Trigger.Init (initFirstTriggers, initLastTriggers)
30 import Gargantext.Database.Admin.Types.Hyperdata (HyperdataCorpus)
31 import Gargantext.Database.Prelude (Cmd, )
32 import Gargantext.Prelude
33 import System.Environment (getArgs)
34 import Prelude (getLine)
35
36 -- TODO put this in gargantext.ini
37 secret :: Text
38 secret = "Database secret to change"
39
40 main :: IO ()
41 main = do
42 [iniPath] <- getArgs
43
44 putStrLn "Enter master user (gargantua) _password_ :"
45 password <- getLine
46
47 putStrLn "Enter master user (gargantua) _email_ :"
48 email <- getLine
49
50
51 let createUsers :: Cmd GargError Int64
52 createUsers = insertNewUsers (NewUser "gargantua" (cs email) (GargPassword $ cs password)
53 : arbitraryNewUsers
54 )
55
56 let
57 mkRoots :: Cmd GargError [(UserId, RootId)]
58 mkRoots = mapM getOrMkRoot $ map UserName ("gargantua" : arbitraryUsername)
59 -- TODO create all users roots
60
61 let
62 initMaster :: Cmd GargError (UserId, RootId, CorpusId, ListId)
63 initMaster = do
64 (masterUserId, masterRootId, masterCorpusId)
65 <- getOrMk_RootWithCorpus (UserName userMaster)
66 (Left corpusMasterName)
67 (Nothing :: Maybe HyperdataCorpus)
68 masterListId <- getOrMkList masterCorpusId masterUserId
69 _triggers <- initLastTriggers masterListId
70 pure (masterUserId, masterRootId, masterCorpusId, masterListId)
71
72 withDevEnv iniPath $ \env -> do
73 _ <- runCmdDev env (initFirstTriggers secret :: Cmd GargError [Int64])
74 _ <- runCmdDev env createUsers
75 x <- runCmdDev env initMaster
76 _ <- runCmdDev env mkRoots
77 putStrLn $ show x
78 pure ()