Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (garetxe@gmail.com) |
Safe Haskell | None |
Language | Haskell2010 |
TlsInteraction
provides a mechanism for the TLS connection and database
code to interact with the user. It can be used to ask the user for passwords.
To use a TlsInteraction
with a TLS connection use
tlsConnectionSetInteraction
.
Callers should instantiate a derived class that implements the various interaction methods to show the required dialogs.
Callers should use the 'invoke' functions like
tlsInteractionInvokeAskPassword
to run interaction methods. These
functions make sure that the interaction is invoked in the main loop
and not in the current thread, if the current thread is not running the
main loop.
Derived classes can choose to implement whichever interactions methods they'd
like to support by overriding those virtual methods in their class
initialization function. Any interactions not implemented will return
TlsInteractionResultUnhandled
. If a derived class implements an async method,
it must also implement the corresponding finish method.
Since: 2.30
Synopsis
- newtype TlsInteraction = TlsInteraction (ManagedPtr TlsInteraction)
- class GObject o => IsTlsInteraction o
- toTlsInteraction :: (MonadIO m, IsTlsInteraction o) => o -> m TlsInteraction
- noTlsInteraction :: Maybe TlsInteraction
- tlsInteractionAskPassword :: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsPassword b, IsCancellable c) => a -> b -> Maybe c -> m TlsInteractionResult
- tlsInteractionAskPasswordAsync :: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsPassword b, IsCancellable c) => a -> b -> Maybe c -> Maybe AsyncReadyCallback -> m ()
- tlsInteractionAskPasswordFinish :: (HasCallStack, MonadIO m, IsTlsInteraction a, IsAsyncResult b) => a -> b -> m TlsInteractionResult
- tlsInteractionInvokeAskPassword :: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsPassword b, IsCancellable c) => a -> b -> Maybe c -> m TlsInteractionResult
- tlsInteractionInvokeRequestCertificate :: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsConnection b, IsCancellable c) => a -> b -> TlsCertificateRequestFlags -> Maybe c -> m TlsInteractionResult
- tlsInteractionRequestCertificate :: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsConnection b, IsCancellable c) => a -> b -> TlsCertificateRequestFlags -> Maybe c -> m TlsInteractionResult
- tlsInteractionRequestCertificateAsync :: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsConnection b, IsCancellable c) => a -> b -> TlsCertificateRequestFlags -> Maybe c -> Maybe AsyncReadyCallback -> m ()
- tlsInteractionRequestCertificateFinish :: (HasCallStack, MonadIO m, IsTlsInteraction a, IsAsyncResult b) => a -> b -> m TlsInteractionResult
Exported types
newtype TlsInteraction Source #
Memory-managed wrapper type.
Instances
GObject TlsInteraction Source # | |
Defined in GI.Gio.Objects.TlsInteraction gobjectType :: TlsInteraction -> IO GType # | |
IsObject TlsInteraction Source # | |
Defined in GI.Gio.Objects.TlsInteraction | |
IsTlsInteraction TlsInteraction Source # | |
Defined in GI.Gio.Objects.TlsInteraction |
class GObject o => IsTlsInteraction o Source #
Type class for types which can be safely cast to TlsInteraction
, for instance with toTlsInteraction
.
Instances
(GObject a, (UnknownAncestorError TlsInteraction a :: Constraint)) => IsTlsInteraction a Source # | |
Defined in GI.Gio.Objects.TlsInteraction | |
IsTlsInteraction TlsInteraction Source # | |
Defined in GI.Gio.Objects.TlsInteraction |
toTlsInteraction :: (MonadIO m, IsTlsInteraction o) => o -> m TlsInteraction Source #
Cast to TlsInteraction
, for types for which this is known to be safe. For general casts, use castTo
.
noTlsInteraction :: Maybe TlsInteraction Source #
A convenience alias for Nothing
:: Maybe
TlsInteraction
.
Methods
askPassword
tlsInteractionAskPassword Source #
:: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsPassword b, IsCancellable c) | |
=> a |
|
-> b |
|
-> Maybe c |
|
-> m TlsInteractionResult | Returns: The status of the ask password interaction. (Can throw |
Run synchronous interaction to ask the user for a password. In general,
tlsInteractionInvokeAskPassword
should be used instead of this
function.
Derived subclasses usually implement a password prompt, although they may
also choose to provide a password from elsewhere. The password
value will
be filled in and then callback
will be called. Alternatively the user may
abort this password request, which will usually abort the TLS connection.
If the interaction is cancelled by the cancellation object, or by the
user then TlsInteractionResultFailed
will be returned with an error that
contains a IOErrorEnumCancelled
error code. Certain implementations may
not support immediate cancellation.
Since: 2.30
askPasswordAsync
tlsInteractionAskPasswordAsync Source #
:: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsPassword b, IsCancellable c) | |
=> a |
|
-> b |
|
-> Maybe c |
|
-> Maybe AsyncReadyCallback |
|
-> m () |
Run asynchronous interaction to ask the user for a password. In general,
tlsInteractionInvokeAskPassword
should be used instead of this
function.
Derived subclasses usually implement a password prompt, although they may
also choose to provide a password from elsewhere. The password
value will
be filled in and then callback
will be called. Alternatively the user may
abort this password request, which will usually abort the TLS connection.
If the interaction is cancelled by the cancellation object, or by the
user then TlsInteractionResultFailed
will be returned with an error that
contains a IOErrorEnumCancelled
error code. Certain implementations may
not support immediate cancellation.
Certain implementations may not support immediate cancellation.
Since: 2.30
askPasswordFinish
tlsInteractionAskPasswordFinish Source #
:: (HasCallStack, MonadIO m, IsTlsInteraction a, IsAsyncResult b) | |
=> a |
|
-> b |
|
-> m TlsInteractionResult | Returns: The status of the ask password interaction. (Can throw |
Complete an ask password user interaction request. This should be once
the tlsInteractionAskPasswordAsync
completion callback is called.
If TlsInteractionResultHandled
is returned, then the TlsPassword
passed
to tlsInteractionAskPassword
will have its password filled in.
If the interaction is cancelled by the cancellation object, or by the
user then TlsInteractionResultFailed
will be returned with an error that
contains a IOErrorEnumCancelled
error code.
Since: 2.30
invokeAskPassword
tlsInteractionInvokeAskPassword Source #
:: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsPassword b, IsCancellable c) | |
=> a |
|
-> b |
|
-> Maybe c |
|
-> m TlsInteractionResult | Returns: The status of the ask password interaction. (Can throw |
Invoke the interaction to ask the user for a password. It invokes this
interaction in the main loop, specifically the MainContext
returned by
mainContextGetThreadDefault
when the interaction is created. This
is called by called by TlsConnection
or TlsDatabase
to ask the user
for a password.
Derived subclasses usually implement a password prompt, although they may
also choose to provide a password from elsewhere. The password
value will
be filled in and then callback
will be called. Alternatively the user may
abort this password request, which will usually abort the TLS connection.
The implementation can either be a synchronous (eg: modal dialog) or an asynchronous one (eg: modeless dialog). This function will take care of calling which ever one correctly.
If the interaction is cancelled by the cancellation object, or by the
user then TlsInteractionResultFailed
will be returned with an error that
contains a IOErrorEnumCancelled
error code. Certain implementations may
not support immediate cancellation.
Since: 2.30
invokeRequestCertificate
tlsInteractionInvokeRequestCertificate Source #
:: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsConnection b, IsCancellable c) | |
=> a |
|
-> b |
|
-> TlsCertificateRequestFlags |
|
-> Maybe c |
|
-> m TlsInteractionResult | Returns: The status of the certificate request interaction. (Can throw |
Invoke the interaction to ask the user to choose a certificate to
use with the connection. It invokes this interaction in the main
loop, specifically the MainContext
returned by
mainContextGetThreadDefault
when the interaction is
created. This is called by called by TlsConnection
when the peer
requests a certificate during the handshake.
Derived subclasses usually implement a certificate selector, although they may also choose to provide a certificate from elsewhere. Alternatively the user may abort this certificate request, which may or may not abort the TLS connection.
The implementation can either be a synchronous (eg: modal dialog) or an asynchronous one (eg: modeless dialog). This function will take care of calling which ever one correctly.
If the interaction is cancelled by the cancellation object, or by the
user then TlsInteractionResultFailed
will be returned with an error that
contains a IOErrorEnumCancelled
error code. Certain implementations may
not support immediate cancellation.
Since: 2.40
requestCertificate
tlsInteractionRequestCertificate Source #
:: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsConnection b, IsCancellable c) | |
=> a |
|
-> b |
|
-> TlsCertificateRequestFlags |
|
-> Maybe c |
|
-> m TlsInteractionResult | Returns: The status of the request certificate interaction. (Can throw |
Run synchronous interaction to ask the user to choose a certificate to use
with the connection. In general, tlsInteractionInvokeRequestCertificate
should be used instead of this function.
Derived subclasses usually implement a certificate selector, although they may also choose to provide a certificate from elsewhere. Alternatively the user may abort this certificate request, which will usually abort the TLS connection.
If TlsInteractionResultHandled
is returned, then the TlsConnection
passed to tlsInteractionRequestCertificate
will have had its
TlsConnection
:certificate
filled in.
If the interaction is cancelled by the cancellation object, or by the
user then TlsInteractionResultFailed
will be returned with an error that
contains a IOErrorEnumCancelled
error code. Certain implementations may
not support immediate cancellation.
Since: 2.40
requestCertificateAsync
tlsInteractionRequestCertificateAsync Source #
:: (HasCallStack, MonadIO m, IsTlsInteraction a, IsTlsConnection b, IsCancellable c) | |
=> a |
|
-> b |
|
-> TlsCertificateRequestFlags |
|
-> Maybe c |
|
-> Maybe AsyncReadyCallback |
|
-> m () |
Run asynchronous interaction to ask the user for a certificate to use with
the connection. In general, tlsInteractionInvokeRequestCertificate
should
be used instead of this function.
Derived subclasses usually implement a certificate selector, although they may
also choose to provide a certificate from elsewhere. callback
will be called
when the operation completes. Alternatively the user may abort this certificate
request, which will usually abort the TLS connection.
Since: 2.40
requestCertificateFinish
tlsInteractionRequestCertificateFinish Source #
:: (HasCallStack, MonadIO m, IsTlsInteraction a, IsAsyncResult b) | |
=> a |
|
-> b |
|
-> m TlsInteractionResult | Returns: The status of the request certificate interaction. (Can throw |
Complete an request certificate user interaction request. This should be once
the tlsInteractionRequestCertificateAsync
completion callback is called.
If TlsInteractionResultHandled
is returned, then the TlsConnection
passed to tlsInteractionRequestCertificateAsync
will have had its
TlsConnection
:certificate
filled in.
If the interaction is cancelled by the cancellation object, or by the
user then TlsInteractionResultFailed
will be returned with an error that
contains a IOErrorEnumCancelled
error code.
Since: 2.40