Moodle Plugins directory: Azure AD B2C Connect: Versions: 4.1.0 | Moodle.org

Azure AD B2C Connect
Azure AD B2C Connect 4.1.0
Code prechecks
Azure AD B2C Connect Authentication Plugin.
The Azure AD B2C Connect plugin provides registering of a new user and single-sign-on functionality using configurable identity providers, scope, and custom policies of Azure B2C.
This repository is updated with stable releases and matched with OIDC plugin. To follow active development, see: https://github.com/GopalSharma/moodle-auth_azureb2c
Installation
- Unpack the plugin into /auth/azureb2c within your Moodle install.
- From the Moodle Administration block, expand Site Administration and click "Notifications".
- Follow the on-screen instructions to install the plugin.
- To configure the plugin, from the Moodle Administration block, go to Site Administration > Plugins > Authentication > Manage Authentication.
- Click the icon to enable the plugin, then visit the settings page to configure the plugin. Follow the directions below for each setting.
For more documentation, visit https://docs.moodle.org/37en/azureb2c
For more information including support and instructions on how to contribute, please see: https://github.com/GopalSharma/moodle-auth_azureb2c/README.md
Edit Profile
For edit/update profile(Azure AD B2C prfile) to work, one needs to the following
Add the follwing code to theme's profile.php
and if you are not using the customise page for profile, then add it to the layout
page which profile page will use.
<head>
<script>
document.cookie="id_token="+window.location.hash;
</script>
</head>
<?php
$id_token = "";
if(!empty($_COOKIE['id_token'])) {
$id_token = $_COOKIE['id_token'];
$idtoken = explode("=",$id_token);
}
$editcheck = get_user_preferences('auth_azureb2c_edit');
if($editcheck == 0 || $editcheck == 2 ) {
if($editcheck == 0) {
set_user_preference('auth_azureb2c_edit', 2);
header("Refresh:0");
}
if($editcheck == 2) {
$userid = optional_param('id', null, PARAM_INT);
if(!empty($idtoken[1]) && ($idtoken[0] =="#id_token")) {
updateuserazureb2c($userid, $idtoken[1]);
$_COOKIE['id_token'] = null;
set_user_preference('auth_azureb2c_edit', 1);
}
}
}
?>
<?php
$url = get_config('auth_azureb2c', 'editprofileendpoint')."&client_id=". get_config('auth_azureb2c', 'clientid')."&
nonce=defaultNonce&redirect_uri=". $CFG->wwwroot."/auth/azureb2c/&scope=openid&response_type=id_token";
?>
<a href="<?php echo $url;?>"><?php echo get_string('editmyprofile'); ?></a>
Add the folloing function to theme's lib.php
function updateuserazureb2c($userid, $id_token) {
global $CFG, $OUTPUT, $USER, $PAGE, $DB;
require_once("{$CFG->dirroot}/auth/azureb2c/classes/loginflow/base.php");
$idtoken = \auth_azureb2c\jwt::instance_from_encoded($id_token);
$username = $idtoken->claim('oid');
if (!empty($username)) {
$firstname = $idtoken->claim('given_name');
$lastname = $idtoken->claim('family_name');
$country = $idtoken->claim('country');
$countryval = "";
if (!empty($country)) {
$countries = get_string_manager()->get_list_of_countries();
foreach ($countries as $countrykey => $countryvalue) {
$countryb2c = $country;
$countrymoodle = $countryvalue;
if($countrymoodle == $countryb2c)
$countryval = $countrykey;
}
}
$gender = $idtoken->claim('extension_WP_Gender');
$userupdate = new \stdClass;
$userupdate->id = $userid;
if (!empty($firstname))
$userupdate->firstname = $firstname;
if (!empty($lastname))
$userupdate->lastname = $lastname;
if (!empty($countryval))
$userupdate->country = $countryval;
$DB->update_record('user', $userupdate);
$USER->firstname = $firstname;
$USER->lastname = $lastname;
$USER->country = $countryval;
return true;
}
}
Issues
Please post issues for this plugin to: https://github.com/GopalSharma/moodle-auth_azureb2c/issues
Version information
- Version build number
- 2023030700
- Version release name
- 4.1.0
- Maturity
- نسخهٔ پایدار
- MD5 Sum
- c891d3deac1dba8e7beb4a4fd1d953c6
- Supported software
- Moodle 3.5, Moodle 3.6, Moodle 3.7, Moodle 3.8, Moodle 3.9, Moodle 3.10, Moodle 3.11, Moodle 4.0, Moodle 4.1, Moodle 4.2, Moodle 4.3, Moodle 4.4
- Latest release for Moodle 3.5
- Latest release for Moodle 3.6
- Latest release for Moodle 3.7
- Latest release for Moodle 3.8
- Latest release for Moodle 3.9
- Latest release for Moodle 3.10
- Latest release for Moodle 3.11
- Latest release for Moodle 4.0
- Latest release for Moodle 4.1
- Latest release for Moodle 4.2
- Latest release for Moodle 4.3
- Latest release for Moodle 4.4
Version control information
- Version control system (VCS)
- GIT
- VCS repository URL
- VCS tag
- v4.1.0(2023030700)
Default installation instructions for plugins of the type Authentication
- Make sure you have all the required versions.
- Download and unpack the module.
- Place the folder (eg "myauth") in the "auth" subdirectory.
- Visit http://yoursite.com/admin to finish the installation