2 Module : Gargantext.API.Auth
3 Description : Server API Auth Module
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
10 Main authorization of Gargantext are managed in this module
12 -- 1: Implement the Server / Client JWT authentication
13 -> Client towards Python Backend
14 -> Server towards Purescript Front-End
16 -- 2: Implement the Auth API backend
17 https://github.com/haskell-servant/servant-auth
23 {-# LANGUAGE NoImplicitPrelude #-}
24 {-# LANGUAGE DeriveGeneric #-}
25 {-# LANGUAGE DataKinds #-}
26 {-# LANGUAGE FlexibleContexts #-}
27 {-# LANGUAGE OverloadedStrings #-}
28 {-# LANGUAGE RankNTypes #-}
29 {-# LANGUAGE ScopedTypeVariables #-}
30 {-# LANGUAGE TemplateHaskell #-}
32 module Gargantext.API.Auth
35 import Control.Lens (view)
36 import Control.Monad.IO.Class (liftIO)
37 import Data.Aeson.TH (deriveJSON)
38 import Data.List (elem)
40 import Data.Text (Text, reverse)
41 import Data.Text.Lazy (toStrict)
42 import Data.Text.Lazy.Encoding (decodeUtf8)
43 import GHC.Generics (Generic)
45 import Servant.Auth.Server
46 import Gargantext.Core.Utils.Prefix (unPrefix, unPrefixSwagger)
47 import Gargantext.API.Settings
48 import Gargantext.API.Types (HasJoseError(..), joseError, HasServerError, serverError, GargServerC)
49 import Gargantext.Database.Root (getRoot)
50 import Gargantext.Database.Tree (isDescendantOf)
51 import Gargantext.Database.Types.Node (NodePoly(_node_id), NodeId(..), UserId)
52 import Gargantext.Database.Utils (Cmd', CmdM, HasConnection)
53 import Gargantext.Prelude hiding (reverse)
54 import Test.QuickCheck (elements, oneof)
55 import Test.QuickCheck.Arbitrary (Arbitrary, arbitrary)
56 import Gargantext.Core.Types.Individu (Username, Password, arbitraryUsername, arbitraryPassword)
58 ---------------------------------------------------
60 -- | Main types for AUTH API
61 data AuthRequest = AuthRequest { _authReq_username :: Username
62 , _authReq_password :: Password
66 -- TODO: Use an HTTP error to wrap AuthInvalid
67 data AuthResponse = AuthResponse { _authRes_valid :: Maybe AuthValid
68 , _authRes_inval :: Maybe AuthInvalid
72 data AuthInvalid = AuthInvalid { _authInv_message :: Text }
75 data AuthValid = AuthValid { _authVal_token :: Token
76 , _authVal_tree_id :: TreeId
83 -- | Main functions of authorization
85 -- | Main types of authorization
86 data CheckAuth = InvalidUser | InvalidPassword | Valid Token TreeId
89 makeTokenForUser :: (HasSettings env, HasJoseError err)
90 => NodeId -> Cmd' env err Token
91 makeTokenForUser uid = do
92 jwtS <- view $ settings . jwtSettings
93 e <- liftIO $ makeJWT (AuthenticatedUser uid) jwtS Nothing
94 -- TODO-SECURITY here we can implement token expiration ^^.
95 either joseError (pure . toStrict . decodeUtf8) e
96 -- TODO not sure about the encoding...
98 checkAuthRequest :: (HasSettings env, HasConnection env, HasJoseError err)
99 => Username -> Password -> Cmd' env err CheckAuth
101 | not (u `elem` arbitraryUsername) = pure InvalidUser
102 | u /= reverse p = pure InvalidPassword
104 muId <- head <$> getRoot "user1" -- TODO user1 hard-coded
105 case _node_id <$> muId of
106 Nothing -> pure InvalidUser
108 token <- makeTokenForUser uid
109 pure $ Valid token uid
111 auth :: (HasSettings env, HasConnection env, HasJoseError err)
112 => AuthRequest -> Cmd' env err AuthResponse
113 auth (AuthRequest u p) = do
114 checkAuthRequest' <- checkAuthRequest u p
115 case checkAuthRequest' of
116 InvalidUser -> pure $ AuthResponse Nothing (Just $ AuthInvalid "Invalid user")
117 InvalidPassword -> pure $ AuthResponse Nothing (Just $ AuthInvalid "Invalid password")
118 Valid to trId -> pure $ AuthResponse (Just $ AuthValid to trId) Nothing
120 newtype AuthenticatedUser = AuthenticatedUser
121 { _authUser_id :: NodeId
124 $(deriveJSON (unPrefix "_authUser_") ''AuthenticatedUser)
125 instance ToSchema AuthenticatedUser where
126 declareNamedSchema = genericDeclareNamedSchema (unPrefixSwagger "_authUser_")
127 instance ToJWT AuthenticatedUser
128 instance FromJWT AuthenticatedUser
130 --type instance BasicAuthCfg = BasicAuthData -> IO (AuthResult AuthenticatedUser)
132 -- TODO-SECURITY why is the CookieSettings necessary?
133 type AuthContext = '[JWTSettings, CookieSettings] -- , BasicAuthCfg
136 instance FromBasicAuthData AuthenticatedUser where
137 fromBasicAuthData authData authCheckFunction = authCheckFunction authData
139 authCheck :: forall env. env
141 -> IO (AuthResult AuthenticatedUser)
142 authCheck _env (BasicAuthData login password) = pure $
143 maybe Indefinite Authenticated $ TODO
147 $(deriveJSON (unPrefix "_authReq_") ''AuthRequest)
148 instance ToSchema AuthRequest where
149 declareNamedSchema = genericDeclareNamedSchema (unPrefixSwagger "_authReq_")
151 instance Arbitrary AuthRequest where
152 arbitrary = elements [ AuthRequest u p
153 | u <- arbitraryUsername
154 , p <- arbitraryPassword
157 $(deriveJSON (unPrefix "_authRes_") ''AuthResponse)
158 instance ToSchema AuthResponse where
159 declareNamedSchema = genericDeclareNamedSchema (unPrefixSwagger "_authRes_")
160 instance Arbitrary AuthResponse where
161 arbitrary = oneof [ AuthResponse Nothing . Just <$> arbitrary
162 , flip AuthResponse Nothing . Just <$> arbitrary ]
164 $(deriveJSON (unPrefix "_authInv_") ''AuthInvalid)
165 instance ToSchema AuthInvalid where
166 declareNamedSchema = genericDeclareNamedSchema (unPrefixSwagger "_authInv_")
167 instance Arbitrary AuthInvalid where
168 arbitrary = elements [ AuthInvalid m
169 | m <- [ "Invalid user", "Invalid password"]
172 $(deriveJSON (unPrefix "_authVal_") ''AuthValid)
173 instance ToSchema AuthValid where
174 declareNamedSchema = genericDeclareNamedSchema (unPrefixSwagger "_authVal_")
175 instance Arbitrary AuthValid where
176 arbitrary = elements [ AuthValid to tr
177 | to <- ["token0", "token1"]
181 withAccessM :: (CmdM env err m, HasServerError err) => UserId -> NodeId -> m a -> m a
182 withAccessM uId id m = do
183 d <- id `isDescendantOf` NodeId uId
184 if d then m else serverError err401
186 withAccess :: forall env err m api.
187 (GargServerC env err m, HasServer api '[]) =>
188 Proxy api -> Proxy m ->
190 ServerT api m -> ServerT api m
191 withAccess p _ uId id = hoistServer p f
193 f :: forall a. m a -> m a
194 f = withAccessM uId id