Note:

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

Authentication API: Difference between revisions

From MoodleDocs
m (Text replacement - "</code>" to "</syntaxhighlight>")
m (Text replacement - "<code>" to "<syntaxhighlight lang="php">")
 
Line 13: Line 13:
===Mandatory:===
===Mandatory:===


<code>auth_user_login ($username, $password)</syntaxhighlight>
<syntaxhighlight lang="php">auth_user_login ($username, $password)</syntaxhighlight>


Authenticate username, password with userdatabase.
Authenticate username, password with userdatabase.
Line 25: Line 25:




<code>auth_get_userinfo($username)</syntaxhighlight>
<syntaxhighlight lang="php">auth_get_userinfo($username)</syntaxhighlight>


Query other userinformation from database.
Query other userinformation from database.


;Returns:User information in array ''(name => value, ...)'' or ''false'' in case of error. Function honors update-flags so if  <code>$CFG->auth_user_(atribute)_updatelocal</syntaxhighlight> is present, it will return value only if flag is true.
;Returns:User information in array ''(name => value, ...)'' or ''false'' in case of error. Function honors update-flags so if  <syntaxhighlight lang="php">$CFG->auth_user_(atribute)_updatelocal</syntaxhighlight> is present, it will return value only if flag is true.


===COURSE CREATING===
===COURSE CREATING===




<code>auth_iscreator($username)</syntaxhighlight>
<syntaxhighlight lang="php">auth_iscreator($username)</syntaxhighlight>


should user have rights to create courses
should user have rights to create courses


;Returns:<code>true</syntaxhighlight> if user has rights to create cources otherwise false
;Returns:<syntaxhighlight lang="php">true</syntaxhighlight> if user has rights to create cources otherwise false


===USER CREATION===
===USER CREATION===
Line 45: Line 45:




<code>auth_user_exists ($username)</syntaxhighlight>
<syntaxhighlight lang="php">auth_user_exists ($username)</syntaxhighlight>


Checks if given username exists on external db
Checks if given username exists on external db


;Returns:<code>true</syntaxhighlight> if given usernname exist or false
;Returns:<syntaxhighlight lang="php">true</syntaxhighlight> if given usernname exist or false




<code>auth_user_create ($userobject,$plainpass)</syntaxhighlight>
<syntaxhighlight lang="php">auth_user_create ($userobject,$plainpass)</syntaxhighlight>


Creates new user to external db. User should be created in inactive stage until confirmed by email.
Creates new user to external db. User should be created in inactive stage until confirmed by email.


;Returns:<code>true</syntaxhighlight> on success otherwise <code>false</syntaxhighlight>
;Returns:<syntaxhighlight lang="php">true</syntaxhighlight> on success otherwise <syntaxhighlight lang="php">false</syntaxhighlight>




<code>auth_user_activate ($username)</syntaxhighlight>
<syntaxhighlight lang="php">auth_user_activate ($username)</syntaxhighlight>


activate new user after email-address is confirmed
activate new user after email-address is confirmed


;Returns:<code>true</syntaxhighlight> on success otherwise <code>false</syntaxhighlight>
;Returns:<syntaxhighlight lang="php">true</syntaxhighlight> on success otherwise <syntaxhighlight lang="php">false</syntaxhighlight>




<code>auth_user_disable ($username)</syntaxhighlight>
<syntaxhighlight lang="php">auth_user_disable ($username)</syntaxhighlight>


deactivate user in external db.
deactivate user in external db.


;Returns:<code>true</syntaxhighlight> on success otherwise <code>false</syntaxhighlight>
;Returns:<syntaxhighlight lang="php">true</syntaxhighlight> on success otherwise <syntaxhighlight lang="php">false</syntaxhighlight>


=== USER INFORMATION AND SYNCRONIZATION ===
=== USER INFORMATION AND SYNCRONIZATION ===


<code>auth_get_userlist ()</syntaxhighlight>
<syntaxhighlight lang="php">auth_get_userlist ()</syntaxhighlight>


Get list of usernames in external db.
Get list of usernames in external db.


;Returns:All usernames in array or <code>false</syntaxhighlight> on error.
;Returns:All usernames in array or <syntaxhighlight lang="php">false</syntaxhighlight> on error.




<code>auth_get_users($filter='*')</syntaxhighlight>
<syntaxhighlight lang="php">auth_get_users($filter='*')</syntaxhighlight>


Get ALL USEROBJECTS FROM EXTERNAL DB.
Get ALL USEROBJECTS FROM EXTERNAL DB.

Latest revision as of 13:02, 14 July 2021

The Authentication API describes Moodle's interface functions to authentication plugins. (This page is incomplete , I'll update it after I have phpdoc commented auth/ldap/lib.php)

Most of the functions are from the ldap-authentication module and are not implemented (yet?) on other modules. Please feel free to extend other modules to support same features or roll your own module.

Some of new function are still tested and are not documented here yet.

Authentication functions

Basic functions to authenticate users with external db


Mandatory:

auth_user_login ($username, $password)

Authenticate username, password with userdatabase.

Returns
true if the username and password work and false if they don't


Optional:

The following functions are optional , but if present they extend module usability with Moodle.


auth_get_userinfo($username)

Query other userinformation from database.

Returns
User information in array (name => value, ...) or false in case of error. Function honors update-flags so if
$CFG->auth_user_(atribute)_updatelocal
is present, it will return value only if flag is true.

COURSE CREATING

auth_iscreator($username)

should user have rights to create courses

Returns
true
if user has rights to create cources otherwise false

USER CREATION

Functions that enable user creation, activation and deactivation from moodle to external database


auth_user_exists ($username)

Checks if given username exists on external db

Returns
true
if given usernname exist or false


auth_user_create ($userobject,$plainpass)

Creates new user to external db. User should be created in inactive stage until confirmed by email.

Returns
true
on success otherwise
false


auth_user_activate ($username)

activate new user after email-address is confirmed

Returns
true
on success otherwise
false


auth_user_disable ($username)

deactivate user in external db.

Returns
true
on success otherwise
false

USER INFORMATION AND SYNCRONIZATION

auth_get_userlist ()

Get list of usernames in external db.

Returns
All usernames in array or
false
on error.


auth_get_users($filter='*')

Get ALL USEROBJECTS FROM EXTERNAL DB.

Returns
Array of all users as objects from external db


See also