Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Authentication plugins: Difference between revisions

From MoodleDocs
Line 20: Line 20:


==Template==
==Template==
Please see Moodle '''none''' authentication plugin (auth/none), it's the perfect plugin template to start with.
==Naming convention==
==Naming convention==
==File structure==
==File structure==

Revision as of 09:14, 25 January 2012

Introduction

This page first gives an overview of the authentication process and then explains how authentication modules can be created using hooks to take over from the native authentication in Moodle.

Overview of Moodle authentication process

The login UI element in Moodle 1.9

The authentication use case in Moodle starts when a user clicks on the Login link in the UI. Then the following happens (skipping some minor details and rarer scenarios):

  1. The default login page (/login/index.php) is displayed. OR, if a system administrator has set the Alternate Login URL on the "Manage authentication" page, that URL will be displayed.
  2. A user enters their credentials and submits the form.
  3. The handler code in /login/index.php runs:
    1. Gets a list of enabled authentication plugins.
    2. Runs loginpage_hook() for each plugin, in case any of them needs to intercept the login request.
    3. Checks to make sure that the username meets Moodle's criteria (alphanumeric, with periods and hyphens allowed).
    4. Calls authenticate_user_login() in /lib/moodlelib.php, which returns a $user object. (Details of this code follow this main outline.)
    5. Determines whether authentication was successful (by checking whether $user is a valid object) and, if not, sends them back to the login page with an error message. Otherwise, it figures out where to send the user based on their original page request, whether their password is expired, etc., and redirects them there.

History

Authentication plugins exist from 1.9

Example

Google / Facebook / Messenger Oauth2 Authentication plugin

Template

Please see Moodle none authentication plugin (auth/none), it's the perfect plugin template to start with.

Naming convention

File structure

  1. Choose a name for your plugin. We'll use 'sentry' as an example below; change it to whatever name you have chosen.
  2. Under your Moodle installation root, create the directory /auth/sentry. It should be sibling to existing auth plugin directories: 'db', 'nologin', 'none', etc.
  3. Create the file /auth/sentry/auth.php. Within the file, create a class auth_plugin_sentry that extends auth_plugin_base from /lib/authlib.php. (You will need to require_once the authlib file.)
  4. Implement the user_login() function in your auth.php file, and create or override additional functions based on your plugin's requirements.
  5. Log in to your Moodle installation as a site administrator and find, in the site administrator block, the page "Users -> Authentication -> Manage authentication". You will see your plugin in the list, appearing as [[auth_sentrytitle]]. You can enable it and move it up and down in the order. At this point, with the plugin enabled, your plugin is registered and will be used by Moodle in its authentication process.
  6. If you don't like seeing [[auth_sentrytitle]] as the name of your plugin in the Moodle UI, you'll need to create language files for your plugin. Do this by creating the directory /auth/sentry/lang, and under it, a directory for each language that your installation needs to support. (Example: /auth/sentry/lang/en.) Within each of these language directories, create a file called auth_sentry.php. That file should set the desired value for $string['auth_sentrytitle'] for that language (use $string['pluginname'] for Moodle2). You can also set the plugin description by setting $string['auth_sentrydescription'], and you can also assign other translatable strings that your plugin uses, in these files. Note: A folder named like en may not work for everyone. Please refer to the lang folder under your moodle installation directory to get an idea about the language/locale codes used in your moodle installation. For example, the lang folder in own users system contained folders named en and zh-cn. He emulated the same in the lang folder of the auth plugin and the plugin picked up the title and description strings immediately. (More info on how Moodle handles language).
  7. If you want to configure your plugin through the Moodle UI, implement config_form() and process_config() in the plugin class. You might find it convenient to use the 'db' plugin as a model for this. The plugin's config settings can then be managed through the Manage authentication page by clicking on the Settings link for that plugin, and the values will be stored in the mdl_config_pluginstable in the database.

Interfacing to API's

authenticate_user_login()

That's the main outline, but a lot of interesting stuff happens in authenticate_user_login():

  1. It gets a list of enabled authentication plugins.
  2. It looks up the username in the mdl_user table to see if they are allowed to log in, and which authentication plugin handles their login requests. (This will be the plugin that handled their first-ever login request.)
  3. It creates a user object, which will contain the data from mdl_user if the username is known; if not, it will be an empty object.
  4. It does the following with the authentication plugin (note that for a username unknown to Moodle, it will do these steps for each authenticated plugin until one succeeds or it has tried them all):
    1. Calls the user_login() function provided by that plugin, which returns a boolean value based on whether the credentials authenticate or not. If the result is false (not authenticated), skips the rest of the steps below and continues to the next plugin.
    2. If the plugin authenticates against an external system (not Moodle's user database), its update_user_record() function is called to get the user's name, contact info, etc.
    3. Creates the Moodle user record if it doesn't already exist.
    4. Calls the plugin's sync_roles() function.
    5. Notifies each enabled authentication plugin that the user successfully authenticated, by calling each one's user_authenticated_hook() function.
  5. It returns the user object if everything was successful, or false if no plugin was able to successfully authenticate the credentials.

user_login($username, $password)

This must be rewritten by plugin to return boolean value, returns true if the username and password work and false if they are wrong or don't exist.

can_change_password()

Returns true if this authentication plugin can change users' password.

change_password_url()

Returns the URL for changing the users' passwords, or empty if the default URL can be used.

can_edit_profile()

Returns true if this authentication plugin can edit the users' profile.

edit_profile_url()

Returns the URL for editing users' profile, or empty if the defaults URL can be used.

prevent_local_passwords()

Indicates if password hashes should be stored in local moodle database.


user_update_password($user, $newpassword)

Update the user's password.

user_update($olduser, $newuser)

Called when the user record is updated. It will modify the user information in external database.

user_delete($olduser)

User delete requested. Internal user record had been deleted.

can_reset_password()

Returns true if plugin allows resetting of internal password.

user_signup($user, $notify=true)

Sign up a new user ready for confirmation, password is passed in plaintext.


can_confirm()

Returns true if plugin allows confirming of new users.

user_confirm($username, $confirmsecret)

Confirm the new user as registered.

user_exists($username)

Checks if user exists in external db.

password_expire($username)

Returns number of days to user password expires.

sync_roles()

Sync roles for this user - usually creator

get_userinfo($username)

Read user information from external database and returns it as array.

config_form($config, $err, $user_fields)

Prints a form for configuring this authentication plugin. It's called from admin/auth.php, and outputs a full page with a form for configuring this plugin.

validate_form($form, $err)

Validate form data.

process_config($config)

Processes and stores configuration data for this authentication plugin.

loginpage_hook()

Hook for overriding behaviour of login page.

user_authenticated_hook($user, $username, $password)

Post authentication hook. This method is called from authenticate_user_login() for all enabled auth plugins.

prelogout_hook()

Pre logout hook.

logoutpage_hook()

Hook for overriding behaviour of logout page.

See also