Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Documentation
| Use
IsSecure
whenever your request handlers need to know whether
the connection to the server is secure or not.
This would make the request handlers receive an argument of type
IsSecure
,
whose value can be one of
Secure
(HTTPS) or
NotSecure
(HTTP).
Example:
>>>
type API = "sensitive-data" :> IsSecure :> Get '[JSON] NationSecrets
Was this request made over an SSL connection?
Note that this value will not tell you if the client originally
made this request over SSL, but rather whether the current
connection is SSL. The distinction lies with reverse proxies.
In many cases, the client will connect to a load balancer over SSL,
but connect to the WAI handler without SSL. In such a case,
the handlers would get
NotSecure
, but from a user perspective,
there is a secure connection.
Secure |
the connection to the server is secure (HTTPS) |
NotSecure |
the connection to the server is not secure (HTTP) |
Instances
Eq IsSecure Source # | |
Ord IsSecure Source # | |
Defined in Servant.API.IsSecure |
|
Read IsSecure Source # | |
Show IsSecure Source # | |
Generic IsSecure Source # | |
HasLink sub => HasLink ( IsSecure :> sub :: Type ) Source # | |
type Rep IsSecure Source # | |
type MkLink ( IsSecure :> sub :: Type ) a Source # | |