commit
b90e563aec
|
@ -0,0 +1,29 @@
|
||||||
|
<?php
|
||||||
|
namespace App\Command;
|
||||||
|
|
||||||
|
use Cake\Command\Command;
|
||||||
|
use Cake\Console\Arguments;
|
||||||
|
use Cake\Console\ConsoleIo;
|
||||||
|
use Cake\Core\Configure;
|
||||||
|
|
||||||
|
class KeycloakSyncCommand extends Command
|
||||||
|
{
|
||||||
|
protected $defaultTable = 'Users';
|
||||||
|
|
||||||
|
public function execute(Arguments $args, ConsoleIo $io)
|
||||||
|
{
|
||||||
|
if (!empty(Configure::read('keycloak'))) {
|
||||||
|
$results = $this->fetchTable()->syncWithKeycloak();
|
||||||
|
$tableData = [
|
||||||
|
['Changes to', 'Count']
|
||||||
|
];
|
||||||
|
foreach ($results as $k => $v) {
|
||||||
|
$tableData[] = [$k, '<text-right>' . $v . '</text-right>'];
|
||||||
|
}
|
||||||
|
$io->out(__('Sync done. See the results below.'));
|
||||||
|
$io->helper('Table')->output($tableData);
|
||||||
|
} else {
|
||||||
|
$io->error(__('Keycloak is not enabled.'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -143,8 +143,17 @@ class UsersController extends AppController
|
||||||
{
|
{
|
||||||
$currentUser = $this->ACL->getUser();
|
$currentUser = $this->ACL->getUser();
|
||||||
$validRoles = [];
|
$validRoles = [];
|
||||||
|
$individuals_params = [
|
||||||
|
'sort' => ['email' => 'asc']
|
||||||
|
];
|
||||||
|
$individual_ids = [];
|
||||||
if (!$currentUser['role']['perm_admin']) {
|
if (!$currentUser['role']['perm_admin']) {
|
||||||
$validRoles = $this->Users->Roles->find('list')->select(['id', 'name'])->order(['name' => 'asc'])->where(['perm_admin' => 0, 'perm_org_admin' => 0])->all()->toArray();
|
$validRoles = $this->Users->Roles->find('list')->select(['id', 'name'])->order(['name' => 'asc'])->where(['perm_admin' => 0, 'perm_org_admin' => 0])->all()->toArray();
|
||||||
|
$individual_ids = $this->Users->Individuals->find('aligned', ['organisation_id' => $currentUser['organisation_id']])->all()->extract('id')->toArray();
|
||||||
|
if (empty($individual_ids)) {
|
||||||
|
$individual_ids = [-1];
|
||||||
|
}
|
||||||
|
$individuals_params['conditions'] = ['id IN' => $individual_ids];
|
||||||
} else {
|
} else {
|
||||||
$validRoles = $this->Users->Roles->find('list')->order(['name' => 'asc'])->all()->toArray();
|
$validRoles = $this->Users->Roles->find('list')->order(['name' => 'asc'])->all()->toArray();
|
||||||
}
|
}
|
||||||
|
@ -168,7 +177,10 @@ class UsersController extends AppController
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
if ($this->request->is(['get'])) {
|
if ($this->request->is(['get'])) {
|
||||||
$params['fields'] = array_merge($params['fields'], ['individual_id', 'role_id', 'disabled', 'username']);
|
$params['fields'] = array_merge($params['fields'], ['individual_id', 'role_id', 'disabled']);
|
||||||
|
if (!empty($this->ACL->getUser()['role']['perm_admin'])) {
|
||||||
|
$params['fields'][] = 'organisation_id';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if ($this->request->is(['post', 'put']) && !empty($this->ACL->getUser()['role']['perm_admin'])) {
|
if ($this->request->is(['post', 'put']) && !empty($this->ACL->getUser()['role']['perm_admin'])) {
|
||||||
$params['fields'][] = 'individual_id';
|
$params['fields'][] = 'individual_id';
|
||||||
|
@ -210,6 +222,18 @@ class UsersController extends AppController
|
||||||
'sort' => ['name' => 'asc']
|
'sort' => ['name' => 'asc']
|
||||||
])
|
])
|
||||||
];
|
];
|
||||||
|
$org_conditions = [];
|
||||||
|
if (empty($currentUser['role']['perm_admin'])) {
|
||||||
|
$org_conditions = ['id' => $currentUser['organisation_id']];
|
||||||
|
}
|
||||||
|
$dropdownData = [
|
||||||
|
'role' => $validRoles,
|
||||||
|
'individual' => $this->Users->Individuals->find('list', $individuals_params)->toArray(),
|
||||||
|
'organisation' => $this->Users->Organisations->find('list', [
|
||||||
|
'sort' => ['name' => 'asc'],
|
||||||
|
'conditions' => $org_conditions
|
||||||
|
])
|
||||||
|
];
|
||||||
$this->set(compact('dropdownData'));
|
$this->set(compact('dropdownData'));
|
||||||
$this->set('metaGroup', $this->isAdmin ? 'Administration' : 'Cerebrate');
|
$this->set('metaGroup', $this->isAdmin ? 'Administration' : 'Cerebrate');
|
||||||
$this->render('add');
|
$this->render('add');
|
||||||
|
|
|
@ -22,6 +22,7 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
public function getUser(EntityInterface $profile, Session $session)
|
public function getUser(EntityInterface $profile, Session $session)
|
||||||
{
|
{
|
||||||
$userId = $session->read('Auth.User.id');
|
$userId = $session->read('Auth.User.id');
|
||||||
|
$userId = null;
|
||||||
if ($userId) {
|
if ($userId) {
|
||||||
return $this->_table->get($userId);
|
return $this->_table->get($userId);
|
||||||
}
|
}
|
||||||
|
@ -39,8 +40,6 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
{
|
{
|
||||||
$mapping = Configure::read('keycloak.mapping');
|
$mapping = Configure::read('keycloak.mapping');
|
||||||
$fields = [
|
$fields = [
|
||||||
'org_uuid' => 'org_uuid',
|
|
||||||
'role_name' => 'role_name',
|
|
||||||
'username' => 'preferred_username',
|
'username' => 'preferred_username',
|
||||||
'email' => 'email',
|
'email' => 'email',
|
||||||
'first_name' => 'given_name',
|
'first_name' => 'given_name',
|
||||||
|
@ -124,45 +123,47 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
|
|
||||||
public function enrollUser($data): bool
|
public function enrollUser($data): bool
|
||||||
{
|
{
|
||||||
$individual = $this->_table->Individuals->find()->where(
|
|
||||||
['id' => $data['individual_id']]
|
|
||||||
)->first();
|
|
||||||
$roleConditions = [
|
$roleConditions = [
|
||||||
'id' => $data['role_id']
|
'id' => $data['role_id']
|
||||||
];
|
];
|
||||||
if (!empty(Configure::read('keycloak.user_management.actions'))) {
|
if (!empty(Configure::read('keycloak.user_management.actions'))) {
|
||||||
$roleConditions['name'] = Configure::read('keycloak.default_role_name');
|
$roleConditions['name'] = Configure::read('keycloak.default_role_name');
|
||||||
}
|
}
|
||||||
$role = $this->_table->Roles->find()->where($roleConditions)->first();
|
$user = [
|
||||||
$org = $this->_table->Organisations->find()->where([
|
|
||||||
['id' => $data['organisation_id']]
|
|
||||||
])->first();
|
|
||||||
$keyCloakUser = [
|
|
||||||
'firstName' => $individual['first_name'],
|
|
||||||
'lastName' => $individual['last_name'],
|
|
||||||
'username' => $data['username'],
|
'username' => $data['username'],
|
||||||
'email' => $individual['email'],
|
'disabled' => false,
|
||||||
'enabled' => true,
|
'individual' => $this->_table->Individuals->find()->where(
|
||||||
'attributes' => [
|
[
|
||||||
'role_name' => empty($role['name']) ? Configure::read('keycloak.default_role_name') : $role['name'],
|
'id' => $data['individual_id']
|
||||||
'org_uuid' => $org['uuid']
|
|
||||||
]
|
]
|
||||||
|
)->first(),
|
||||||
|
'role' => $this->_table->Roles->find()->where($roleConditions)->first(),
|
||||||
|
'organisation' => $this->_table->Organisations->find()->where(
|
||||||
|
[
|
||||||
|
'id' => $data['organisation_id']
|
||||||
|
]
|
||||||
|
)->first()
|
||||||
];
|
];
|
||||||
$path = '%s/admin/realms/%s/users';
|
$clientId = $this->getClientId();
|
||||||
$response = $this->restApiRequest($path, $keyCloakUser, 'post');
|
$roles = $this->getAllRoles($clientId);
|
||||||
|
$rolesParsed = [];
|
||||||
|
foreach ($roles as $role) {
|
||||||
|
$rolesParsed[$role['name']] = $role['id'];
|
||||||
|
}
|
||||||
|
$this->createUser($user, $clientId, $rolesParsed);
|
||||||
$logChange = [
|
$logChange = [
|
||||||
'username' => $data['username'],
|
'username' => $user['username'],
|
||||||
'individual_id' => $data['individual_id'],
|
'individual_id' => $user['individual']['id'],
|
||||||
'role_id' => $data['role_id']
|
'role_id' => $user['role']['id']
|
||||||
];
|
];
|
||||||
if (!$response->isOk()) {
|
if (!$response->isOk()) {
|
||||||
$logChange['error_code'] = $response->getStatusCode();
|
$logChange['code'] = $response->getStatusCode();
|
||||||
$logChange['error_body'] = $response->getStringBody();
|
$logChange['error_body'] = $response->getStringBody();
|
||||||
$this->_table->auditLogs()->insert([
|
$this->_table->auditLogs()->insert([
|
||||||
'request_action' => 'enrollUser',
|
'request_action' => 'enrollUser',
|
||||||
'model' => 'User',
|
'model' => 'User',
|
||||||
'model_id' => 0,
|
'model_id' => 0,
|
||||||
'model_title' => __('Failed Keycloak enrollment for user {0}', $data['username']),
|
'model_title' => __('Failed Keycloak enrollment for user {0}', $user['username']),
|
||||||
'changed' => $logChange
|
'changed' => $logChange
|
||||||
]);
|
]);
|
||||||
} else {
|
} else {
|
||||||
|
@ -170,7 +171,7 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
'request_action' => 'enrollUser',
|
'request_action' => 'enrollUser',
|
||||||
'model' => 'User',
|
'model' => 'User',
|
||||||
'model_id' => 0,
|
'model_id' => 0,
|
||||||
'model_title' => __('Successful Keycloak enrollment for user {0}', $data['username']),
|
'model_title' => __('Successful Keycloak enrollment for user {0}', $user['username']),
|
||||||
'changed' => $logChange
|
'changed' => $logChange
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
@ -236,10 +237,10 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
]
|
]
|
||||||
)->disableHydration()->toArray();
|
)->disableHydration()->toArray();
|
||||||
$clientId = $this->getClientId();
|
$clientId = $this->getClientId();
|
||||||
$modified = 0;
|
$results = [];
|
||||||
$modified += $this->syncRoles(Hash::extract($data['Roles'], '{n}.name'), $clientId, 'Role');
|
$results['roles'] = $this->syncRoles(Hash::extract($data['Roles'], '{n}.name'), $clientId, 'Role');
|
||||||
$modified += $this->syncRoles(Hash::extract($data['Organisations'], '{n}.name'), $clientId, 'Organisation');
|
$results['organisations'] = $this->syncRoles(Hash::extract($data['Organisations'], '{n}.name'), $clientId, 'Organisation');
|
||||||
$modified += $this->syncUsers($data['Users'], $clientId);
|
$results['users'] = $this->syncUsers($data['Users'], $clientId);
|
||||||
return $results;
|
return $results;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -257,7 +258,19 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
'clientRole' => true
|
'clientRole' => true
|
||||||
];
|
];
|
||||||
$url = '%s/admin/realms/%s/clients/' . $clientId . '/roles';
|
$url = '%s/admin/realms/%s/clients/' . $clientId . '/roles';
|
||||||
$this->restApiRequest($url, $roleToPush, 'post');
|
$response = $this->restApiRequest($url, $roleToPush, 'post');
|
||||||
|
if (!$response->isOk()) {
|
||||||
|
$this->_table->auditLogs()->insert([
|
||||||
|
'request_action' => 'keycloakCreateRole',
|
||||||
|
'model' => 'User',
|
||||||
|
'model_id' => 0,
|
||||||
|
'model_title' => __('Failed to create role ({0}) in keycloak', $scopeString . $role),
|
||||||
|
'changed' => [
|
||||||
|
'code' => $response->getStatusCode(),
|
||||||
|
'error_body' => $response->getStringBody()
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
}
|
||||||
$modified += 1;
|
$modified += 1;
|
||||||
}
|
}
|
||||||
$keycloakRolesParsed = array_diff($keycloakRolesParsed, [$scopeString . $role]);
|
$keycloakRolesParsed = array_diff($keycloakRolesParsed, [$scopeString . $role]);
|
||||||
|
@ -265,7 +278,19 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
foreach ($keycloakRolesParsed as $roleToRemove) {
|
foreach ($keycloakRolesParsed as $roleToRemove) {
|
||||||
if (substr($roleToRemove, 0, strlen($scopeString)) === $scopeString) {
|
if (substr($roleToRemove, 0, strlen($scopeString)) === $scopeString) {
|
||||||
$url = '%s/admin/realms/%s/clients/' . $clientId . '/roles/' . $roleToRemove;
|
$url = '%s/admin/realms/%s/clients/' . $clientId . '/roles/' . $roleToRemove;
|
||||||
$this->restApiRequest($url, [], 'delete');
|
$response = $this->restApiRequest($url, [], 'delete');
|
||||||
|
if (!$response->isOk()) {
|
||||||
|
$this->_table->auditLogs()->insert([
|
||||||
|
'request_action' => 'keycloakRemoveRole',
|
||||||
|
'model' => 'User',
|
||||||
|
'model_id' => 0,
|
||||||
|
'model_title' => __('Failed to remove role ({0}) in keycloak', $roleToRemove),
|
||||||
|
'changed' => [
|
||||||
|
'code' => $response->getStatusCode(),
|
||||||
|
'error_body' => $response->getStringBody()
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
}
|
||||||
$modified += 1;
|
$modified += 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -278,7 +303,7 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
return json_decode($response->getStringBody(), true);
|
return json_decode($response->getStringBody(), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function syncUsers(array $users, $clientId, $roles = null): bool
|
private function syncUsers(array $users, $clientId, $roles = null): int
|
||||||
{
|
{
|
||||||
if ($roles === null) {
|
if ($roles === null) {
|
||||||
$roles = $this->getAllRoles($clientId);
|
$roles = $this->getAllRoles($clientId);
|
||||||
|
@ -303,15 +328,26 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
'roles' => $roleMappings
|
'roles' => $roleMappings
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
$changes = 0;
|
||||||
foreach ($users as &$user) {
|
foreach ($users as &$user) {
|
||||||
|
$changed = false;
|
||||||
if (empty($keycloakUsersParsed[$user['username']])) {
|
if (empty($keycloakUsersParsed[$user['username']])) {
|
||||||
$this->createUser($user, $clientId, $rolesParsed);
|
if ($this->createUser($user, $clientId, $rolesParsed)) {
|
||||||
|
$changes = true;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$this->checkAndUpdateUser($keycloakUsersParsed[$user['username']], $user);
|
if ($this->checkAndUpdateUser($keycloakUsersParsed[$user['username']], $user)) {
|
||||||
$this->checkAndUpdateUserRoles($keycloakUsersParsed[$user['username']], $user, $clientId, $rolesParsed);
|
$changes = true;
|
||||||
|
}
|
||||||
|
if ($this->checkAndUpdateUserRoles($keycloakUsersParsed[$user['username']], $user, $clientId, $rolesParsed)) {
|
||||||
|
$changes = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
if ($changed) {
|
||||||
|
$changes += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $changes;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function checkAndUpdateUser(array $keycloakUser, array $user): bool
|
private function checkAndUpdateUser(array $keycloakUser, array $user): bool
|
||||||
|
@ -324,14 +360,28 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
) {
|
) {
|
||||||
$change = [
|
$change = [
|
||||||
'enabled' => !$user['disabled'],
|
'enabled' => !$user['disabled'],
|
||||||
'firstName' => !$user['individual']['first_name'],
|
'firstName' => $user['individual']['first_name'],
|
||||||
'lastName' => !$user['individual']['last_name'],
|
'lastName' => $user['individual']['last_name'],
|
||||||
'email' => !$user['individual']['email'],
|
'email' => $user['individual']['email'],
|
||||||
];
|
];
|
||||||
$response = $this->restApiRequest('%s/admin/realms/%s/users/' . $keycloakUser['id'], $change, 'put');
|
$response = $this->restApiRequest('%s/admin/realms/%s/users/' . $keycloakUser['id'], $change, 'put');
|
||||||
}
|
if (!$response->isOk()) {
|
||||||
|
$this->_table->auditLogs()->insert([
|
||||||
|
'request_action' => 'keycloakUpdateUser',
|
||||||
|
'model' => 'User',
|
||||||
|
'model_id' => 0,
|
||||||
|
'model_title' => __('Failed to update user ({0}) in keycloak', $user['username']),
|
||||||
|
'changed' => [
|
||||||
|
'code' => $response->getStatusCode(),
|
||||||
|
'error_body' => $response->getStringBody()
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private function createUser(array $user, string $clientId, array $rolesParsed): bool
|
private function createUser(array $user, string $clientId, array $rolesParsed): bool
|
||||||
{
|
{
|
||||||
|
@ -343,8 +393,23 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
'email' => $user['individual']['email']
|
'email' => $user['individual']['email']
|
||||||
];
|
];
|
||||||
$response = $this->restApiRequest('%s/admin/realms/%s/users', $newUser, 'post');
|
$response = $this->restApiRequest('%s/admin/realms/%s/users', $newUser, 'post');
|
||||||
|
if (!$response->isOk()) {
|
||||||
|
$this->_table->auditLogs()->insert([
|
||||||
|
'request_action' => 'createUser',
|
||||||
|
'model' => 'User',
|
||||||
|
'model_id' => 0,
|
||||||
|
'model_title' => __('Failed to create user ({0}) in keycloak {0}', $user['username']),
|
||||||
|
'changed' => [
|
||||||
|
'code' => $response->getStatusCode(),
|
||||||
|
'error_body' => $response->getStringBody()
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
}
|
||||||
$newUser = $this->restApiRequest('%s/admin/realms/%s/users?username=' . urlencode($user['username']), [], 'get');
|
$newUser = $this->restApiRequest('%s/admin/realms/%s/users?username=' . urlencode($user['username']), [], 'get');
|
||||||
$user['id'] = json_decode($newUser->getStringBody(), true);
|
$user['id'] = json_decode($newUser->getStringBody(), true);
|
||||||
|
if (empty($user['id'])) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
$this->assignRolesToUser($user, $rolesParsed, $clientId);
|
$this->assignRolesToUser($user, $rolesParsed, $clientId);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -365,7 +430,19 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
'containerId' => $clientId
|
'containerId' => $clientId
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
$this->restApiRequest('%s/admin/realms/%s/users/' . $user['id'] . '/role-mappings/clients/' . $clientId, $roles, 'post');
|
$response = $this->restApiRequest('%s/admin/realms/%s/users/' . $user['id'] . '/role-mappings/clients/' . $clientId, $roles, 'post');
|
||||||
|
if (!$response->isOk()) {
|
||||||
|
$this->_table->auditLogs()->insert([
|
||||||
|
'request_action' => 'keycloakAssignRoles',
|
||||||
|
'model' => 'User',
|
||||||
|
'model_id' => 0,
|
||||||
|
'model_title' => __('Failed to create assign role ({0}) in keycloak to user {1}', $user['role']['name'], $user['username']),
|
||||||
|
'changed' => [
|
||||||
|
'code' => $response->getStatusCode(),
|
||||||
|
'error_body' => $response->getStringBody()
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -394,6 +471,7 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
];
|
];
|
||||||
$toAdd = array_diff(array_keys($userRoles), $keycloakUserRoles);
|
$toAdd = array_diff(array_keys($userRoles), $keycloakUserRoles);
|
||||||
$toRemove = array_diff($keycloakUserRoles, array_keys($userRoles));
|
$toRemove = array_diff($keycloakUserRoles, array_keys($userRoles));
|
||||||
|
$changed = false;
|
||||||
foreach ($toRemove as $k => $role) {
|
foreach ($toRemove as $k => $role) {
|
||||||
if (substr($role, 0, strlen('Organisation:')) !== 'Organisation:' && substr($role, 0, strlen('Role:') !== 'Role:')) {
|
if (substr($role, 0, strlen('Organisation:')) !== 'Organisation:' && substr($role, 0, strlen('Role:') !== 'Role:')) {
|
||||||
unset($toRemove[$k]);
|
unset($toRemove[$k]);
|
||||||
|
@ -403,14 +481,42 @@ class AuthKeycloakBehavior extends Behavior
|
||||||
}
|
}
|
||||||
if (!empty($toRemove)) {
|
if (!empty($toRemove)) {
|
||||||
$toRemove = array_values($toRemove);
|
$toRemove = array_values($toRemove);
|
||||||
$this->restApiRequest('%s/admin/realms/%s/users/' . $keycloakUser['id'] . '/role-mappings/clients/' . $clientId, $toRemove, 'delete');
|
$response = $this->restApiRequest('%s/admin/realms/%s/users/' . $keycloakUser['id'] . '/role-mappings/clients/' . $clientId, $toRemove, 'delete');
|
||||||
|
if (!$response->isOk()) {
|
||||||
|
$this->_table->auditLogs()->insert([
|
||||||
|
'request_action' => 'keycloakDetachRole',
|
||||||
|
'model' => 'User',
|
||||||
|
'model_id' => 0,
|
||||||
|
'model_title' => __('Failed to detach role ({0}) in keycloak from user {1}', $user['role']['name'], $user['username']),
|
||||||
|
'changed' => [
|
||||||
|
'code' => $response->getStatusCode(),
|
||||||
|
'error_body' => $response->getStringBody()
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
|
$changed = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
foreach ($toAdd as $k => $name) {
|
foreach ($toAdd as $k => $name) {
|
||||||
$toAdd[$k] = $userRoles[$name];
|
$toAdd[$k] = $userRoles[$name];
|
||||||
}
|
}
|
||||||
if (!empty($toAdd)) {
|
if (!empty($toAdd)) {
|
||||||
$response = $this->restApiRequest('%s/admin/realms/%s/users/' . $keycloakUser['id'] . '/role-mappings/clients/' . $clientId, $toAdd, 'post');
|
$response = $this->restApiRequest('%s/admin/realms/%s/users/' . $keycloakUser['id'] . '/role-mappings/clients/' . $clientId, $toAdd, 'post');
|
||||||
}
|
if (!$response->isOk()) {
|
||||||
return true;
|
$this->_table->auditLogs()->insert([
|
||||||
|
'request_action' => 'keycloakAttachRoles',
|
||||||
|
'model' => 'User',
|
||||||
|
'model_id' => 0,
|
||||||
|
'model_title' => __('Failed to attach role ({0}) in keycloak to user {1}', $user['role']['name'], $user['username']),
|
||||||
|
'changed' => [
|
||||||
|
'code' => $response->getStatusCode(),
|
||||||
|
'error_body' => $response->getStringBody()
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
|
$changed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $changed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue