Add an environment type to hold the connection and the firewall settings

parent 59b24211
...@@ -40,7 +40,7 @@ import Gargantext.Prelude ...@@ -40,7 +40,7 @@ import Gargantext.Prelude
import System.IO (FilePath, print) import System.IO (FilePath, print)
import GHC.Generics (D1, Meta (..), Rep) import GHC.Generics (D1, Meta (..), Rep, Generic)
import GHC.TypeLits (AppendSymbol, Symbol) import GHC.TypeLits (AppendSymbol, Symbol)
import Control.Lens import Control.Lens
...@@ -94,6 +94,17 @@ import Network.HTTP.Types hiding (Query) ...@@ -94,6 +94,17 @@ import Network.HTTP.Types hiding (Query)
data FireWall = FireWall { unFireWall :: Bool } data FireWall = FireWall { unFireWall :: Bool }
data GEnv conn = Env
{ _env_conn :: !conn
, _env_firewall :: !FireWall
}
deriving (Generic)
makeLenses ''GEnv
type ProdEnv = GEnv Connection
type MockEnv = GEnv ()
fireWall :: Applicative f => Request -> FireWall -> f Bool fireWall :: Applicative f => Request -> FireWall -> f Bool
fireWall req fw = do fireWall req fw = do
let origin = lookup "Origin" (requestHeaders req) let origin = lookup "Origin" (requestHeaders req)
...@@ -111,14 +122,14 @@ fireWall req fw = do ...@@ -111,14 +122,14 @@ fireWall req fw = do
-- makeApp :: Env -> IO (Warp.Settings, Application) -- makeApp :: Env -> IO (Warp.Settings, Application)
makeApp :: FireWall -> IO Application makeApp :: MockEnv -> IO Application
makeApp fw = do makeApp env = do
let serverApp = appMock let serverApp = appMock
-- logWare <- mkRequestLogger def { destination = RequestLogger.Logger $ env^.logger } -- logWare <- mkRequestLogger def { destination = RequestLogger.Logger $ env^.logger }
--logWare <- mkRequestLogger def { destination = RequestLogger.Logger "/tmp/logs.txt" } --logWare <- mkRequestLogger def { destination = RequestLogger.Logger "/tmp/logs.txt" }
let checkOriginAndHost app req resp = do let checkOriginAndHost app req resp = do
blocking <- fireWall req fw blocking <- fireWall req (env ^. env_firewall)
case blocking of case blocking of
True -> app req resp True -> app req resp
False -> resp ( responseLBS status401 [] False -> resp ( responseLBS status401 []
...@@ -183,13 +194,16 @@ type API = SwaggerFrontAPI :<|> GargAPI ...@@ -183,13 +194,16 @@ type API = SwaggerFrontAPI :<|> GargAPI
--------------------------------------------------------------------- ---------------------------------------------------------------------
-- | Server declaration -- | Server declaration
server :: Connection -> Server API server :: ProdEnv -> Server API
server conn = swaggerFront server env
= swaggerFront
:<|> roots conn :<|> roots conn
:<|> nodeAPI conn :<|> nodeAPI conn
:<|> nodeAPI conn :<|> nodeAPI conn
:<|> nodesAPI conn :<|> nodesAPI conn
:<|> count :<|> count
where
conn = env ^. env_conn
--------------------------------------------------------------------- ---------------------------------------------------------------------
swaggerFront :: Server SwaggerFrontAPI swaggerFront :: Server SwaggerFrontAPI
...@@ -200,8 +214,9 @@ gargMock :: Server GargAPI ...@@ -200,8 +214,9 @@ gargMock :: Server GargAPI
gargMock = mock apiGarg Proxy gargMock = mock apiGarg Proxy
--------------------------------------------------------------------- ---------------------------------------------------------------------
app :: Connection -> Application app :: ProdEnv -> Application
app = serve api . server app = serve api . server
-- TODO firewall
appMock :: Application appMock :: Application
appMock = serve api (swaggerFront :<|> gargMock) appMock = serve api (swaggerFront :<|> gargMock)
...@@ -261,15 +276,17 @@ startGargantext port file = do ...@@ -261,15 +276,17 @@ startGargantext port file = do
param <- databaseParameters file param <- databaseParameters file
conn <- connect param conn <- connect param
let env = Env conn (FireWall False)
portRouteInfo port portRouteInfo port
run port (app conn) run port (app env)
startGargantextMock :: PortNumber -> IO () startGargantextMock :: PortNumber -> IO ()
startGargantextMock port = do startGargantextMock port = do
portRouteInfo port portRouteInfo port
let env = Env () (FireWall False)
application <- makeApp (FireWall False) application <- makeApp env
run port application run port application
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment