cidaas is a fast and secure Cloud Identity & Access Management solution that standardises what’s important and simplifies what’s complex.
- Single Sign On (SSO) based on OAuth 2.0, OpenID Connect, SAML 2.0
- Multi-Factor-Authentication with more than 14 authentication methods, including TOTP and FIDO2
- Passwordless Authentication
- Social Login (e.g. Facebook, Google, LinkedIn and more) as well as Enterprise Identity Provider (e.g. SAML or AD)
- Security in Machine-to-Machine (M2M) and IoT
Make sure you have installed all of the following prerequisites on your development machine:
- PHP version 7.4.0 or higher
- Download and install the composer
In order to use this sdk, you need to perform the following steps:
- Add the cidaas repository to your composer.json configuration
"repositories": [ { "type": "vcs", "url": "https://github.com/Cidaas/cidaas-sdk-php.git" } ]
- Install sdk dependency using composer
composer require "cidaas/oauth2-cidaas:<tag / branch>", e.g. "cidaas/oauth2-cidaas:dev-master"
Before you can start integrating this sdk, you need the following information:
- Base URL - URL of cidaas server
- Client id - issued by cidaas to identify your application
- Client secret - issued by cidaas to identify your application
- Redirect URI - URI to redirect to after successful login
In addition to this data, you should read the documentation at https://docs.cidaas.de with special attention to the integration chapters.
Please note that the web server running your php application needs direct access to the base url mentioned above. If this is not possible, think about using the javascript sdk for browser side integration.
All communication is done using the php class Cidaas\OAuth2\Client\Provider\Cidaas
(called provider in the following chapters). In order to be
able to use this provider, you need to instantiate it with the prerequisites data mentioned above.
<?php
$provider = new Cidaas('https://yourcidaasinstance.cidaas.de', 'client id', 'client secret', 'https://yourwebsite/redirectAfterLogin');
?>
In addition to these required parameters, there are two optional constructor parameters:
- handler: to interfere with the http connections being performed
- debug: to enable debug mode
During construction, an http call is being performed to read base configuration data from the server.
In order to integrate a hosted login page, you might just implement a simple button, which itself calls the login method when clicked. By default pkce flow is disabled, to enable the pkce flow you must enable the flag $pkceEnabled by providing the value true in the function parameter.
<?php
$provider->loginWithBrowser();
?>
After successful login, the browser is redirected to your selected redirectUri (see Prerequisites). Using the method loginCallback
enables you to retrieve the authorization code for retrieving access and refresh tokens.
<?php
$parameters = $provider->loginCallback();
if (array_key_exists('code', $parameters)) {
$loginResultCode = $parameters['code'];
}
?>
You can build your own login page and use a direct login mechanism. In order to access the login method, you need to retrieve a requestId first.
<?php
try {
$loginResult = $provider->getRequestId('openid identities profile offline_access')->then(function ($requestId) {
return $provider->loginWithCredentials($username, 'email', $password, $requestId);
})->wait();
$loginResultCode = $loginResult['data']['code'];
} catch (ClientException $exception) {
$errorBody = json_decode($exception->getResponse()->getBody(), true);
$passwordErrorMessage = $errorBody['error']['error_description'];
}
?>
Using the login result code, you can then get your access token and refresh token using the method getAccessToken
with GrantType AuthorizationCode
.
<?php
$accessTokenResponse = $provider->getAccessToken(GrantType::AuthorizationCode, $loginResultCode)->wait();
$accessToken = $accessTokenResponse['access_token'];
$refreshToken = $accessTokenResponse['refresh_token'];
?>
In order to build your own registration page, you can retrieve required fields using getRegistrationSetup
with requestId and locale.
<?php
$registrationResponse = $provider->getRequestId()->then(function ($requestId) {
return $provider->getRegistrationSetup($requestId, $locale);
})->wait();
$registrationFields = $registrationResponse['data'];
?>
Using the fields and another requestId, you can then register
a new customer.
<?php
try {
$registrationResponse = $provider->getRequestId()->then(function ($requestId) {
return $provider->register($fields, $requestId);
})->wait();
} catch (ClientException $exception) {
$errorMessage = json_decode($exception->getResponse()->getBody())['error']['error'];
}
?>
In order to get a new access token by a given refresh token, you can also use the method getAccessToken
with GrantType RefreshToken
.
<?php
$accessToken = $provider->getAccessToken(GrantType::RefreshToken, '', $refreshToken)->then(function ($response) {
return $response['access_token'];
})->wait();
?>
In order to perform a logout, you need an access token. Using this token, you can perform a logout.
<?php
$provider->logout($accessToken);
?>
In order to integrate a hosted register page, you might just implement a simple button which itself calls the register method when clicked. The function accepts the below parameters
Param Name | Type | is optional | Default value | Description |
---|---|---|---|---|
scope | string | true | 'openid profile offline_access' | scope of the registered user |
queryParameters | associative array | true | [] | additional query params to add to the url. eg: ["local" => "en-US"] |
<?php
$provider->registerWithBrowser();
?>
After successful registration, the browser is redirected to the login page for you to login with the registered details. The reirection may sometimes differ based on the configuration of the client.
To integrate social login redirection, you might just implement a simple button which itself calls the login method when clicked. In order to access the login method, you need to retrieve a requestId first. The function requires the provider name(e.g: google, facebbok) and the requestId as functional parameter and optinally more query params can be added to the request url.
<?php
$provider->getRequestId('openid identities profile offline_access')->then(function ($requestId) {
$provider->loginWithSocial('google', $requestId);
})
?>
This will redirect to the login page of the social provider. After successful login, the browser is redirected to your selected redirectUri (see Prerequisites).
To integrate social registration redirection, you might just implement a simple button which itself calls the register method when clicked. In order to access the register method, you need to retrieve a requestId first. The function requires the provider name(e.g: google, facebbok) and the requestId as functional parameter and optionally more query params can be added to the request url.
<?php
$provider->getRequestId('openid identities profile offline_access')->then(function ($requestId) {
$provider->registerWithSocial('google', $requestId);
})
?>
This will redirect to the register page of the social provider. After successful registration, you can call the function loginWithSocial to start loging in to your cidaas client with the social provider.
To initiate multi factor authentication use the function intiateMFA. You need to retrieve a requestId first. Allowed types are mentioned in the list below
EMAIL
SMS
IVR
BACKUPCODE
SECURITY_QUESTION
TOTP
PATTERN
PUSH
FACE
TOUCHID
VOICE
FIDOU2F
FIDO2
SEALONE
PASSWORD
<?php
$resp = $provider->getRequestId('openid identities profile offline_access')->then(function ($requestId) {
$params = [
"email" => '[email protected]'
"request_id" => $requestId,
"usage_type" => "MULTIFACTOR_AUTHENTICATION"
]
$resp = $provider->intiateMFA('EMAIL', $params)->wait();
})
?>
The api used in the function returns a response like shown below. You will require the exchange_id and sub from the response in order to complete the authentication process by calling the function authenticateMFA.
{
"success": true,
"status": 200,
"data": {
"exchange_id": {
"exchange_id": "a64782cd-d136-4fc3-a879-3afb4feb7453",
"expires_at": "2023-11-20T07:37:01.439Z",
"_id": "0d69a2b7-4a2c-4776-97bf-09da5d243e02",
"createdTime": "2023-11-20T07:07:01.440Z",
"updatedTime": "2023-11-20T07:07:01.440Z",
"__ref": "58dfddbc8e3777f5:2a4e7a910c19bc67:58dfddbc8e3777f5:0",
"id": "0d69a2b7-4a2c-4776-97bf-09da5d243e02"
},
"medium_text": "[email protected]",
"sub": "3e851ef6-d6f4-41c3-8ff0-8277279c0fbd",
"status_id": "398ff79e-af29-4889-8377-f82dbf46ed63"
}
}
To authenticate multi factor you must first initiate the authentication process with the help of the function intiateMFA. You will be shared a passcode/verification code based on the type of authentication you prefer in the initiaition process. The types allowed for the authentication process are mentioned in the above section.
<?php
$resp = $provider->authenticateMFA('a64782cd-d136-4fc3-a879-3afb4feb7453', '3e851ef6-d6f4-41c3-8ff0-8277279c0fbd', '123456', 'EMAIL')->wait();
?>
The api used in the function returns a response like shown below. After successful authentication you may proceed with your custom implementation. For any failure the attibute "success" in the response payload will have value false.
{
"success": true,
"status": 200,
"data": {
"exchange_id": {
"exchange_id": "a64782cd-d136-4fc3-a879-3afb4feb7453",
"expires_at": "2023-11-20T07:37:01.439Z",
"_id": "0d69a2b7-4a2c-4776-97bf-09da5d243e02",
"createdTime": "2023-11-20T07:07:01.440Z",
"updatedTime": "2023-11-20T07:07:01.440Z",
"__ref": "58dfddbc8e3777f5:2a4e7a910c19bc67:58dfddbc8e3777f5:0",
"id": "0d69a2b7-4a2c-4776-97bf-09da5d243e02"
},
"medium_text": "[email protected]",
"sub": "3e851ef6-d6f4-41c3-8ff0-8277279c0fbd",
"status_id": "398ff79e-af29-4889-8377-f82dbf46ed63"
}
}
To initiate account verification use the function initiateAccountVerification. Account verification is done for newly created user account is not verified. If you are on cidaas v3, you must set the value v3 to the function parameter $version. The paramter $version is optional. Currently v2 and v3 version are supported. If not provided the default version v2 is considered to process the request further. A sample of the function parameter $params is shown below
- Allowed values for verificationMedium
email
sms
ivr
- Allowed values for verificationMedium
CODE
LINK
<?php
$params = [
"response_type": "token",
"verificationMedium": "email",
"processingType": "code",
"client_id": "103a3f9c-1a2d-4e47-940k-bad7f19d9604",
"redirect_uri": "https://test.cidaas.com/user-profile/editprofile",
"email": "[email protected]"
]
$provider->initiateAccountVerification($params)->wait();
?>
Once initiated successfully a passcode or a link will be sent to the preferred verificationMedium to verify your account
To complete account verification use the function verifyAccount. You will need the accvid which you will receive at the time of account verification initiation process.
<?php
$resp = $provider->verifyAccount("103a3f9c-1a2d-4e47-940k-bad7f19d9604", "123456")->wait();
?>
The api used in the function returns a response like shown below. For failed verification the value of the attribute success will be false. After successful verification you may proceed with your custom implementation.
{
"success": true,
"status": 200
}
Initiates progressive registration for missing required registration fields after an account is created in cidaas system. Below are the fields which can be updated in the process of progessive registration. All these fields need to passed in the function parameter $params
field name | type |
---|---|
userStatus | string |
user_status | string |
user_status_reason | string |
username | string |
sub | string |
given_name | string |
family_name | string |
middle_name | string |
nickname | string |
originalProviderUserId | string[] |
string | |
email_verified | boolean |
mobile_number | string |
mobile_number_verified | boolean |
phone_number | string |
phone_number_verified | boolean |
profile | string |
picture | string |
website | string |
gender | string |
zoneinfo | string |
locale | string |
birthdate | Date |
address | IAddressEntity |
customFields | any |
identityCustomFields | any |
password | string |
provider | string |
providerUserId | string |
identityId | string |
mfa_enabled | boolean |
roles | string[] |
userGroups | IUserGroupMap[] |
groups | IUserGroupMap[] |
rawJSON | string |
trackId | string |
need_reset_password | boolean |
The type IAddressEntity and IUserGroupMap contains the below fields
field name | type |
---|---|
formatted | string |
street_address | string |
locality | string |
region | string |
postal_code | string |
country | string |
field name | type |
---|---|
sub | string |
groupId | string |
roles | string[] |
appendRole | boolean |
<?php
$params = [
"given_name": "Firstname",
"username": "test_username",
"family_name": "Lastname",
"mobile_number": "7865637869"
]
$resp = $provider->progressiveRegistration("103a3f9c-1a2d-4e47-940k-bad7f19d9604", "203a3f9c-1a2d-4e47-940k-bad7f19d9604", $params)->wait();
?>
To get the consent details of a client use the function getConsentDetails. The function accepts 3 parameters consent_id, consent_version_id and sub.
<?php
$resp = $provider->getConsentDetails("103a3f9c-1a2d-4e47-940k-bad7f19d9604", "1", "503a3f9c-1a2d-4e47-940k-bad7f19d960")->wait();
?>
To accept consent by sub use the function acceptConsent. The function accepts a parameter of type array. Below are the fields that need to be passed in the array. A sample array is shown in the example below
field | type |
---|---|
client_id | string |
consent_id | string |
consent_version_id | string |
sub | string |
scopes | string[] |
url | string |
matcher | any |
field_key | string |
accepted_fields | string[] |
accepted_by | string |
skipped | boolean |
action_type | string |
action_id | string |
q | string |
revoked | boolean |
<?php
$params = [
"client_id": "1234567",
"consent_id": "1234567",
"consent_version_id": "1",
"sub": "1234567",
"url" : "https://cidaas.de/accept-consent"
]
$resp = $provider->acceptConsent($params)->wait();
?>
Get the list of the mfa configured for an user use the function getMFAList. In order to get the list, you need to retrieve a requestId first. The function additionally accepts one of the below parameters
email
mobile_number
username
sub
<?php
$provider->getRequestId('openid identities profile offline_access')->then(function ($requestId) {
$resp = $provider->getMFAList($requestId, "[email protected]")->wait();
})
?>
To initate passwordless login use the function initiatePasswordlessLogin. In order to initiate the process, you need to retrieve a requestId first. The function additionally accepts the below params
field | type |
---|---|
request_id | string |
type | string |
string | |
sub | string |
<?php
$provider->getRequestId('openid identities profile offline_access')->then(function ($requestId) {
$resp = $provider->initiatePasswordlessLogin($requestId, "email", '[email protected]', '1234567')->wait();
})
?>
To verify passwordless login after initiating the process use the function verifyPasswordlessLogin. The function additionally accepts the below params
field | type | description |
---|---|---|
type | string | preferred type of passwordless login. eg: email, totp |
exchange_id | string | exchange_id received in the response body while initiating the passwordless login |
pass_code | string | the passcode generated in the preferred type. eg: in case of email you will receive a passcode you the email provided |
requestId | string | use the same requestId that is being used while initiating the passwordless login |
<?php
$provider->getRequestId('openid identities profile offline_access')->then(function ($requestId) {
$resp1 = $provider->initiatePasswordlessLogin($requestId, "email", '[email protected]', '1234567')->wait();
$resp2 = $provider->verifyPasswordlessLogin("email",$resp1->exchange_id, '123456', $requestId)->wait();
})
?>
To get user profile use the function getUserProfile. The function accepts below params
field | type | description |
---|---|---|
accessToken | string | The access token to authenticate the api. To get the accessToken you can use the function getAccessToken |
sub | string | sub is an optional parameter. If not provided the function returns the user details of sub in the access token. You can additionaly provide a sub to get the details of an specific sub |
<?php
$resp1 = $provider->getUserProfile($accessToken, $sub)->wait();
?>
To start a password reset process use the function initiateResetPassword. The function accepts the below params. The function returns a resetRequestId($rprq) which is required to validate the code(otp) sent to the email provided and later the same resetRequestId must be provided to complete the reset password process.
field | type | description |
---|---|---|
string | The email of the user account for which the password needs to be reset | |
requestId | string | In order to access the register method, you need to retrieve a requestId first |
<?php
$provider->getRequestId('openid identities profile offline_access')->then(function ($requestId) {
$res = $provider->initiateResetPassword($email, $requestId)->wait();
})
?>
To validate the code use the function handleResetPassword. The code will be sent to the email of the user when the password reset process is initiated. If you are on cidaas v3, you must set the value v3 to the function parameter version
field | type | description |
---|---|---|
code | string | The code(otp) received in mail when initiateResetPassword called |
resetRequestId | string | resetRequestId($rprq) recieved in the response when the password reset process is initiated |
version | string | cidaas version. Currently v2 and v3 version are supported. This is an optional parameter. If not provided the default version v2 is considered to process the request further |
<?php
$resp = $provider->handleResetPassword($code, $resetRequestId)->wait();
?>
To complete the password reset process use the function resetPassword. In cidaas version v2 the function returns a json response with success tru or false. If you are on cidaas v3, you must set the value v3 to the function parameter version
field | type | description |
---|---|---|
password | string | The new password |
confirmPassword | string | confirm the new password |
exchangeId | string | exchangeId recieved in the response of handleResetPassword function |
resetRequestId | string | resetRequestId($rprq) recieved in the response when the password reset process is initiated |
version | string | cidaas version. Currently v2 and v3 version are supported. This is an optional parameter. If not provided the default version v2 is considered to process the request further |
<?php
$resp = $provider->resetPassword($password, $confirmPassword, $exchangeId, $resetRequestId)->wait();
?>
There are different ways of integrating php unit tests. Besides mocking the Cidaas
class, you may also add a mock handler to the constructor for low level tests.
<?php
$cidaas = new Cidaas('https://yourcidaasinstance.cidaas.de', 'client id', 'client secret', 'https://yourwebsite/redirectAfterLogin', $mockHandler);
?>
This $mockHandler
is a default guzzle mock implementation created like this:
<?php
$mock = new MockHandler([new Response(200, [], $mockedResponse)]);
$mockHandler = HandlerStack::create($this->mock);
?>
Please refer to https://docs.guzzlephp.org/en/stable/testing.html for further information.