Skip to content

squarshednanners/keycloak-phone-provider

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

96 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Keycloak (Quarkus 20.0.5) Phone Provider

  • Phone support like e-mail
  • OTP by phone
  • Login by phone
  • Register with phone
  • Authentication by phone
  • Reset password by phone

sms voice phone one key login

With this provider you can enforce authentication policies based on a verification token sent to users' mobile phones. Currently, there are implementations of Twilio and TotalVoice and YunTongXun SMS sender services. That said, is nice to note that more services can be used with ease thankfully for the adopted modularity and in fact, nothing stop you from implementing a sender of TTS calls or WhatsApp messages.

This is what you can do for now:

  • Check ownership of a phone number (Forms and Rest API)
  • Use SMS as second factor in 2FA method (Browser flow)
  • Login by phone (Browser flow)
  • Reset Password by phone
  • Authentication by phone (Rest API)
  • Authentication everybody by phone, auto create user on Grant(Rest API)
  • Register with phone
  • Register only phone (username is phone number)
  • Register add user attribute with redirect_uri params

Client:

see my project KeycloakClient ,is android client, nothing stop you from implementing other java program.

Compatibility

This was initially developed using 20.0.5 version of Quarkus Keycloak as baseline,Wildfily keycloak is not support again, and I did not test another user storage beyond the default like Kerberos or LDAP. I may try to help you but I cannot guarantee.

Usage

Installing:

If you want to build the project, simply run examples/docker-build.sh after cloning the repository.

  • Local

    1. local keycloak installed: copy the target\providers to keycloak home directory
    2. kc.[sh|bat] build
    3. Start Keycloak.
  • Cli params

  kc.[sh|bat] start \
    --spi-phone-default-service=[dummy|aws|aliyun|cloopen| ...]  # Which sms provider 
    --spi-phone-default-token-expires-in=60  # sms expires ,default 60 second
    --spi-phone-default-hour-maximum=3 # How many send sms count in one hour. 
    --spi-phone-default-[$realm-]duplicate-phone=false # allow one phone register multi user
    --spi-phone-default-[$realm-]number-regx=^\+?\d+$
    
    ...  # provider param refer provider`s readme.md

Theme

Need change realm login theme to 'phone'.

you can create a customized theme base on 'phone'.

  parent=phone

Phone registration support

Under Authentication > Flows:

  • Create flows from registration: Copy the 'Registration' flow to 'Registration with phone' flow.

  • Replace 'Registration User Creation' to 'Registration Phone User Creation'

  • (Optional) Click Settings on 'Registration Phone User Creation', config it;

  • (Optional) Verify Phone Click on 'Registration with phone registration Form >Add 'Phone validation' if you want to verify phone.

  • (Optional)Read query parameter add to user attribute: Click on 'Registration with phone registration Form > Actions > Add execution' on the 'Query Parameter Reader' line Click on 'Registration with phone registration Form > Actions > configure' add accept param name in to

  • (Optional)Hidden password field: Delete or disable 'Password Validation'.

  • (Optional) if not any user profile: Delete or disable 'Profile Validation'

Set All add item as Required.

Set Bind 'Registration with phone' to 'Registration flow'

Under Realm Settings > Themes Set Login Theme as 'phone'

Tip: if Realm set 'Email as username', then config 'Phone number as username' and 'hide email' is invalid! if set param 'duplicate-phone' is true then 'Phone number as username' is invalid!

Registration with phone

Registration URL:

http://<domain>/realms/<realm name>/protocol/openid-connect/registrations?client_id=<client id>&response_type=code&scope=openid%20email&redirect_uri=<redirect_uri>

Login by phone

Under Authentication > Flows:

  • Copy the 'Browser' flow to 'Browser with phone' flow
  • Replace 'Username Password Form' to 'Phone Username Password Form'

Under Realm Settings > Themes Set Login Theme as 'phone'

Set Bind 'Browser with phone' to 'Browser flow'

Login By phone

OTP by Phone

Two user attributes are going to be used by this provider: phoneNumberVerified (bool) and phoneNumber (str). Many users can have the same phoneNumber, but only one of them is getting phoneNumberVerified = true at the end of a verification process. This accommodates the use case of pre-paid numbers that get recycled if inactive for too much time.

in Authentication page, copy the browser flow and replace OTP to OTP Over SMS . Don't forget to bind this flow copy as the de facto browser flow. Finally, register the required actions Update Phone Number and Configure OTP over SMS in the Required Actions tab.

OTP

Only use phone login or get Access token use endpoints:

Under Authentication > Flows:

  • Copy the 'Direct Grant' flow to 'Direct grant with phone' flow
  • Click on 'Add step' on the 'Provide Phone Number' line
  • Click on 'Add step' on the 'Provide Verification Code' line
  • Delete or disable other
  • Set both of 'Provide Phone Number' and 'Provide Verification Code' to 'REQUIRED'

Under 'Clients > $YOUR_CLIENT > Advanced > Authentication Flow Overrides' Set Bind 'Direct Grant Flow' to 'Direct grant with phone'

Setting

Everybody phone number( if not exists create user by phone number) get Access token use endpoints:

Under Authentication > Flows:

  • Copy the 'Direct Grant' flow to 'Direct grant everybody with phone' flow
  • Click on 'Actions > Add step' on the 'Authentication Everybody By Phone' line and move to first
  • Delete or disable other
  • Set 'Authentication Everybody By Phone' to 'REQUIRED'

Under 'Clients > $YOUR_CLIENT > Advanced > Authentication Flow Overrides' Set Direct Grant Flow to 'Direct grant everybody with phone'

About the API endpoints:

You'll get 2 extra endpoints that are useful to do the verification from a custom application.

  • GET /realms/{realmName}/sms/verification-code?phoneNumber=+5534990001234 (To request a number verification. No auth required.)
  • POST /realms/{realmName}/sms/verification-code?phoneNumber=+5534990001234&code=123456 (To verify the process. User must be authenticated.)

You'll get 2 extra endpoints that are useful to do the access token from a custom application.

  • GET /realms/{realmName}/sms/authentication-code?phoneNumber=+5534990001234 (To request a number verification. No auth required.)
  • POST /realms/{realmName}/protocol/openid-connect/token Content-Type: application/x-www-form-urlencoded grant_type=password&phone_number=$PHONE_NUMBER&code=$VERIFICATION_CODE&client_id=$CLIENT_ID&client_secret=$CLIENT_SECRECT

And then use Verification Code authentication flow with the code to obtain an access code.

Reset credential

Under Authentication > Flows:

  • Copy the 'Reset credentials' flow to 'Reset credentials with phone' flow
  • Click on 'Add step' on the 'Rest Credential With Phone' line
  • Click on 'Add step' on the 'Send Rest Email If Not Phone' line
  • Delete or disable other
  • set 'Send Rest Email If Not Phone' to 'Conditional'
  • Set both of 'Rest Credential With Phone' and 'Reset Password' to 'REQUIRED'

Set Bind 'Reset credentials with phone' to 'Reset credentials flow'

Authentication setting

Phone one key longin Testing , coming soon!

Thanks

Some code written is based on existing ones in these two projects: keycloak-sms-provider and keycloak-phone-authenticator. Certainly I would have many problems coding all those providers blindly. Thank you!

About

A Keycloak provider which phone and SMS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 59.6%
  • FreeMarker 39.1%
  • Other 1.3%