-
Notifications
You must be signed in to change notification settings - Fork 10
/
oidc-keycloak-custom.php
237 lines (201 loc) · 7.87 KB
/
oidc-keycloak-custom.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<?php
/**
* Plugin Name: OpenID Connect Client Customizations
* Description: Provides customizations for the OpenID Connect Client plugin.
*
* @package OpenidConnectGeneric_MuPlugin
*
* @link https://github.com/daggerhart/openid-connect-generic
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Modifies the OIDC login button text.
*
* @link https://github.com/daggerhart/openid-connect-generic#openid-connect-generic-login-button-text
*
* @param string $text The button text.
*
* @return string
*/
function oidc_keycloak_login_button_text( $text ) {
// @var array<mixed> $settings
$settings = get_option( 'openid_connect_generic_settings', array() );
$text = ( ! empty( $settings['oidc_login_button_text'] ) ) ? strval( $settings['oidc_login_button_text'] ) : __( 'Login with Keycloak', 'oidc-keycloak-mu-plugin' );
return $text;
}
add_filter( 'openid-connect-generic-login-button-text', 'oidc_keycloak_login_button_text', 10, 1 );
/**
* Adds a new setting that allows an Administrator to set the button text from
* the plugin settings screen.
*
* @link https://github.com/daggerhart/openid-connect-generic#openid-connect-generic-settings-fields
*
* @param array<mixed> $fields The array of settings fields.
*
* @return array<mixed>
*/
function oidc_keycloak_add_login_button_text_setting( $fields ) {
// @var array<mixed> $field_array
$field_array = array(
'oidc_login_button_text' => array(
'title' => __( 'Login Button Text', 'oidc-keycloak-mu-plugin' ),
'description' => __( 'Set the login button label text.', 'oidc-keycloak-mu-plugin' ),
'type' => 'text',
'section' => 'client_settings',
),
);
// Prepend the field array with the new field to push it to the top of the settings screen.
return $field_array + $fields;
}
add_filter( 'openid-connect-generic-settings-fields', 'oidc_keycloak_add_login_button_text_setting', 10, 1 );
/**
* Setting to indicate whether an IDP role mapping is required for user creation.
*
* @link https://github.com/daggerhart/openid-connect-generic#openid-connect-generic-settings-fields
*
* @param array<mixed> $fields The array of settings fields.
*
* @return array<mixed>
*/
function oidc_keycloak_add_require_idp_role_setting( $fields ) {
$fields['require_idp_user_role'] = array(
'title' => __( 'Valid IDP User Role Required', 'oidc-keycloak-mu-plugin' ),
'description' => __( 'When enabled, this will prevent users from being created if they don\'t have a valid mapped IDP to WordPress role.', 'oidc-keycloak-mu-plugin' ),
'type' => 'checkbox',
'section' => 'user_settings',
);
return $fields;
}
add_filter( 'openid-connect-generic-settings-fields', 'oidc_keycloak_add_require_idp_role_setting', 10, 1 );
/**
* Adds a new setting that allows configuration of the default role assigned
* to users when no IDP role is provided.
*
* @link https://github.com/daggerhart/openid-connect-generic#openid-connect-generic-settings-fields
*
* @param array<mixed> $fields The array of settings fields.
*
* @return array<mixed>
*/
function oidc_keycloak_add_default_role_setting( $fields ) {
// @var WP_Roles $wp_roles_obj
$wp_roles_obj = wp_roles();
// @var array<string> $roles
$roles = $wp_roles_obj->get_names();
// Prepend a blank role as the default.
array_unshift( $roles, '-- None --' );
// Setting to specify default user role when no role is provided by the IDP.
$fields['default_user_role'] = array(
'title' => __( 'Default New User Role', 'oidc-keycloak-mu-plugin' ),
'description' => __( 'Set the default role assigned to users when the IDP doesn\'t provide a role.', 'oidc-keycloak-mu-plugin' ),
'type' => 'select',
'options' => $roles,
'section' => 'user_settings',
);
return $fields;
}
add_filter( 'openid-connect-generic-settings-fields', 'oidc_keycloak_add_default_role_setting', 10, 1 );
/**
* Adds new settings that allows mapping IDP roles to WordPress roles.
*
* @link https://github.com/daggerhart/openid-connect-generic#openid-connect-generic-settings-fields
*
* @param array<mixed> $fields The array of settings fields.
*
* @return array<mixed>
*/
function oidc_keycloak_role_mapping_setting( $fields ) {
// @var WP_Roles $wp_roles_obj
$wp_roles_obj = wp_roles();
// @var array<string> $roles
$roles = $wp_roles_obj->get_names();
foreach ( $roles as $role ) {
$fields[ 'oidc_idp_' . strtolower( $role ) . '_roles' ] = array(
'title' => sprintf( __( 'IDP Role for WordPress %ss', 'oidc-keycloak-mu-plugin' ), $role ),
'description' => sprintf(
__( 'Semi-colon(;) separated list of IDP roles to map to the %s WordPress role', 'oidc-keycloak-mu-plugin' ),
$role
),
'type' => 'text',
'section' => 'user_settings',
);
}
return $fields;
}
add_filter( 'openid-connect-generic-settings-fields', 'oidc_keycloak_role_mapping_setting', 10, 1 );
/**
* Determine whether user should be created using plugin settings & IDP identity.
*
* @param bool $result The plugin user creation test flag.
* @param array<mixed> $user_claim The authenticated user's IDP Identity Token user claim.
*
* @return bool
*/
function oidc_keycloak_user_creation_test( $result, $user_claim ) {
// @var array<mixed> $settings
$settings = get_option( 'openid_connect_generic_settings', array() );
// If the custom IDP role requirement setting is enabled validate user claim.
if ( ! empty( $settings['require_idp_user_role'] ) && boolval( $settings['require_idp_user_role'] ) ) {
// The default is to not create an account unless a mapping is found.
$result = false;
// @var WP_Roles $wp_roles_obj
$wp_roles_obj = wp_roles();
// @var array<string> $roles
$roles = $wp_roles_obj->get_names();
// Check the user claim for the `user-realm-role` key to lookup the WordPress role mapping.
if ( ! empty( $settings ) && ! empty( $user_claim['user-realm-role'] ) ) {
foreach ( $user_claim['user-realm-role'] as $idp_role ) {
foreach ( $roles as $role_id => $role_name ) {
if ( ! empty( $settings[ 'oidc_idp_' . strtolower( $role_name ) . '_roles' ] ) ) {
if ( in_array( $idp_role, explode( ';', $settings[ 'oidc_idp_' . strtolower( $role_name ) . '_roles' ] ) ) ) {
$result = true;
}
}
}
}
}
}
return $result;
}
add_filter( 'openid-connect-generic-user-creation-test', 'oidc_keycloak_user_creation_test', 10, 2 );
/**
* Set user role on based on IDP role after authentication.
*
* @param WP_User $user The authenticated user's WP_User object.
* @param array<mixed> $user_claim The IDP provided Identity Token user claim array.
*
* @return void
*/
function oidc_keycloak_map_user_role( $user, $user_claim ) {
// @var WP_Roles $wp_roles_obj
$wp_roles_obj = wp_roles();
// @var array<string> $roles
$roles = $wp_roles_obj->get_names();
// @var array<mixed> $settings
$settings = get_option( 'openid_connect_generic_settings', array() );
// Check the user claim for the `user-realm-role` key to lookup the WordPress role for mapping.
if ( ! empty( $settings ) && ! empty( $user_claim['user-realm-role'] ) ) {
// @var int $role_count
$role_count = 0;
foreach ( $user_claim['user-realm-role'] as $idp_role ) {
foreach ( $roles as $role_id => $role_name ) {
if ( ! empty( $settings[ 'oidc_idp_' . strtolower( $role_name ) . '_roles' ] ) ) {
if ( in_array( $idp_role, explode( ';', $settings[ 'oidc_idp_' . strtolower( $role_name ) . '_roles' ] ) ) ) {
$user->add_role( $role_id );
$role_count++;
}
}
}
}
if ( intval( $role_count ) == 0 && ! empty( $settings['default_user_role'] ) ) {
if ( boolval( $settings['default_user_role'] ) ) {
$user->set_role( $settings['default_user_role'] );
}
}
}
}
add_action( 'openid-connect-generic-update-user-using-current-claim', 'oidc_keycloak_map_user_role', 10, 2 );
add_action( 'openid-connect-generic-user-create', 'oidc_keycloak_map_user_role', 10, 2 );