Package Data | |
---|---|
Maintainer Username: | haizad |
Maintainer Contact: | mohsen.nikoei@gmail.com (mnikoei) |
Package Create Date: | 2020-12-30 |
Package Last Update: | 2024-02-25 |
Home Page: | https://packagist.org/packages/haizad/laravel-keycloak-admin |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-17 03:06:16 |
Package Statistics | |
---|---|
Total Downloads: | 14,307 |
Monthly Downloads: | 206 |
Daily Downloads: | 4 |
Total Stars: | 4 |
Total Watchers: | 1 |
Total Forks: | 6 |
Total Open Issues: | 2 |
Original work credited to Mnikoei.
Keycloak Admin library made by Scito. https://gitlab.com/scito-performance/keycloak-admin
composer require haizad/laravel-keycloak-admin
php artisan vendor:publish --provider="LaravelKeycloakAdmin\KeycloakAdminServiceProvider"
Register the provider in your boostrap app file bootstrap/app.php
Add the following line at that files. Please note that
$app->configure('keycloakAdmin');
should be placed below
$app->register(\LaravelKeycloakAdmin\KeycloakAdminServiceProvider::class);
.
//"Register Service Providers" section
$app->register(\LaravelKeycloakAdmin\KeycloakAdminServiceProvider::class);
$app->configure('keycloakAdmin');
$app->router->group([
'namespace' => 'App\Http\Controllers',
], function ($router) {
require __DIR__.'/../routes/web.php';
});
return $app;
For facades, uncomment $app->withFacades();
in your boostrap app file bootstrap/app.php
Add these environment variables to your .env :
KEYCLOAK_BASE_URL=http://keycloak-domain.example/auth
KEYCLOAK_REALM=
KEYCLOAK_REALM_PUBLIC_KEY= # realm settings -> keys
KEYCLOAK_CLIENT_ID=
KEYCLOAK_CLIENT_SECRET= # clients -> your_client -> credentials
KEYCLOAK_ADMIN_BASE_URL=${KEYCLOAK_BASE_URL}/admin/realms/${KEYCLOAK_REALM}
Go to clients -> your_client -> Service Account
then select realm-managment
from Client Roles list and assign realm-admin to client.
Package has provided services as below:
Available functions:
All API's are declared in config\keycloakAdmin.php
Include the KeycloakAdmin inside your Laravel controller/API route
use LaravelKeycloakAdmin\Facades\KeycloakAdmin;
Example:
KeycloakAdmin::serviceName()->apiName($parameters)
//Create User Sample
//Refer https://www.keycloak.org/docs-api/11.0/rest-api/index.html#_userrepresentation
KeycloakAdmin::user()->create([
'body' => [
'username' => 'foo',
'enabled' => true,
'emailVerified' => false,
'email' => 'foo@email.com',
'credentials' => [[
'type' => 'password',
'value' => 'foobar',
'temporary' => false
]]
]
]);
//Query User Sample
//Refer Query parameter on GET /{realm}/users https://www.keycloak.org/docs-api/11.0/rest-api/index.html
KeycloakAdmin::user()->find([
'query' => [
'email' => 'foobar@example.com'
]
]);
//Get All User Sample
KeycloakAdmin::user()->all();
KeycloakAdmin::addon()->logoutById([
'id' => 'user_id'
])
KeycloakAdmin::addon()->setAccessTokenExpiry([
'body' => [
'accessTokenLifespan' => 60
]
])
All other api calls are same as examples just needs to provide required parameters as described in https://www.keycloak.org/docs-api/11.0/rest-api/index.html