Bakery SSO

Authentication ::: auth_bakery
Maintained by Marjan Stojnev
SSO Authentication via a Bakery [Drupal] Master Server contributed by IDEA

Bakery SSO 1.0 (Build: 2013020800)

Moodle 2.2
Released: Friday, 15 February 2013, 6:59 PM
auth_bakery
===========

SSO Authentication via a Bakery [Drupal] Master Server

Overview
--------

auth_bakery allows the implementation of a Moodle site as a Bakery slave to an existing Bakery master, where Bakery is a SSO (single sign-on) solution developed for Drupal, allowing for multiple websites to share the authentication information coming from the Bakery master.

Bakery relies on cookies, specifically ```CHOCOLATECHIP``` and requires that all sites sharing the SSO are to also share a domain.

For more on Bakery, please see here:

http://drupal.org/project/bakery

Requirements
------------

1. Master Bakery server on a Drupal instance. Tested with both Drupal 6 and Drupal 7.
2. Standard Moodle installation. Tested with 2.2.7+ and 2.4.

Installation
------------

To install:

1. Copy the contents of the ```/bakery/``` folder to the ```/auth/``` folder.
2. Login as Admin to Moodle, go to Site Administration > Plugins > Authentication and enable the Bakery SSO (IDEA) plugin.
3. Go to the plugin settings and fill in the required options.
4. Logout as Admin.

Technical Specifications
------------------------

auth_bakery relies on the standard Moodle provided hooks:

1. ```loginpage_hook()``` sends the user to the master server, checks for the ```CHOCOLATECHIP``` cookie, unpacks it and creates and/or updates the Moodle user and logs them in.
2. ```logoutpage_hook()``` destroys the ```CHOCOLATECHIP``` cookie, thus logging out the user from the master as well.

Note
----

At present, Moodle requires each user to have a value for the country field. This is represented by a 2-character ISO country code. ```CHOCOLATECHIP```, on the other hand, does not contain this value so it can either be left blank or filled in with a default value.

The only issue with not having a value is that the Moodle edit screen will throw an exception. We have chosen to fill in a default value, and that is set with the settings screen.

Also, given that some versions of Moodle do not automatically log out after the Master Bakery server logs out, it might be a good idea to lower the threshold for automated session timeout, as found in Site Administration > Server > Session Handling.

Should you want to force an immediate logout, you can add this code at the bottom of your Moodle config.php file:

```if (isloggedin() && !isguestuser() && !isset($_COOKIE['CHOCOLATECHIP'])) { require_logout(); }```

Future
------

Some versions of Moodle to not automatically log out after the Master Bakery server logs out. Fix coming soon.

Licence
-------

In compliance with Moodle requirements, auth_bakery is licensed under the GPL version 3+.

Version information

Version build number
2013020500
Version release name
1.0 (Build: 2013020800)
Maturity
Stable version
MD5 Sum
1810e2181e496e2e7423bc72f8829c38
Supported software
PHP 5.1, Moodle 2.2
  • Latest release for Moodle 2.2

Version control information

Version control system (VCS)
GIT
VCS repository URL
VCS branch
master

Default installation instructions for plugins of the type Authentication

  1. Make sure you have all the required versions.
  2. Download and unpack the module.
  3. Place the folder (eg "myauth") in the "auth" subdirectory.
  4. Visit http://yoursite.com/admin to finish the installation