Implementing the challenge handler in iOS applications
Overview
Prerequisite: Make sure to read the CredentialsValidationSecurityCheck challenge handler implementation tutorial.
The challenge handler tutorial demonstrates a few additional features (APIs) such as preemptive login
, logout
, and obtainAccessTokenForScope
.
Login
In this example, UserLogin
expects key:values called username
and password
. Optionally, it also accepts a Boolean rememberMe
key, which tells the security check to remember this user for a longer period. In the sample application, this is collected by a Boolean value from a checkbox in the login form.
The credentials
argument is a JSONObject
containing username
, password
, and rememberMe
:
self.submitChallengeAnswer(credentials);
You might also want to log in a user without any challenge being received. For example, you can show a login screen as the first screen of the application, or show a login screen after a logout or a login failure. Those scenarios are called preemptive logins.
You cannot call the submitChallengeAnswer
API if no challenge to answer. For those scenarios, the PMF SDK includes the login
API:
WLAuthorizationManagerSwift.sharedInstance().login(securityCheck: self.securityCheckName, credentials: credentials) { (error) in
if(error != nil){
print("Login Preemptive Failure: " + String(error!));
}
else{
print("Login Preemptive Success");
}
}
If the credentials are wrong, the security check sends back a challenge.
It is the developer’s responsibility to know when to use login
, as opposed to submitChallengeAnswer
, based on the application’s needs. One way to achieve this is to define a Boolean flag, for example isChallenged
, and set it to true
when handleChallenge
is reached, or set it to false
in any other cases (failure, success, initialization, etc).
When the user clicks the Login button, you can dynamically choose which API to use:
if(!self.isChallenged){
WLAuthorizationManagerSwift.sharedInstance().login(securityCheck: self.securityCheckName, credentials: credentials) { (error) -> Void in}
}
else{
self.submitChallengeAnswer(credentials)
}
Note: The
WLAuthorizationManager
login()
API has its own completion handler, the relevanthandleSuccess
orhandleFailure
methods of the relevant challenge handler ore also called.
Obtaining an access token
Because this security check supports the RememberMe functionality (as therememberMe
Boolean key), it would be useful to check whether the client is currently logged in when the application starts.
The Mobile Foundation SDK provides the obtainAccessToken
API to ask the server for a valid token:
WLAuthorizationManagerSwift.sharedInstance().obtainAccessToken(forScope : scope) { (token, error) -> Void in
if(error != nil){
print(“obtainAccessTokenForScope failed: “, error!)
}
else{
print(“obtainAccessTokenForScope success " + (token?.value)!);
}
}
Note: The
WLAuthorizationManagerSwift obtainAccessToken()
API has its own completion handler, thehandleSuccess
orhandleFailure
of the relevant challenge handler are also called.
If the client is already logged-in or is in the remembered state, the API triggers a success. If the client is not logged in, the security check sends back a challenge.
The obtainAccessTokenForScope
API takes in a scope. The scope can be the name of your security check.
Learn more about scopes in the Authorization concepts tutorial.
Retrieving the authenticated user
The challenge handler handleSuccess
method receives a dictionary success
as a parameter.
If the security check sets an AuthenticatedUser
, this object contains the user’s properties. You can use handleSuccess
to save the current user:
override open func handleSuccess(successResponse: [NSObject : AnyObject]!) {
self.isChallenged = false
self.defaults.setObject(successResponse![“user"]!["displayName"]! as! String, forKey: "displayName")
}
Here, success
has a key called user
which itself contains a dictionary representing the AuthenticatedUser
:
{
"user": {
"id": "john",
"displayName": "john",
"authenticatedAt": 1455803338008,
"authenticatedBy": "UserLogin"
}
}
Logout
The PMF SDK also provides a logout
API to logout from a specific security check:
WLAuthorizationManagerSwift.sharedInstance().logout(securityCheck: self.securityCheck){ (error) -> Void in
if(error != nil){
print("Logout Failure: " , error!)
}
}
Sample applications
Two samples are associated with this tutorial:
- PreemptiveLoginSwift: An application that always starts with a login screen, using the preemptive
login
API. - RememberMeSwift: An application with a Remember Me checkbox. The user can bypass the login screen the next time the application is opened.
Both samples use the same UserLogin
security check from the SecurityCheckAdapters adapter Maven project.
Click to download the SecurityCheckAdapters Maven project.
Click to download the Remember Me project.
Click to download the Preemptive Login project.
Sample usage
Follow the sample’s README.md file for instructions.
The username/password for the app must match, i.e. “john”/”john”.