2 Module : Gargantext.Database.Schema.Node
3 Description : Main requests of Node to the database
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
12 {-# OPTIONS_GHC -fno-warn-orphans #-}
14 {-# LANGUAGE Arrows #-}
15 {-# LANGUAGE ConstraintKinds #-}
16 {-# LANGUAGE FunctionalDependencies #-}
17 {-# LANGUAGE TemplateHaskell #-}
18 {-# LANGUAGE TypeFamilies #-}
20 module Gargantext.Database.Schema.Node where
22 import Control.Lens hiding (elements, (&))
23 import Gargantext.Database.Schema.Prelude
24 import Prelude hiding (null, id, map, sum)
26 ------------------------------------------------------------------------
27 -- Main polymorphic Node definition
36 Node { _node_id :: !id
37 , _node_hash_id :: !hash_id
38 , _node_typename :: !typename
40 , _node_user_id :: !user_id
41 , _node_parent_id :: !parent_id
46 , _node_hyperdata :: !hyperdata
47 } deriving (Show, Generic)
49 ------------------------------------------------------------------------
50 -- Automatic instances derivation
51 $(deriveJSON (unPrefix "_node_") ''NodePoly)
52 $(makeLenses ''NodePoly)
54 $(makeAdaptorAndInstance "pNode" ''NodePoly)
55 $(makeLensesWith abbreviatedFields ''NodePoly)
57 nodeTable :: Table NodeWrite NodeRead
58 nodeTable = Table "nodes" (pNode Node { _node_id = optionalTableField "id"
59 , _node_hash_id = optionalTableField "hash_id"
60 , _node_typename = requiredTableField "typename"
61 , _node_user_id = requiredTableField "user_id"
63 , _node_parent_id = optionalTableField "parent_id"
64 , _node_name = requiredTableField "name"
65 , _node_date = optionalTableField "date"
67 , _node_hyperdata = requiredTableField "hyperdata"
68 -- ignoring ts_vector field here
72 queryNodeTable :: Query NodeRead
73 queryNodeTable = selectTable nodeTable
74 ------------------------------------------------------------------------
75 type NodeHWrite a = NodePoly (Maybe (Field SqlInt4) )
76 (Maybe (Field SqlText) )
79 (Maybe (Field SqlInt4) )
81 (Maybe (Field SqlTimestamptz))
84 type NodeHRead a = NodePoly (Field SqlInt4 )
90 (Field SqlTimestamptz )
92 ------------------------------------------------------------------------
93 type NodeWrite = NodeHWrite SqlJsonb
95 type NodeRead = NodeHRead SqlJsonb
96 ------------------------------------------------------------------------
97 -- | Node(Read|Write)Search is slower than Node(Write|Read) use it
98 -- for full text search only
100 type NodeSearchWrite =
102 (Maybe (Field SqlInt4) )
105 (FieldNullable SqlInt4)
107 (Maybe (Field SqlTimestamptz))
109 (Maybe (Field SqlTSVector) )
111 type NodeSearchRead =
116 (FieldNullable SqlInt4 )
118 (Field SqlTimestamptz )
123 data NodePolySearch id
131 NodeSearch { _ns_id :: id
132 , _ns_typename :: typename
133 , _ns_user_id :: user_id
134 -- , nodeUniqId :: shaId
135 , _ns_parent_id :: parent_id
139 , _ns_hyperdata :: hyperdata
140 , _ns_search :: search
141 } deriving (Show, Generic)
143 $(makeAdaptorAndInstance "pNodeSearch" ''NodePolySearch)
144 $(makeLensesWith abbreviatedFields ''NodePolySearch)
145 $(deriveJSON (unPrefix "_ns_") ''NodePolySearch)
146 $(makeLenses ''NodePolySearch)
148 nodeTableSearch :: Table NodeSearchWrite NodeSearchRead
149 nodeTableSearch = Table "nodes" ( pNodeSearch
150 NodeSearch { _ns_id = optionalTableField "id"
151 , _ns_typename = requiredTableField "typename"
152 , _ns_user_id = requiredTableField "user_id"
154 , _ns_parent_id = requiredTableField "parent_id"
155 , _ns_name = requiredTableField "name"
156 , _ns_date = optionalTableField "date"
158 , _ns_hyperdata = requiredTableField "hyperdata"
159 , _ns_search = optionalTableField "search"
162 ------------------------------------------------------------------------