2 Module : Gargantext.Viz.Phylo.Tools
3 Description : Phylomemy Tools to build/manage it
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
13 {-# OPTIONS_GHC -fno-warn-orphans #-}
15 {-# LANGUAGE DataKinds #-}
16 {-# LANGUAGE DeriveGeneric #-}
17 {-# LANGUAGE FlexibleContexts #-}
18 {-# LANGUAGE FlexibleInstances #-}
19 {-# LANGUAGE NoImplicitPrelude #-}
20 {-# LANGUAGE OverloadedStrings #-} -- allows to write Text literals
21 {-# LANGUAGE OverloadedLists #-} -- allows to write Map and HashMap as lists
22 {-# LANGUAGE RankNTypes #-}
23 {-# LANGUAGE TypeOperators #-}
25 module Gargantext.Viz.Graph.API
28 import Debug.Trace (trace)
29 import Control.Concurrent -- (forkIO)
30 import Control.Lens (set, (^.), _Just, (^?))
32 import Data.Maybe (Maybe(..))
34 import GHC.Generics (Generic)
36 import Gargantext.API.Ngrams (NgramsRepo, r_version)
37 import Gargantext.API.Ngrams.Tools
38 import Gargantext.API.Types
39 import Gargantext.Core.Types.Main
40 import Gargantext.Database.Config
41 import Gargantext.Database.Metrics.NgramsByNode (getNodesByNgramsOnlyUser)
42 import Gargantext.Database.Schema.Ngrams
43 import Gargantext.Database.Node.Select
44 import Gargantext.Database.Schema.Node (getNodeWith, getNodeUser, defaultList, insertGraph, HasNodeError)
45 import Gargantext.Database.Types.Node hiding (node_id) -- (GraphId, ListId, CorpusId, NodeId)
46 import Gargantext.Database.Node.UpdateOpaleye (updateHyperdata)
47 import Gargantext.Database.Utils (Cmd)
48 import Gargantext.Prelude
49 import Gargantext.Viz.Graph
50 import Gargantext.Viz.Graph.Tools -- (cooc2graph)
53 import Gargantext.API.Orchestrator.Types
54 import Servant.Job.Types
55 import Servant.Job.Async
56 import qualified Data.Map as Map
58 ------------------------------------------------------------------------
60 -- | There is no Delete specific API for Graph since it can be deleted
62 type GraphAPI = Get '[JSON] Graph
63 :<|> Post '[JSON] [GraphId]
66 :<|> "versions" :> GraphVersionsAPI
69 data GraphVersions = GraphVersions { gv_graph :: Maybe Int
70 , gv_repo :: Int } deriving (Show, Generic)
72 instance ToJSON GraphVersions
73 instance ToSchema GraphVersions
75 graphAPI :: UserId -> NodeId -> GargServer GraphAPI
76 graphAPI u n = getGraph u n
80 :<|> graphVersionsAPI u n
82 ------------------------------------------------------------------------
84 {- Model to fork Graph Computation
85 -- This is not really optimized since it increases the need RAM
86 -- and freezes the whole system
87 -- This is mainly for documentation (see a better solution in the function below)
88 -- Each process has to be tailored
89 getGraph' :: UserId -> NodeId -> GargServer (Get '[JSON] Graph)
91 newGraph <- liftBase newEmptyMVar
93 _ <- liftBase $ forkIO $ putMVar newGraph g
94 g' <- liftBase $ takeMVar newGraph
97 getGraph :: UserId -> NodeId -> GargNoServer Graph
99 nodeGraph <- getNodeWith nId HyperdataGraph
100 let graph = nodeGraph ^. node_hyperdata . hyperdataGraph
101 -- let listVersion = graph ^? _Just
108 -- let v = repo ^. r_version
109 nodeUser <- getNodeUser (NodeId uId)
111 let uId' = nodeUser ^. node_userId
113 let cId = maybe (panic "[ERR:G.V.G.API] Node has no parent")
115 $ nodeGraph ^. node_parentId
119 graph' <- computeGraph cId NgramsTerms repo
120 _ <- insertGraph cId uId' (HyperdataGraph $ Just graph')
121 pure $ trace "Graph empty, computing" $ graph'
123 Just graph' -> pure $ trace "Graph exists, returning" $ graph'
125 -- Just graph' -> if listVersion == Just v
128 -- graph'' <- computeGraph cId NgramsTerms repo
129 -- _ <- updateHyperdata nId (HyperdataGraph $ Just graph'')
132 newGraph <- liftBase newEmptyMVar
133 _ <- liftBase $ forkIO $ putMVar newGraph g
134 g' <- liftBase $ takeMVar newGraph
135 pure {- $ trace (show g) $ -} g'
138 recomputeGraph :: UserId -> NodeId -> GargNoServer Graph
139 recomputeGraph uId nId = do
140 nodeGraph <- getNodeWith nId HyperdataGraph
141 let graph = nodeGraph ^. node_hyperdata . hyperdataGraph
142 let listVersion = graph ^? _Just
149 let v = repo ^. r_version
150 nodeUser <- getNodeUser (NodeId uId)
152 let uId' = nodeUser ^. node_userId
154 let cId = maybe (panic "[ERR:G.V.G.API] Node has no parent")
156 $ nodeGraph ^. node_parentId
160 graph' <- computeGraphAsync cId NgramsTerms repo
161 _ <- insertGraph cId uId' (HyperdataGraph $ Just graph')
162 pure $ trace "[recomputeGraph] Graph empty, computing" $ graph'
164 Just graph' -> if listVersion == Just v
167 graph'' <- computeGraphAsync cId NgramsTerms repo
168 _ <- updateHyperdata nId (HyperdataGraph $ Just graph'')
169 pure $ trace "[recomputeGraph] Graph exists, recomputing" $ graph''
173 computeGraphAsync :: HasNodeError err
178 computeGraphAsync cId nt repo = do
179 g <- liftBase newEmptyMVar
180 _ <- forkIO <$> putMVar g <$> computeGraph cId nt repo
181 g' <- liftBase $ takeMVar g
185 -- TODO use Database Monad only here ?
186 computeGraph :: HasNodeError err
191 computeGraph cId nt repo = do
192 lId <- defaultList cId
194 let metadata = GraphMetadata "Title" [cId]
195 [ LegendField 1 "#FFF" "Cluster"
196 , LegendField 2 "#FFF" "Cluster"
198 (ListForGraph lId (repo ^. r_version))
199 -- (map (\n -> LegendField n "#FFFFFF" (pack $ show n)) [1..10])
201 lIds <- selectNodesWithUsername NodeList userMaster
202 let ngs = filterListWithRoot GraphTerm $ mapTermListRoot [lId] nt repo
204 myCooc <- Map.filter (>1)
205 <$> getCoocByNgrams (Diagonal False)
206 <$> groupNodesByNgrams ngs
207 <$> getNodesByNgramsOnlyUser cId (lIds <> [lId]) nt (Map.keys ngs)
209 let graph = cooc2graph 0 myCooc
210 let graph' = set graph_metadata (Just metadata) graph
215 postGraph :: NodeId -> GargServer (Post '[JSON] [NodeId])
216 postGraph = undefined
218 putGraph :: NodeId -> GargServer (Put '[JSON] Int)
221 ------------------------------------------------------------
223 type GraphAsyncAPI = Summary "Update graph"
225 :> AsyncJobsAPI ScraperStatus () ScraperStatus
227 graphAsync :: UserId -> NodeId -> GargServer GraphAsyncAPI
230 JobFunction (\_ log' -> graphAsync' u n (liftBase . log'))
233 graphAsync' :: UserId
235 -> (ScraperStatus -> GargNoServer ())
236 -> GargNoServer ScraperStatus
237 graphAsync' u n logStatus = do
238 logStatus ScraperStatus { _scst_succeeded = Just 0
239 , _scst_failed = Just 0
240 , _scst_remaining = Just 1
241 , _scst_events = Just []
243 _g <- trace (show u) $ recomputeGraph u n
244 pure ScraperStatus { _scst_succeeded = Just 1
245 , _scst_failed = Just 0
246 , _scst_remaining = Just 0
247 , _scst_events = Just []
250 ------------------------------------------------------------
252 type GraphVersionsAPI = Summary "Graph versions"
253 :> Get '[JSON] GraphVersions
254 :<|> Summary "Recompute graph version"
255 :> Post '[JSON] Graph
257 graphVersionsAPI :: UserId -> NodeId -> GargServer GraphVersionsAPI
258 graphVersionsAPI u n =
260 :<|> recomputeVersions u n
262 graphVersions :: UserId -> NodeId -> GargNoServer GraphVersions
263 graphVersions _uId nId = do
264 nodeGraph <- getNodeWith nId HyperdataGraph
265 let graph = nodeGraph ^. node_hyperdata . hyperdataGraph
266 let listVersion = graph ^? _Just
273 let v = repo ^. r_version
275 pure $ GraphVersions { gv_graph = listVersion
278 recomputeVersions :: UserId -> NodeId -> GargNoServer Graph
279 recomputeVersions uId nId = recomputeGraph uId nId